forked from hakanensari/vacuum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvacuum.gemspec
27 lines (24 loc) · 984 Bytes
/
vacuum.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 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'vacuum/version'
Gem::Specification.new do |s|
s.name = 'vacuum'
s.version = Vacuum::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Hakan Ensari']
s.email = ['[email protected]']
s.homepage = 'https://github.com/hakanensari/vacuum'
s.summary = 'A wrapper to various Amazon Web Services APIs'
s.description = <<-EOF
Vacuum is a wrapper to various Amazon Web Services (AWS) APIs, including
Product Advertising and Marketplace Web Services (MWS).
EOF
s.add_development_dependency 'rake', '~> 0.9'
s.add_development_dependency 'rspec', '~> 2.9'
s.add_runtime_dependency 'addressable', '~> 2.2'
s.add_runtime_dependency 'faraday', '~> 0.7.6'
s.add_runtime_dependency 'nokogiri', '~> 1.5'
s.files = Dir.glob('lib/**/*') + %w(LICENSE README.md)
s.test_files = Dir.glob('spec/**/*')
s.require_paths = ['lib']
end