Skip to content

Commit

Permalink
Added gemspec and Gemfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
rubiety committed Dec 18, 2010
1 parent ddb559f commit 6b44cee
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,2 +1,4 @@
.bundle
Gemfile.lock
lib/ebay/schema/ebaySvc.xsd
examples/config.rb
3 changes: 3 additions & 0 deletions Gemfile
@@ -0,0 +1,3 @@
source "http://rubygems.org"

gemspec
25 changes: 25 additions & 0 deletions ebayapi.gemspec
@@ -0,0 +1,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 = "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", [">= 2.3.4"])
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", ["~> 1.7.1"])
end
3 changes: 3 additions & 0 deletions lib/ebay/version.rb
@@ -0,0 +1,3 @@
module Ebay
VERSION = "0.13.0"
end
1 change: 1 addition & 0 deletions lib/ebayapi.rb
@@ -0,0 +1 @@
require "ebay"

0 comments on commit 6b44cee

Please sign in to comment.