public
Description: eBay4R is a Ruby wrapper for eBay's Web Services SOAP API
Homepage: http://rubyforge.org/projects/ebay4r/
Clone URL: git://github.com/up_the_irons/ebay4r.git
Click here to lend your support to: ebay4r and make a donation at www.pledgie.com !
ebay4r / Rakefile
100644 20 lines (16 sloc) 0.292 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
begin
  require 'rubygems'
  require 'rake/gempackagetask'
rescue Exception
  nil
end
 
require 'rake/testtask'
 
desc "Default Task"
task :default => :test_all
 
Rake::TestTask.new(:test_all) do |t|
  t.test_files = FileList[
    'test/tc_*.rb',
  ]
  t.warning = false
  t.verbose = false
end