forked from jugend/amazon-ecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathamazon-ecs.gemspec
34 lines (30 loc) · 1.16 KB
/
amazon-ecs.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
32
33
34
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'amazon/ecs'
Gem::Specification.new do |gem|
gem.name = %q{amazon-ecs}
gem.version = Amazon::Ecs::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ["Herryanto Siatono"]
gem.email = %q{[email protected]}
gem.homepage = %q{https://github.com/jugend/amazon-ecs}
gem.summary = %q{Generic Amazon Product Advertising Ruby API.}
gem.description = %q{Generic Amazon Product Advertising Ruby API.}
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- test/*`.split("\n")
gem.require_paths = ["lib"]
if gem.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
gem.specification_version = 2
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
gem.add_runtime_dependency("nokogiri", "~> 1.4")
gem.add_runtime_dependency("ruby-hmac", "~> 0.3")
else
gem.add_dependency("nokogiri", "~> 1.4")
gem.add_dependency("ruby-hmac", "~> 0.3")
end
else
gem.add_dependency("nokogiri", "~> 1.4")
gem.add_dependency("ruby-hmac", "~> 0.3")
end
end