-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathforte_payments.gemspec
32 lines (27 loc) · 1.13 KB
/
forte_payments.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
30
31
32
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "forte_payments/version"
require "base64"
Gem::Specification.new do |s|
s.name = "forte-payments"
s.version = FortePayments::VERSION
s.authors = ["Taylor Brooks"]
s.email = ["dGJyb29rc0BnbWFpbC5jb20="].map{ |e| Base64.decode64(e) }
s.homepage = "https://github.com/taylorbrooks/forte-payments-ruby"
s.summary = %q{A Ruby wrapper for the Forte Payment REST API}
s.description = %q{A Ruby wrapper for the Forte Payment REST API}
s.license = "MIT"
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test)/})
s.require_paths = ["lib"]
s.add_runtime_dependency 'faraday'
s.add_runtime_dependency 'faraday_middleware'
s.add_runtime_dependency 'json'
s.add_runtime_dependency 'hashie'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest'
s.add_development_dependency 'vcr'
s.add_development_dependency 'webmock'
end