-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathaffirm.gemspec
More file actions
26 lines (22 loc) · 894 Bytes
/
affirm.gemspec
File metadata and controls
26 lines (22 loc) · 894 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
26
Gem::Specification.new do |s|
s.name = "affirm"
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.has_rdoc = false
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", "3.2.0"
s.add_development_dependency "webmock", "1.21.0"
end