forked from fastjames/ebay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ebayapi.gemspec
25 lines (21 loc) · 924 Bytes
/
ebayapi.gemspec
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ebay/version"
Gem::Specification.new do |s|
s.name = "ebayapi"
s.version = Ebay::VERSION
s.author = "Cody Fausner"
s.email = "[email protected]"
s.homepage = "https://github.com/codyfauser/ebay"
s.summary = "Ruby interface to the eBay XML Trading API"
s.description = "A ruby library for interacting with the eBay XML Trading API, based on self-generated request and response classes."
s.files = Dir["{lib,test}/**/*", "[A-Z]*", "init.rb"]
s.require_path = "lib"
s.rubyforge_project = s.name
s.required_rubygems_version = ">= 1.3.4"
s.add_dependency("activesupport", [">= 2.3.4"])
s.add_dependency("xml-simple", ["~> 1.0.11"])
s.add_dependency("xml-mapping", ["~> 0.9.1"])
s.add_dependency("libxml-ruby", ["~> 1.1.4"])
s.add_dependency("money", ["~> 2.2.0"])
end