-
Notifications
You must be signed in to change notification settings - Fork 104
/
gmo.gemspec
31 lines (27 loc) · 1.21 KB
/
gmo.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'gmo/version'
Gem::Specification.new do |gem|
gem.name = "gmo"
gem.description = %q{Ruby client library for the GMO Payment Platform.}
gem.summary = %q{GMO Payment API client: Ruby client library for the GMO Payment Platform.}
gem.homepage = "https://github.com/t-k/gmo-payment-ruby"
gem.version = GMO::VERSION
gem.license = "MIT"
gem.authors = ["Tatsuo Kaniwa"]
gem.email = ["[email protected]"]
gem.require_paths = ["lib"]
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.extra_rdoc_files = ["README.md"]
gem.rdoc_options = ["--line-numbers", "--inline-source", "--title", "GMO"]
gem.add_runtime_dependency "rack"
gem.add_runtime_dependency "multi_json"
gem.add_runtime_dependency "nkf"
gem.add_development_dependency "rspec", "~> 3"
gem.add_development_dependency "rake"
gem.add_development_dependency "vcr"
gem.add_development_dependency "webmock"
end