Sha256: 661e604da3c24e1afdd930cf5f3d1872177065b91785e7c4f1c99f42ae08240e
Contents?: true
Size: 553 Bytes
Versions: 2
Compression:
Stored size: 553 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'rubocop/rake_task' require 'bundler/audit/task' RSpec::Core::RakeTask.new(:spec) RuboCop::RakeTask.new Bundler::Audit::Task.new 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 task default: [:rubocop, :spec, 'bundle:audit'] task travis: [:default, :'solargraph:tc']
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dyndnsd-2.1.1 | Rakefile |
dyndnsd-2.1.0 | Rakefile |