forked from balanced/balanced-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbalanced.gemspec
25 lines (22 loc) · 1.02 KB
/
balanced.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
#!/usr/bin/env gem build
# -*- encoding: utf-8 -*-
require "base64"
require File.expand_path('../lib/balanced/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Mahmoud Abdelkader"]
gem.email = ["bWFobW91ZEBwb3VuZHBheS5jb20="].map { |i| Base64.decode64(i) }
gem.description = %q{Balanced is the payments platform for marketplaces.
Integrate a payments experience just like Amazon for your marketplace.
Forget about dealing with banking systems, compliance, fraud, and security.
}
gem.summary = %q{Sign up on https://balancedpayments.com/}
gem.homepage = "https://balancedpayments.com"
gem.add_dependency("faraday", '~> 0.8')
gem.add_dependency("faraday_middleware", '~> 0.8.7')
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "balanced"
gem.require_paths = %w(lib)
gem.version = Balanced::VERSION
end