forked from prag-juan/dwolla-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dwolla-ruby.gemspec
27 lines (22 loc) · 1003 Bytes
/
dwolla-ruby.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
$:.unshift(File.join(File.dirname(__FILE__), 'lib'))
require "dwolla/version"
Gem::Specification.new do |s|
s.name = "dwolla-ruby"
s.version = Dwolla::VERSION
s.authors = ["Michael Schonfeld"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/dwolla/dwolla-ruby"
s.summary = %q{Official Ruby Wrapper for Dwolla's API}
s.description = %q{Official Ruby Wrapper for Dwolla's API. Completely re-written based on Stripe's Ruby Bindings.}
s.license = 'MIT'
s.rubyforge_project = "dwolla-ruby"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.require_paths = %w{lib}
s.add_dependency('rest-client', '~> 1.7', '>= 1.7.3')
s.add_dependency('multi_json', '>= 1.0.4', '< 2')
s.add_dependency('addressable', '>= 2')
s.add_development_dependency('mocha')
s.add_development_dependency('test-unit')
s.add_development_dependency('rake')
end