mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-05 07:01:03 -05:00
13 lines
174 B
Ruby
13 lines
174 B
Ruby
require 'rake'
|
|
require 'rspec/core/rake_task'
|
|
|
|
RSpec::Core::RakeTask.new(:spec)
|
|
|
|
task :default => :spec
|
|
|
|
task :run_tests do
|
|
system("rspec spec/")
|
|
system("rake test")
|
|
end
|
|
|