Sha256: 7753e62b2375ff40d474503b83f103a43d4f3b3b86394564663f5d26d1892c9a
Contents?: true
Size: 430 Bytes
Versions: 9
Compression:
Stored size: 430 Bytes
Contents
begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end require File.expand_path('../spec/example_app/config/application', __FILE__) Bundler::GemHelper.install_tasks Rails.application.load_tasks task(:default).clear task default: [:spec] if defined? RSpec task(:spec).clear RSpec::Core::RakeTask.new(:spec) do |t| t.verbose = false end end
Version data entries
9 entries across 9 versions & 1 rubygems