Sha256: 34913ff9d0cbd9b1885a766466f6d14f9684372972fd9868eaa3ac8070df1618

Contents?: true

Size: 454 Bytes

Versions: 1

Compression:

Stored size: 454 Bytes

Contents

require "bundler/gem_tasks"

require 'rspec/core/rake_task'

task(:spec).clear
desc "Run specs with Rails app"
RSpec::Core::RakeTask.new("spec") do |task|
  task.exclude_pattern = "spec/**/*_norails.rb"
  task.verbose = false
end

desc "Run acceptance specs without Rails"
RSpec::Core::RakeTask.new("spec:norails") do |task|
  task.pattern = "spec/**/*_norails.rb"
  task.verbose = false
end

desc "Run the all specs"
task default: %w(spec:norails spec)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
anyway_config-0.5.1 Rakefile