forked from rortechie/spree-braintree
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspree_braintree.gemspec
26 lines (22 loc) · 926 Bytes
/
spree_braintree.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
# encoding: UTF-8
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_braintree'
s.version = '1.0.0'
s.summary = 'This gem enables integration of Braintree with Spree'
s.description = 'This gem enables integration of Braintree with Spree'
s.required_ruby_version = '>= 1.8.7'
s.author = 'Jay Rortechie'
s.email = '[email protected]'
s.homepage = 'http://www.rortechie.com'
#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 'spree_core', '~> 1.0'
s.add_development_dependency 'capybara', '1.0.1'
s.add_development_dependency 'factory_girl'
s.add_development_dependency 'ffaker'
s.add_development_dependency 'rspec-rails', '~> 2.7'
s.add_development_dependency 'sqlite3'
end