blackwinter-ipaddress 0.8.0.1 → 0.8.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/ipaddress.gemspec +56 -0
- data/lib/ipaddress.rb +5 -5
- data/lib/ipaddress/prefix.rb +1 -1
- metadata +32 -46
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a1235bcce4bc0c6b39a8b7666462745136fcfa6e
|
4
|
+
data.tar.gz: 0c4707965c6a9f32d61fc0133dff0e51ecabd89a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b9debe921361490b26cec3f58c971807c091ab2b85e988ccff0b2b1d3249ec5eebf17e566e3995eb71718c1816cac36ebea63786a352a9182d8a22ffc9280e8b
|
7
|
+
data.tar.gz: 3a1c878382829c65937df75ae5c00daacf5fbb7f0bb0ac736eee10486d0b582269eee0190d29b1937fa3a0c67b11ff7b0397b5839f1399c941700e747298caa6
|
data/Rakefile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'rake'
|
2
2
|
require 'rake/clean'
|
3
3
|
require 'rake/testtask'
|
4
|
-
require '
|
4
|
+
require 'rake/rdoctask'
|
5
5
|
|
6
6
|
$:.unshift(File.expand_path('../lib', __FILE__))
|
7
7
|
require 'ipaddress'
|
@@ -22,7 +22,7 @@ begin
|
|
22
22
|
a layer of compatibility with Ruby's own IPAddr, while
|
23
23
|
addressing many of its issues.
|
24
24
|
EOD
|
25
|
-
gem.add_dependency 'ruby-nuggets', '>= 0.
|
25
|
+
gem.add_dependency 'ruby-nuggets', '>= 0.9.3'
|
26
26
|
end
|
27
27
|
rescue LoadError
|
28
28
|
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.8.0
|
1
|
+
0.8.0
|
data/ipaddress.gemspec
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{blackwinter-ipaddress}
|
8
|
+
s.version = "0.8.0.2"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ['Marco Ceresa', 'Jens Wille']
|
12
|
+
s.date = %q{2012-07-20}
|
13
|
+
s.description = %q{ IPAddress is a Ruby library designed to make manipulation
|
14
|
+
of IPv4 and IPv6 addresses both powerful and simple. It mantains
|
15
|
+
a layer of compatibility with Ruby's own IPAddr, while
|
16
|
+
addressing many of its issues.
|
17
|
+
}
|
18
|
+
s.email = %w[ceresa@gmail.com jens.wille@uni-koeln.de]
|
19
|
+
s.extra_rdoc_files = [
|
20
|
+
"LICENSE",
|
21
|
+
"README.rdoc"
|
22
|
+
]
|
23
|
+
s.files = [
|
24
|
+
".document",
|
25
|
+
"CHANGELOG.rdoc",
|
26
|
+
"LICENSE",
|
27
|
+
"README.rdoc",
|
28
|
+
"Rakefile",
|
29
|
+
"VERSION",
|
30
|
+
"ipaddress.gemspec",
|
31
|
+
"lib/ipaddress.rb",
|
32
|
+
"lib/ipaddress/ipv4.rb",
|
33
|
+
"lib/ipaddress/ipv6.rb",
|
34
|
+
"lib/ipaddress/prefix.rb",
|
35
|
+
"lib/ipaddress/conversions.rb",
|
36
|
+
"test/ipaddress/ipv4_test.rb",
|
37
|
+
"test/ipaddress/ipv6_test.rb",
|
38
|
+
"test/ipaddress/prefix_test.rb",
|
39
|
+
"test/ipaddress_test.rb",
|
40
|
+
"test/test_helper.rb"
|
41
|
+
]
|
42
|
+
s.homepage = %q{https://github.com/blackwinter/ipaddress}
|
43
|
+
s.require_paths = ["lib"]
|
44
|
+
s.rubygems_version = %q{1.6.2}
|
45
|
+
s.summary = %q{IPv4/IPv6 addresses manipulation library [Incompatible fork]}
|
46
|
+
|
47
|
+
if s.respond_to? :specification_version then
|
48
|
+
s.specification_version = 3
|
49
|
+
|
50
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
51
|
+
else
|
52
|
+
end
|
53
|
+
else
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
data/lib/ipaddress.rb
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
#++
|
14
14
|
|
15
15
|
require 'ipaddress/conversions'
|
16
|
-
require 'nuggets/
|
16
|
+
require 'nuggets/lazy_attr'
|
17
17
|
|
18
18
|
class IPAddress
|
19
19
|
|
@@ -23,12 +23,12 @@ class IPAddress
|
|
23
23
|
include Conversions
|
24
24
|
extend Conversions
|
25
25
|
|
26
|
-
include
|
26
|
+
include Nuggets::LazyAttr
|
27
27
|
|
28
|
-
VERSION = '0.8.0.
|
28
|
+
VERSION = '0.8.0.2'
|
29
29
|
NAME = 'IPAddress'
|
30
|
-
GEM = '
|
31
|
-
AUTHORS = ['Marco Ceresa <ceresa@ieee.org>'
|
30
|
+
GEM = 'ipaddress'
|
31
|
+
AUTHORS = ['Marco Ceresa <ceresa@ieee.org>']
|
32
32
|
|
33
33
|
class << self
|
34
34
|
|
data/lib/ipaddress/prefix.rb
CHANGED
metadata
CHANGED
@@ -1,80 +1,66 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: blackwinter-ipaddress
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.0.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.8.0.2
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
6
|
+
authors:
|
7
7
|
- Marco Ceresa
|
8
|
+
- Jens Wille
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
20
|
-
requirements:
|
21
|
-
- - ">="
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: 0.8.9
|
24
|
-
version:
|
25
|
-
description: " IPAddress is a Ruby library designed to make manipulation\n of IPv4 and IPv6 addresses both powerful and simple. It mantains\n a layer of compatibility with Ruby's own IPAddr, while\n addressing many of its issues.\n"
|
26
|
-
email: ceresa@gmail.com
|
12
|
+
date: 2012-07-20 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: " IPAddress is a Ruby library designed to make manipulation \n of
|
15
|
+
IPv4 and IPv6 addresses both powerful and simple. It mantains\n a layer of
|
16
|
+
compatibility with Ruby's own IPAddr, while \n addressing many of its issues.\n"
|
17
|
+
email:
|
18
|
+
- ceresa@gmail.com
|
19
|
+
- jens.wille@uni-koeln.de
|
27
20
|
executables: []
|
28
|
-
|
29
21
|
extensions: []
|
30
|
-
|
31
|
-
extra_rdoc_files:
|
22
|
+
extra_rdoc_files:
|
32
23
|
- LICENSE
|
33
24
|
- README.rdoc
|
34
|
-
files:
|
25
|
+
files:
|
35
26
|
- .document
|
36
27
|
- CHANGELOG.rdoc
|
37
28
|
- LICENSE
|
38
29
|
- README.rdoc
|
39
30
|
- Rakefile
|
40
31
|
- VERSION
|
32
|
+
- ipaddress.gemspec
|
41
33
|
- lib/ipaddress.rb
|
42
|
-
- lib/ipaddress/conversions.rb
|
43
34
|
- lib/ipaddress/ipv4.rb
|
44
35
|
- lib/ipaddress/ipv6.rb
|
45
36
|
- lib/ipaddress/prefix.rb
|
37
|
+
- lib/ipaddress/conversions.rb
|
46
38
|
- test/ipaddress/ipv4_test.rb
|
47
39
|
- test/ipaddress/ipv6_test.rb
|
48
40
|
- test/ipaddress/prefix_test.rb
|
49
41
|
- test/ipaddress_test.rb
|
50
42
|
- test/test_helper.rb
|
51
|
-
|
52
|
-
homepage: http://github.com/bluemonk/ipaddress
|
43
|
+
homepage: https://github.com/blackwinter/ipaddress
|
53
44
|
licenses: []
|
54
|
-
|
45
|
+
metadata: {}
|
55
46
|
post_install_message:
|
56
47
|
rdoc_options: []
|
57
|
-
|
58
|
-
require_paths:
|
48
|
+
require_paths:
|
59
49
|
- lib
|
60
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
-
requirements:
|
62
|
-
- -
|
63
|
-
- !ruby/object:Gem::Version
|
64
|
-
version:
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
version: "0"
|
71
|
-
version:
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - '>='
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '0'
|
72
60
|
requirements: []
|
73
|
-
|
74
61
|
rubyforge_project:
|
75
|
-
rubygems_version:
|
62
|
+
rubygems_version: 2.0.3
|
76
63
|
signing_key:
|
77
64
|
specification_version: 3
|
78
|
-
summary: IPv4/IPv6 addresses manipulation library
|
65
|
+
summary: IPv4/IPv6 addresses manipulation library [Incompatible fork]
|
79
66
|
test_files: []
|
80
|
-
|