Sha256: 9c4f846060b0093be96fb4ac9eda26b28516f822be08c107d7e4b247e120b256
Contents?: true
Size: 445 Bytes
Versions: 3
Compression:
Stored size: 445 Bytes
Contents
require 'rubygems' require 'bundler' Bundler.setup require 'rake' require 'foodcritic' require 'rspec/core/rake_task' task default: [:spec] RSpec::Core::RakeTask.new(:spec) do |t| t.pattern = './test/unit{,/*/**}/*_spec.rb' end FoodCritic::Rake::LintTask.new do |t| t.options = { fail_tags: ['correctness'] } end begin require 'emeril/rake' rescue LoadError puts '>>>>> Emerial gem not loaded, omitting taskes' unless ENV['CI'] end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
from-scratch-0.7.0 | cookbooks/runit/Rakefile |
from-scratch-0.6.0 | cookbooks/runit/Rakefile |
from-scratch-0.5.0 | cookbooks/runit/Rakefile |