forked from pay-rails/pay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpay.gemspec
30 lines (25 loc) · 842 Bytes
/
pay.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "pay/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "pay"
s.version = Pay::VERSION
s.authors = ["Jason Charnes", "Chris Oliver"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/pay-rails/pay"
s.summary = "Payments engine for Ruby on Rails"
s.description = "Stripe, Paddle, and Braintree payments for Ruby on Rails apps"
s.license = "MIT"
s.files = Dir[
"{app,config,db,lib}/**/*",
"MIT-LICENSE",
"Rakefile",
"README.md"
]
s.add_dependency "rails", ">= 6.0.0"
s.add_development_dependency "mocha"
s.add_development_dependency "standardrb"
s.add_development_dependency "vcr"
s.add_development_dependency "webmock"
end