Sha256: 29afeabf07929569153ec246f332d579bdc8d073ff8203b83a4a68de347df1b7
Contents?: true
Size: 474 Bytes
Versions: 80
Compression:
Stored size: 474 Bytes
Contents
#!/usr/bin/env rake $LOAD_PATH << File.expand_path('../lib', __FILE__) require 'fedux_org_stdlib/rake_tasks' desc 'Show help for rake' task :default do sh 'bundle exec rake -T' end desc 'Run test suite' task test: ['test:rubocop', 'test:rspec'] namespace :test do desc 'Test with coveralls' task coveralls: ['test', 'coveralls:push'] require 'rubocop/rake_task' RuboCop::RakeTask.new desc 'Run rspec' task :rspec do sh 'bundle exec rspec' end end
Version data entries
80 entries across 40 versions & 1 rubygems