openvpn-status-web/Rakefile

21 lines
496 B
Ruby
Raw Normal View History

2013-05-03 15:32:08 +02:00
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
2019-12-18 20:19:56 +01:00
require 'bundler/audit/task'
2013-05-03 15:32:08 +02:00
RSpec::Core::RakeTask.new(:spec)
2019-12-18 20:19:56 +01:00
Bundler::Audit::Task.new
2013-05-03 15:32:08 +02:00
2020-03-01 22:05:43 +01:00
desc 'Should be run by developer once to prepare initial solargraph usage (fill caches etc.)'
task :'solargraph:init' do
sh 'solargraph download-core'
end
desc 'Run experimental solargraph type checker'
task :'solargraph:tc' do
sh 'solargraph typecheck'
end
2019-12-18 20:19:56 +01:00
task :default => [:spec, 'bundle:audit']
2020-03-01 22:05:43 +01:00
task travis: [:default, :'solargraph:tc']