1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/Rakefile
Michael Stock a394cd28a8 Bump RSpec from 1.3 to 3.1
- Update spec_helper
- Update rake task for running specs
2014-12-06 16:10:24 -08:00

10 lines
195 B
Ruby

begin
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
rescue LoadError
end
require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:features)
task default: [:spec, :features]