Sha256: e25517298b91e362e601215a4bb026c23165de47aee856d1e2fc5750e16d9e57
Contents?: true
Size: 402 Bytes
Versions: 5
Compression:
Stored size: 402 Bytes
Contents
require "bundler/gem_tasks" require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:"spec:library") do |t| t.exclude_pattern = 'spec/**/monkey_spec.rb' t.rspec_opts = "--tag ~skip_library" end RSpec::Core::RakeTask.new(:"spec:monkey_patch") do |t| t.rspec_opts = "-r monkey_patch.rb --tag ~skip_monkey_patch" end task :default => :spec task :spec => [:"spec:library", :"spec:monkey_patch"]
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
lightio-0.4.4 | Rakefile |
lightio-0.4.3 | Rakefile |
lightio-0.4.2 | Rakefile |
lightio-0.4.1 | Rakefile |
lightio-0.4.0 | Rakefile |