forked from stripe-ruby-mock/stripe-ruby-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stripe-ruby-mock.gemspec
27 lines (22 loc) · 1.01 KB
/
stripe-ruby-mock.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/stripe_mock/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "stripe-ruby-mock"
gem.version = StripeMock::VERSION
gem.summary = %q{TDD with stripe}
gem.description = %q{A drop-in library to test stripe without hitting their servers}
gem.license = "MIT"
gem.authors = ["Gilbert"]
gem.email = "[email protected]"
gem.homepage = "https://github.com/rebelidealist/stripe-ruby-mock"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_dependency 'stripe', '~> 1.31'
gem.add_dependency 'multi_json', '~> 1.0'
gem.add_dependency 'dante', '>= 0.2.0'
gem.add_development_dependency 'rspec', '~> 3.1.0'
gem.add_development_dependency 'rubygems-tasks', '~> 0.2'
gem.add_development_dependency 'thin', '~> 1.6.4'
end