-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathruby-mws.gemspec
31 lines (26 loc) · 1.13 KB
/
ruby-mws.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
28
29
30
31
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ruby-mws/version"
Gem::Specification.new do |s|
s.name = "ruby-mws"
s.version = MWS::VERSION
s.authors = ["Erik Lyngved"]
s.email = ["elyngved@gmail.com"]
s.homepage = "http://github.com/elyngved/ruby-mws"
s.summary = %q{RubyMWS Gem}
s.description = %q{(Under development) This gem serves as a wrapper for Amazon.com's Marketplace Web Service (MWS) API. Visit http://github.com/elyngved/ruby-mws for documentation.}
s.license = 'MIT'
s.rubyforge_project = "ruby-mws"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# specify any dependencies here; for example:
s.add_development_dependency "rspec"
s.add_development_dependency "ephemeral_response"
s.add_runtime_dependency "httparty"
s.add_runtime_dependency "nokogiri"
s.add_runtime_dependency "ruby-hmac"
s.add_runtime_dependency "hashie"
s.add_runtime_dependency "rash"
end