-
Notifications
You must be signed in to change notification settings - Fork 5
/
roma-client.gemspec
41 lines (36 loc) · 998 Bytes
/
roma-client.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'roma/client/version'
Gem::Specification.new do |s|
s.name = 'roma-client'
s.version = Roma::Client::VERSION::STRING
s.authors = ['Muga Nishizawa', 'Junji Torii']
s.summary = 'ROMA client library'
s.description = 'ROMA client library'
s.homepage = 'http://roma-kvs.org/'
s.license = 'GPL-3.0'
s.required_ruby_version = '> 2.1.0'
s.files = Dir[
'[A-Z]*',
'bin/**/*',
'lib/**/*',
'test/**/*.rb',
'spec/**/*.rb',
'doc/**/*',
'examples/**/*',
]
# Use these for libraries.
s.require_path = 'lib'
s.has_rdoc = true
s.rdoc_options = [
'--line-numbers',
'--inline-source',
'--main', 'README.md',
'-c UTF-8',
]
s.extra_rdoc_files = ['README.md', 'CHANGELOG.md']
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rdoc'
s.add_development_dependency 'roma'
end