-
Notifications
You must be signed in to change notification settings - Fork 9
/
a2z.gemspec
24 lines (20 loc) · 863 Bytes
/
a2z.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/a2z/version', __FILE__)
Gem::Specification.new do |gem|
gem.author = 'Matt Huggins'
gem.email = '[email protected]'
gem.description = 'Ruby DSL for Amazon Product Advertising API'
gem.summary = 'Ruby DSL for Amazon Product Advertising API'
gem.homepage = 'https://github.com/mhuggins/a2z'
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|spec|features)/})
gem.name = 'a2z'
gem.require_path = 'lib'
gem.version = A2z::VERSION
gem.add_dependency 'crack'
gem.add_dependency 'jeff', '~> 0.6.4'
gem.add_dependency 'money'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
end