Skip to content

Commit 806f948

Browse files
authored
Merge pull request ipaddress-gem#22 from Adam21e/gem_update
Update folders to ipaddress_2 for gem to load
2 parents d370a36 + eba6f4d commit 806f948

16 files changed

Lines changed: 16 additions & 12 deletions

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
## [Unreleased]
22

3+
## 0.11.0
4+
35
### Enhancements
46
* Added 'find\_adjacent_subnet' to IPv6
57

8+
### Bugfix
9+
* Update folders for gem to work
10+
611
## 0.10.0
712

813
### Enhancements

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ end
4545

4646
desc "Open an irb session preloaded with this library"
4747
task :console do
48-
sh "irb -I lib -r ipaddress.rb"
48+
sh "irb -I lib -r ipaddress_2.rb"
4949
end
5050

5151
desc "Look for TODO and FIXME tags in the code"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.0
1+
0.11.0

ipaddress_2.gemspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
lib = File.expand_path('../lib', __FILE__)
22
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3-
require 'ipaddress/version'
3+
require 'ipaddress_2/version'
44

55
Gem::Specification.new do |s|
66
s.licenses = ["MIT"]
77
s.summary = "IPv4/IPv6 address manipulation library"
88
s.name = "ipaddress_2"
9-
s.version = "0.9.0"
109
s.version = IPAddress::VERSION
1110
s.require_paths = ["lib"]
1211
s.authors = ["bluemonk", "mikemackintosh"]

lib/ipaddress.rb renamed to lib/ipaddress_2.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
#
1313
#++
1414

15-
require 'ipaddress/ipv4'
16-
require 'ipaddress/ipv6'
17-
require 'ipaddress/mongoid' if defined?(Mongoid)
15+
require 'ipaddress_2/ipv4'
16+
require 'ipaddress_2/ipv6'
17+
require 'ipaddress_2/mongoid' if defined?(Mongoid)
1818

1919
module IPAddress
2020

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'ipaddress/prefix'
1+
require 'ipaddress_2/prefix'
22

33
module IPAddress;
44
#
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'ipaddress/prefix'
1+
require 'ipaddress_2/prefix'
22

33
module IPAddress;
44
#
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module IPAddress
2-
VERSION = "0.10.0"
2+
VERSION = "0.11.0"
33
end

0 commit comments

Comments
 (0)