From 6bf73cfccf4f3b0b17fa8926b47ee26710527ea0 Mon Sep 17 00:00:00 2001 From: Mike Mackintosh Date: Sun, 22 Mar 2015 23:53:32 -0400 Subject: added #to range and fixed #40 --- lib/ipaddress/ipv4.rb | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/ipaddress/ipv4.rb b/lib/ipaddress/ipv4.rb index fc2976a..eea73ac 100644 --- a/lib/ipaddress/ipv4.rb +++ b/lib/ipaddress/ipv4.rb @@ -640,6 +640,26 @@ module IPAddress; end alias_method :arpa, :reverse + # + # Return a list of IP's between @address + # and the supplied IP + # + # ip = IPAddress("172.16.100.51/32") + # + # ip.to("172.16.100.100") + # #=> ["172.16.100.51", + # "172.16.100.52", + # ... + # "172.16.100.99", + # "172.16.100.100"] + # + def to(e) + unless e.is_a? IPAddress::IPv4 + e = IPv4.new(e) + end + + Range.new(@u32, e.to_u32).map{|i| IPAddress.ntoa(i) } + end # # Splits a network into different subnets # @@ -1028,7 +1048,7 @@ module IPAddress; # Tweaked to remove the #upto(32) def newprefix(num) - return @prefix + (Math::log2(num).to_i) + return @prefix + (Math::log2(num).ceil ) end def sum_first_found(arr) -- cgit v1.2.1