forked from highfidelity/fake_braintree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_braintree.gemspec
29 lines (25 loc) · 1.11 KB
/
fake_braintree.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'fake_braintree/version'
Gem::Specification.new do |s|
s.name = 'fake_braintree'
s.version = FakeBraintree::VERSION
s.authors = ['thoughtbot, inc.']
s.email = ['gabe@thoughtbot.com', 'ben@thoughtbot.com']
s.homepage = ''
s.summary = %q{A fake Braintree that you can run integration tests against}
s.description = %q{A fake Braintree that you can run integration tests against}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
s.add_dependency 'activesupport'
s.add_dependency 'braintree', '~> 2.32'
s.add_dependency 'capybara', '>= 2.2.0'
s.add_dependency 'sinatra'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.2'
s.add_development_dependency 'timecop', '~> 0.6'
s.add_development_dependency 'capybara-webkit'
end