Sha256: 4c0129f3d5de125046c07f6ab8e8902719e41f44f592dc9e1762bcdd02c007b7
Contents?: true
Size: 560 Bytes
Versions: 7
Compression:
Stored size: 560 Bytes
Contents
begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__) load 'rails/tasks/engine.rake' require 'thor' helper = Bundler::GemHelper.new helper.install require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task default: :spec begin require 'yard' YARD::Rake::YardocTask.new rescue LoadError task :yard do abort 'YARD is not available. In order to run yard, you must: gem install yard' end end
Version data entries
7 entries across 7 versions & 3 rubygems