-
Notifications
You must be signed in to change notification settings - Fork 2
/
ipaddress_2.gemspec
30 lines (28 loc) · 1.23 KB
/
ipaddress_2.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ipaddress_2/version'
Gem::Specification.new do |s|
s.licenses = ["MIT"]
s.summary = "IPv4/IPv6 address manipulation library"
s.name = "ipaddress_2"
s.version = IPAddress::VERSION
s.require_paths = ["lib"]
s.authors = ["bluemonk", "mikemackintosh"]
s.description = "IPAddress2 is a Ruby library designed to make manipulation\n of IPv4 and IPv6 addresses both powerful and simple. It maintains\n a layer of compatibility with Ruby's own IPAddr, while\n addressing many of its issues."
s.email = "[email protected]"
s.extra_rdoc_files = [
"CHANGELOG.rdoc",
"LICENSE.txt",
"README.rdoc"
]
s.files = `git ls-files -z`.split("\x0")
s.homepage = "https://github.com/ipaddress2-gem/ipaddress_2"
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "minitest", '~> 5.8', '>= 5.8.4'
s.add_development_dependency "pry", ">= 0.10.1"
s.add_development_dependency "travis", ">= 1.8.2"
s.add_development_dependency "jeweler", ">= 2.0.1"
s.add_development_dependency "codeclimate-test-reporter", ">= 0"
s.add_development_dependency "simplecov"
end