forked from ecielam/spree_amazon_affiliate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spree_amazon_affiliate.gemspec
29 lines (25 loc) · 1.3 KB
/
spree_amazon_affiliate.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
# encoding: UTF-8
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_amazon_affiliate'
s.version = '1.0.0.beta'
s.summary = 'The Amazon Affiliate extension for Spree allows the import of Amazon products into your store, and will link to Amazon rather than the cart.'
s.description = 'The Amazon Affiliate extension for Spree allows the import of Amazon products into your store, and will link to Amazon rather than the cart.'
s.required_ruby_version = '>= 1.9.2'
s.author = 'Jeff Dutil'
s.email = '[email protected]'
s.homepage = 'http://jdutil.com/jdutil/spree_amazon_affiliate'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_path = 'lib'
s.requirements << 'none'
s.add_dependency 'amazon-ecs', '~> 2.2.0'
s.add_dependency 'htmlentities'
s.add_dependency 'spree_core', '>= 1.1.0'
s.add_development_dependency 'capybara', '~> 1.1'
s.add_development_dependency 'factory_girl', '~> 2.6'
s.add_development_dependency 'ffaker', '~> 1.12'
s.add_development_dependency 'rspec-rails', '~> 2.9'
s.add_development_dependency 'simplecov', '~> 0.6.2'
s.add_development_dependency 'sqlite3', '~> 1.3.6'
end