-
Notifications
You must be signed in to change notification settings - Fork 188
/
koudoku.gemspec
42 lines (32 loc) · 1.43 KB
/
koudoku.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
38
39
40
41
42
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "koudoku/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "koudoku"
s.version = Koudoku::VERSION
s.authors = ["Andrew Culver"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/andrewculver/koudoku"
s.summary = %q{Robust subscription support for Rails with Stripe.}
s.description = %q{Robust subscription support for Rails with Stripe. Provides package levels, coupons, logging, notifications, etc.}
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails"
s.add_dependency "stripe"
s.add_dependency "stripe_event"
s.add_dependency "bluecloth"
s.add_development_dependency "jquery-rails"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails", ">= 3.0.0"
s.add_development_dependency 'capybara'
s.add_development_dependency 'factory_girl_rails'
s.add_development_dependency 'pry'
s.post_install_message = <<-EOS
Koudoku is still in early development, so if this installation is an upgrade
from an earlier version, be sure to check the CHANGELOG for any instructions
you may need to follow to accommodate breaking changes:
https://github.com/andrewculver/koudoku/blob/master/CHANGELOG.md
EOS
end