Sha256: 7aeab06c09045a961b8a0f97f4f1f7398ba9083b8ea513d540e68023cbaf6d94
Contents?: true
Size: 376 Bytes
Versions: 18
Compression:
Stored size: 376 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |t| t.pattern = FileList['spec/**/*_spec.rb'].exclude('spec/remote/**/*') end namespace :spec do desc "Run remote specs" RSpec::Core::RakeTask.new(:remote) do |t| t.pattern = FileList['spec/remote/**/*_spec.rb'] end end task :test => :spec task :default => :spec
Version data entries
18 entries across 18 versions & 1 rubygems