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 / ebay4r.gemspec
100644 29 lines (23 sloc) 0.855 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# $Id: ebay4r.gemspec,v 1.8 2006/10/10 08:04:49 garrydolley Exp $
 
require 'rubygems'
 
spec = Gem::Specification.new do |s|
  s.name = "ebay"
  s.version = "1.1"
  s.author = "Garry Dolley"
  s.email = "gdolley@ucla.edu"
  s.homepage = "http://ebay4r.rubyforge.org"
  s.platform = Gem::Platform::RUBY
  s.summary = "eBay4R is a Ruby wrapper for eBay's Web Services SOAP API. Emphasis is on ease of use and small footprint."
 
  candidates = Dir.glob("{examples,lib,test,contrib}/**/*") + Dir.glob("./**/.document")
  s.files = candidates.delete_if do |item|
                 item.include?("CVS") || item.include?("rdoc")
               end
 
  s.require_path = "lib"
  s.autorequire = "eBayAPI"
  s.has_rdoc = true
  s.extra_rdoc_files = ["README"]
end
 
if $0 == __FILE__
  Gem::manage_gems
  Gem::Builder.new(spec).build
end