Sha256: ba149f75f5e55c559b0f1d5993d2c7061f520122850acc5db33375d4b76833ea
Contents?: true
Size: 548 Bytes
Versions: 10
Compression:
Stored size: 548 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. require File.expand_path('../spec/dummy/config/application', __FILE__) Rails.application.config.root = "spec/dummy" Bundler::GemHelper.install_tasks Rails.application.load_tasks task default: :rspec desc "run rspec unit tests" begin require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:rspec) do |rspec_task| # rspec_task.exclude_pattern = 'spec/e2e/**/*_spec.rb' end end
Version data entries
10 entries across 10 versions & 1 rubygems