Sha256: cc7a328fdbf090974fce4b230a00bd9ae1aaaf1b6210736a086ec7a3f337d727
Contents?: true
Size: 544 Bytes
Versions: 30
Compression:
Stored size: 544 Bytes
Contents
# Add your own tasks in files placed in lib/tasks ending in .rake, # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. Dir['lib/tasks/*.rake'].each { |rake| load rake } require 'bundler' Bundler::GemHelper.install_tasks require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task test: :spec begin require 'rubocop/rake_task' RuboCop::RakeTask.new rescue LoadError desc 'Run RuboCop' task :rubocop do $stderr.puts 'Rubocop is disabled' end end task default: [:spec, :rubocop]
Version data entries
30 entries across 30 versions & 2 rubygems