forked from kayoom/ebayapi
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathebayapi.gemspec
More file actions
24 lines (20 loc) · 863 Bytes
/
ebayapi.gemspec
File metadata and controls
24 lines (20 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "ebayapi"
s.version = "0.12.0"
s.author = "Cody Fausner"
s.email = "codyfauser@gmail.com"
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" )
s.add_dependency("xml-simple", ["~> 1.0.11"])
s.add_dependency("xml-mapping", ["~> 0.8.1"])
s.add_dependency("libxml-ruby", ["~> 1.1.4"])
s.add_dependency("money")
end