-
Notifications
You must be signed in to change notification settings - Fork 439
/
spree_gateway.gemspec
37 lines (30 loc) · 1.3 KB
/
spree_gateway.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
35
36
37
# coding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require 'spree_gateway/version'
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_gateway'
s.version = SpreeGateway::VERSION
s.summary = 'Collection of Payment Gateways for Spree Commerce such as Stripe, Braintree, etc.'
s.description = s.summary
s.author = 'Spree Commerce'
s.email = '[email protected]'
s.homepage = 'https://spreecommerce.org'
s.license = 'BSD-3-Clause'
s.metadata = {
"bug_tracker_uri" => "https://github.com/spree/spree_gateway/issues",
"changelog_uri" => "https://github.com/spree/spree_gateway/releases/tag/v#{s.version}",
"documentation_uri" => "https://guides.spreecommerce.org/",
"source_code_uri" => "https://github.com/spree/spree_gateway/tree/v#{s.version}",
}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_path = 'lib'
s.requirements << 'none'
s.add_dependency 'spree_core', '>= 3.7'
s.add_dependency 'spree_extension'
s.add_development_dependency 'braintree', '~> 4.20'
s.add_development_dependency 'rspec-activemodel-mocks'
s.add_development_dependency 'spree_dev_tools'
end