Sha256: 95657504b830783f0949ccf05c8673b33d5fb418ca85b779317e8c7043f3509c
Contents?: true
Size: 484 Bytes
Versions: 4
Compression:
Stored size: 484 Bytes
Contents
require 'bundler' Bundler::GemHelper.install_tasks require "rspec/core/rake_task" namespace :spec do desc "Run all of the system specs. [spec=system/foo.rb]" RSpec::Core::RakeTask.new(:system) do |spec| spec.pattern = 'spec/system/*_spec.rb' spec.rspec_opts = ['--color'] end desc "Run all of the unit specs. [spec=unit/foo.rb]" RSpec::Core::RakeTask.new(:test) do |spec| spec.pattern = 'spec/unit/*_spec.rb' spec.rspec_opts = ['--color'] end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
buildem-0.0.5 | Rakefile |
buildem-0.0.4 | Rakefile |
buildem-0.0.3 | Rakefile |
buildem-0.0.2 | Rakefile |