forked from rajcybage/ebay_ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathebay_ruby.gemspec
More file actions
23 lines (19 loc) · 835 Bytes
/
ebay_ruby.gemspec
File metadata and controls
23 lines (19 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ebay_ruby/version'
Gem::Specification.new do |spec|
spec.name = "ebay_ruby"
spec.version = EbayRuby::VERSION
spec.date = '2014-06-10'
spec.authors = ["Rajarshi Das"]
spec.email = ["rdasrubyonrails@gmail.com"]
spec.summary = %q{Get access to all ebay api fundamentals}
spec.description = %q{Get access to all ebay api fundamentals with fetch data, find item..many more}
spec.homepage = ""
spec.license = "MIT"
spec.files = Dir["README.md","Gemfile","Rakefile", "lib/**/*"]
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake"
spec.add_development_dependency "active_support"
end