Sha256: cf9f710f7abef72cfffaa61b81fbc1b8689f3878e4bc3dcd91d2cedf5ea7b1f8
Contents?: true
Size: 409 Bytes
Versions: 10
Compression:
Stored size: 409 Bytes
Contents
require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |config| config.pattern = 'spec/lib/**/*_spec.rb' end RSpec::Core::RakeTask.new(:integration) do |config| config.pattern = 'spec/integration/**/*_spec.rb' end RSpec::Core::RakeTask.new(:integration_rails) do |config| config.pattern = 'spec/integration_rails/**/*_spec.rb' end task default: [:spec, :integration, :integration_rails]
Version data entries
10 entries across 10 versions & 2 rubygems