forked from Absolight/epp-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathepp-client-rgp.gemspec
More file actions
34 lines (29 loc) · 1017 Bytes
/
epp-client-rgp.gemspec
File metadata and controls
34 lines (29 loc) · 1017 Bytes
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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/epp-client/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'epp-client-rgp'
gem.version = EPPClient::VERSION
gem.authors = ['Mathieu Arnold']
gem.email = ['m@absolight.fr']
gem.description = 'RGP EPP client library.'
gem.summary = 'RGP EPP client library'
gem.homepage = "https://github.com/Absolight/epp-client"
gem.required_ruby_version = '>= 1.8.7'
gem.required_rubygems_version = ">= 1.3.6"
gem.files = [
'ChangeLog',
'Gemfile',
'MIT-LICENSE',
'README',
'Rakefile',
'epp-client-rgp.gemspec',
'lib/epp-client/rgp.rb',
'vendor/ietf/rfc3915.txt',
'vendor/ietf/rgp-1.0.xsd',
]
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.require_paths = ['lib']
gem.add_development_dependency "bundler", ">= 1.0.0"
gem.add_dependency('nokogiri', '~> 1.4')
gem.add_dependency('builder', '>= 2.1.2')
end