-
Notifications
You must be signed in to change notification settings - Fork 5
/
nis.gemspec
46 lines (38 loc) · 1.61 KB
/
nis.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'nis/version'
Gem::Specification.new do |spec|
spec.name = 'nis-ruby'
spec.version = Nis::VERSION
spec.authors = ['Yoshiyuki Ieyama']
spec.email = ['[email protected]']
spec.summary = 'Ruby client library for the NEM Infrastructure Server API'
spec.description = 'Ruby client library for the NEM Infrastructure Server API'
spec.homepage = 'https://github.com/44uk/nis-ruby'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.2'
spec.metadata['yard.run'] = 'yri'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.require_paths = ['lib']
spec.post_install_message = '
<nis-ruby>
Please see https://gitter.im/44uk/nis-ruby for the latest information.
The gem is under development. Incompatible changes can be made.
Feel free to ask and give feedback to https://twitter.com/44uk_i3
Good luck! NEM application development!
'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'yard', '~> 0.9'
spec.add_development_dependency 'rubocop', '~> 0.49'
spec.add_development_dependency 'timecop', '~> 0.8'
spec.add_development_dependency 'webmock', '~> 2.3'
spec.add_development_dependency 'pry', '~> 0.10'
spec.add_dependency 'digest-sha3', '~> 1.1'
spec.add_dependency 'base32', '~> 0.3'
spec.add_dependency 'faraday', '~> 0.11'
spec.add_dependency 'faraday_middleware', '~> 0.11'
end