Sha256: 0041a4b81821393fbec2fcb2c9919e8dd524c18e7b9f0a37a8bbd623f2defc91
Contents?: true
Size: 516 Bytes
Versions: 10
Compression:
Stored size: 516 Bytes
Contents
begin require "bundler/setup" rescue LoadError puts "You must `gem install bundler` and `bundle install` to run rake tasks" end Bundler::GemHelper.install_tasks require "bundler/gem_tasks" require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:spec) task :default do system "bundle exec rspec spec" end task :check do system "coveralls report" system "rubocop" system "inch --pedantic" system "metric_fu --no-cane --no-churn --no-rails-best-practices " \ "--no-hotspots --no-reek" end
Version data entries
10 entries across 10 versions & 1 rubygems