forked from bjjb/ebayr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ebayr.gemspec
27 lines (25 loc) · 1.09 KB
/
ebayr.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
26
27
# -*- encoding : utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.authors = ['JJ Buckley']
gem.email = ["[email protected]"]
gem.summary = "A tidy library for using the eBay Trading API with Ruby"
gem.description = <<-DESCRIPTION
eBayR is a gem that makes it (relatively) easy to use the eBay Trading API from
Ruby. Includes a self-contained XML parser, a flexible callback system, and a
command-line client which aids integration into other projects.
DESCRIPTION
gem.homepage = "http://github.com/bjjb/ebayr"
gem.license = "MIT"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^test/})
gem.name = "ebayr"
gem.require_paths = ["lib"]
gem.version = "0.1.0"
gem.add_dependency 'nokogiri', '~> 1.6'
gem.add_dependency 'activesupport', '~> 5.1'
gem.add_development_dependency 'rake', '~> 11'
gem.add_development_dependency 'fakeweb'
end