public
Rubygem
Description: Makes http fun! Also, makes consuming restful web services dead easy.
Homepage:
Clone URL: git://github.com/jnunemaker/httparty.git
Click here to lend your support to: httparty and make a donation at www.pledgie.com !
Added spec task and set it as default task.
jnunemaker (author)
Fri Oct 24 21:37:51 -0700 2008
commit  30a65000adc8d503f3d96b0ca50873f894a4db1b
tree    06767a82c47bfc9cb85f44e5a354ca5d30c7c0c1
parent  caee477d0c143b0a0c63a09d253e1669bf34db7d
...
1
2
 
3
4
5
 
 
 
 
 
 
 
6
...
1
2
3
4
 
5
6
7
8
9
10
11
12
13
0
@@ -1,4 +1,11 @@
0
 require 'config/requirements'
0
 require 'config/hoe' # setup Hoe + all gem configuration
0
+require "spec/rake/spectask"
0
 
0
-Dir['tasks/**/*.rake'].each { |rake| load rake }
0
\ No newline at end of file
0
+Dir['tasks/**/*.rake'].each { |rake| load rake }
0
+
0
+task :default => :spec
0
+
0
+Spec::Rake::SpecTask.new do |t|
0
+  t.spec_files = FileList["spec/**/*_spec.rb"]
0
+end
0
\ No newline at end of file

Comments