1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/Rakefile

12 lines
288 B
Text
Raw Normal View History

2009-08-22 10:25:04 -04:00
require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
spec.ruby_opts << '-rubygems'
spec.libs << 'lib' << 'spec'
spec.spec_files = FileList['spec/**/*_spec.rb']
2009-09-08 21:40:21 -04:00
end
require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:features)
task default: [:spec, :features]