forked from payolapayments/payola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
payola.gemspec
36 lines (30 loc) · 1.3 KB
/
payola.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "payola/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "payola-payments"
s.version = Payola::VERSION
s.authors = ["Pete Keen"]
s.email = ["[email protected]"]
s.homepage = "https://www.payola.io"
s.summary = "Drop-in Rails engine for accepting payments with Stripe"
s.description = "One-off and subscription payments for your Rails application"
s.license = "LGPL-3.0"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails", ">= 4.1"
s.add_dependency "jquery-rails"
s.add_dependency "stripe", "= 1.20.1"
s.add_dependency "aasm", ">= 4.0.7"
s.add_dependency "stripe_event", ">= 1.3.0"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency 'factory_girl_rails'
s.add_development_dependency "stripe-ruby-mock", "2.1.0"
s.add_development_dependency "sucker_punch", "~> 1.2.1"
s.add_development_dependency "docverter"
s.post_install_message = <<-HERE
Please ensure that your Payola route has 'as: :payola' included. Prior to v1.0.7 this was not added automatically.
HERE
end