Sha256: 74a21bbdc364fd51825c4a8304f5e2f39e90d9930cffdcefa28c7f224ad949e7
Contents?: true
Size: 490 Bytes
Versions: 7
Compression:
Stored size: 490 Bytes
Contents
require "bundler/gem_tasks" require "rspec/core/rake_task" namespace :spec do desc "Run Unit Tests" RSpec::Core::RakeTask.new(:unit) do |t| t.pattern = 'spec/lib/**/*_spec.rb' end desc "Run Feature/Integration Tests" RSpec::Core::RakeTask.new(:features) do |t| t.pattern = 'spec/features/**/*.rb' end desc "Run All Tests" RSpec::Core::RakeTask.new(:all) do |t| t.pattern = 'spec/lib/**/*_spec.rb, spec/features/**/*.rb' end end task :default => "spec:all"
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
muchkeys-0.7.1 | Rakefile |
muchkeys-0.7.0 | Rakefile |
muchkeys-0.5.0 | Rakefile |
muchkeys-0.4.0 | Rakefile |
muchkeys-0.3.7 | Rakefile |
muchkeys-0.3.6 | Rakefile |
muchkeys-0.3.3 | Rakefile |