forked from stripe/stripe-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stripe.gemspec
28 lines (23 loc) · 1019 Bytes
/
stripe.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
$:.unshift(File.join(File.dirname(__FILE__), 'lib'))
require 'stripe/version'
spec = Gem::Specification.new do |s|
s.name = 'stripe'
s.version = Stripe::VERSION
s.summary = 'Ruby bindings for the Stripe API'
s.description = 'Stripe is the easiest way to accept payments online. See https://stripe.com for details.'
s.authors = ['Ross Boucher', 'Greg Brockman']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://stripe.com/api'
s.license = 'MIT'
s.add_dependency('rest-client', '~> 1.4')
s.add_dependency('mime-types', '~> 1.25')
s.add_dependency('json', '~> 1.8.1')
s.add_development_dependency('mocha', '~> 0.13.2')
s.add_development_dependency('shoulda', '~> 3.4.0')
s.add_development_dependency('test-unit')
s.add_development_dependency('rake')
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
end