forked from reverbdotcom/affirm-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaffirm-ruby.gemspec
More file actions
25 lines (21 loc) · 859 Bytes
/
affirm-ruby.gemspec
File metadata and controls
25 lines (21 loc) · 859 Bytes
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
Gem::Specification.new do |s|
s.name = "affirm-ruby"
s.summary = "Affirm Ruby Client Library"
s.description = "Ruby client library for integrating with Affirm financing payments"
s.version = "1.1.3"
s.license = "Apache License Version 2.0"
s.author = "Reverb.com"
s.email = "dev@reverb.com"
s.files = Dir.glob ["README.md", "lib/**/*.{rb}", "spec/**/*", "*.gemspec"]
if s.respond_to?(:metadata)
s.metadata["allowed_push_host"] = "https://rubygems.pkg.github.com"
else
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
end
s.metadata = { "github_repo" => "ssh://github.com/reverbdotcom/affirm-ruby" }
s.add_dependency "typhoeus"
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "webmock"
end