facter 2.4.5-universal-darwin → 2.4.6-universal-darwin
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/facter/ipaddress.rb +14 -5
- data/lib/facter/ipaddress6.rb +2 -3
- data/lib/facter/macaddress.rb +8 -3
- data/lib/facter/netmask.rb +1 -9
- data/lib/facter/util/ip.rb +0 -17
- data/lib/facter/util/netmask.rb +6 -0
- data/lib/facter/version.rb +1 -1
- data/spec/fixtures/unit/netmask/{ifconfig_darwin_10_8_5.txt → darwin_10_8_5.txt} +0 -0
- data/spec/unit/ipaddress6_spec.rb +4 -16
- data/spec/unit/ipaddress_spec.rb +12 -12
- data/spec/unit/macaddress_spec.rb +1 -6
- data/spec/unit/netmask_spec.rb +4 -17
- metadata +4 -24
- data/spec/fixtures/ifconfig/net_route_all_with_multiple_interfaces +0 -2
- data/spec/fixtures/ifconfig/net_route_net_tools_1.60.txt +0 -3
- data/spec/fixtures/unit/ipaddress/net_route_multiple_127_addresses.txt +0 -3
- data/spec/fixtures/unit/ipaddress/net_route_net_tools_1.60.txt +0 -3
- data/spec/fixtures/unit/ipaddress/net_route_non_english_locale.txt +0 -3
- data/spec/fixtures/unit/ipaddress/net_route_ubuntu_1204.txt +0 -3
- data/spec/fixtures/unit/netmask/net_route_multiple_127_addresses.txt +0 -3
- data/spec/fixtures/unit/netmask/net_route_net_tools_1.60.txt +0 -3
- data/spec/fixtures/unit/netmask/net_route_non_english_locale.txt +0 -3
- data/spec/fixtures/unit/netmask/net_route_ubuntu_1204.txt +0 -3
    
        data/lib/facter/ipaddress.rb
    CHANGED
    
    | @@ -3,9 +3,7 @@ | |
| 3 3 | 
             
            # Purpose: Return the main IP address for a host.
         | 
| 4 4 | 
             
            #
         | 
| 5 5 | 
             
            # Resolution:
         | 
| 6 | 
            -
            #   On  | 
| 7 | 
            -
            #   of the default interface.
         | 
| 8 | 
            -
            #   On other Unixes does an ifconfig, and returns the first non 127.0.0.0/8
         | 
| 6 | 
            +
            #   On the Unixes does an ifconfig, and returns the first non 127.0.0.0/8
         | 
| 9 7 | 
             
            #   subnetted IP it finds.
         | 
| 10 8 | 
             
            #   On Windows, it attempts to use the socket library and resolve the machine's
         | 
| 11 9 | 
             
            #   hostname via DNS.
         | 
| @@ -29,8 +27,19 @@ require 'facter/util/ip' | |
| 29 27 | 
             
            Facter.add(:ipaddress) do
         | 
| 30 28 | 
             
              confine :kernel => :linux
         | 
| 31 29 | 
             
              setcode do
         | 
| 32 | 
            -
                 | 
| 33 | 
            -
                Facter. | 
| 30 | 
            +
                ip = nil
         | 
| 31 | 
            +
                output = Facter::Util::IP.exec_ifconfig(["2>/dev/null"])
         | 
| 32 | 
            +
                if output
         | 
| 33 | 
            +
                  regexp = /inet (?:addr:)?([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)/
         | 
| 34 | 
            +
                  output.split("\n").each do |line|
         | 
| 35 | 
            +
                    match = regexp.match(line)
         | 
| 36 | 
            +
                    if match and not /^127\./.match(match[1])
         | 
| 37 | 
            +
                      ip = match[1]
         | 
| 38 | 
            +
                      break
         | 
| 39 | 
            +
                    end
         | 
| 40 | 
            +
                  end
         | 
| 41 | 
            +
                end
         | 
| 42 | 
            +
                ip
         | 
| 34 43 | 
             
              end
         | 
| 35 44 | 
             
            end
         | 
| 36 45 |  | 
    
        data/lib/facter/ipaddress6.rb
    CHANGED
    
    | @@ -37,12 +37,11 @@ def get_address_after_token(output, token, return_first=false) | |
| 37 37 | 
             
              ip
         | 
| 38 38 | 
             
            end
         | 
| 39 39 |  | 
| 40 | 
            -
             | 
| 41 40 | 
             
            Facter.add(:ipaddress6) do
         | 
| 42 41 | 
             
              confine :kernel => :linux
         | 
| 43 42 | 
             
              setcode do
         | 
| 44 | 
            -
                 | 
| 45 | 
            -
                 | 
| 43 | 
            +
                output = Facter::Util::IP.exec_ifconfig(["2>/dev/null"])
         | 
| 44 | 
            +
                get_address_after_token(output, 'inet6(?: addr:)?')
         | 
| 46 45 | 
             
              end
         | 
| 47 46 | 
             
            end
         | 
| 48 47 |  | 
    
        data/lib/facter/macaddress.rb
    CHANGED
    
    | @@ -12,10 +12,15 @@ require 'facter/util/macaddress' | |
| 12 12 | 
             
            require 'facter/util/ip'
         | 
| 13 13 |  | 
| 14 14 | 
             
            Facter.add(:macaddress) do
         | 
| 15 | 
            -
              confine :kernel =>  | 
| 15 | 
            +
              confine :kernel => 'Linux'
         | 
| 16 16 | 
             
              setcode do
         | 
| 17 | 
            -
                 | 
| 18 | 
            -
                Facter. | 
| 17 | 
            +
                ether = []
         | 
| 18 | 
            +
                output = Facter::Util::IP.exec_ifconfig(["-a","2>/dev/null"])
         | 
| 19 | 
            +
             | 
| 20 | 
            +
                String(output).each_line do |s|
         | 
| 21 | 
            +
                  ether.push($1) if s =~ /(?:ether|HWaddr) ((\w{1,2}:){5,}\w{1,2})/
         | 
| 22 | 
            +
                end
         | 
| 23 | 
            +
                Facter::Util::Macaddress.standardize(ether[0])
         | 
| 19 24 | 
             
              end
         | 
| 20 25 | 
             
            end
         | 
| 21 26 |  | 
    
        data/lib/facter/netmask.rb
    CHANGED
    
    | @@ -16,16 +16,8 @@ | |
| 16 16 | 
             
            #
         | 
| 17 17 | 
             
            require 'facter/util/netmask'
         | 
| 18 18 |  | 
| 19 | 
            -
            Facter.add(:netmask) do
         | 
| 20 | 
            -
              confine :kernel => :linux
         | 
| 21 | 
            -
              setcode do
         | 
| 22 | 
            -
                iface = Facter::Util::IP.linux_default_iface
         | 
| 23 | 
            -
                Facter.value("netmask_#{iface}")
         | 
| 24 | 
            -
              end
         | 
| 25 | 
            -
            end
         | 
| 26 | 
            -
             | 
| 27 19 | 
             
            Facter.add("netmask") do
         | 
| 28 | 
            -
              confine :kernel => [ :sunos, :freebsd, :openbsd, :netbsd, :darwin, :"gnu/kfreebsd", :dragonfly, :AIX ]
         | 
| 20 | 
            +
              confine :kernel => [ :sunos, :linux, :freebsd, :openbsd, :netbsd, :darwin, :"gnu/kfreebsd", :dragonfly, :AIX ]
         | 
| 29 21 | 
             
              setcode do
         | 
| 30 22 | 
             
                Facter::NetMask.get_netmask
         | 
| 31 23 | 
             
              end
         | 
    
        data/lib/facter/util/ip.rb
    CHANGED
    
    | @@ -337,21 +337,4 @@ module Facter::Util::IP | |
| 337 337 | 
             
                  network = ip.mask(subnet.to_s).to_s
         | 
| 338 338 | 
             
                end
         | 
| 339 339 | 
             
              end
         | 
| 340 | 
            -
             | 
| 341 | 
            -
              def self.read_proc_net_route
         | 
| 342 | 
            -
                File.read("/proc/net/route")
         | 
| 343 | 
            -
              end
         | 
| 344 | 
            -
             | 
| 345 | 
            -
              def self.linux_default_iface
         | 
| 346 | 
            -
                routes = read_proc_net_route
         | 
| 347 | 
            -
                iface = nil
         | 
| 348 | 
            -
                routes.split("\n").each do |line|
         | 
| 349 | 
            -
                  parts = line.split
         | 
| 350 | 
            -
                  if parts[1] == "00000000"
         | 
| 351 | 
            -
                    iface = alphafy(parts[0])
         | 
| 352 | 
            -
                    break
         | 
| 353 | 
            -
                  end
         | 
| 354 | 
            -
                end
         | 
| 355 | 
            -
                iface
         | 
| 356 | 
            -
              end
         | 
| 357 340 | 
             
            end
         | 
    
        data/lib/facter/util/netmask.rb
    CHANGED
    
    | @@ -5,6 +5,12 @@ module Facter::NetMask | |
| 5 5 |  | 
| 6 6 | 
             
                ops = nil
         | 
| 7 7 | 
             
                case Facter.value(:kernel)
         | 
| 8 | 
            +
                when 'Linux'
         | 
| 9 | 
            +
                  ops = {
         | 
| 10 | 
            +
                    :ifconfig_opts => ['2>/dev/null'],
         | 
| 11 | 
            +
                    :regex => %r{#{Facter.value(:ipaddress)}.*?(?:Mask:|netmask)\s*(#{ipregex})}x,
         | 
| 12 | 
            +
                    :munge => nil,
         | 
| 13 | 
            +
                  }
         | 
| 8 14 | 
             
                when 'SunOS'
         | 
| 9 15 | 
             
                  ops = {
         | 
| 10 16 | 
             
                    :ifconfig_opts => ['-a'],
         | 
    
        data/lib/facter/version.rb
    CHANGED
    
    
| 
            File without changes
         | 
| @@ -26,11 +26,8 @@ describe "The IPv6 address fact" do | |
| 26 26 | 
             
              it "should return ipaddress6 information for Linux" do
         | 
| 27 27 | 
             
                Facter::Core::Execution.stubs(:exec).with('uname -s').returns('Linux')
         | 
| 28 28 | 
             
                Facter::Util::IP.stubs(:get_ifconfig).returns("/sbin/ifconfig")
         | 
| 29 | 
            -
                Facter::Util::IP.stubs(:exec_ifconfig).
         | 
| 29 | 
            +
                Facter::Util::IP.stubs(:exec_ifconfig).with(["2>/dev/null"]).
         | 
| 30 30 | 
             
                  returns(ifconfig_fixture('linux_ifconfig_all_with_multiple_interfaces'))
         | 
| 31 | 
            -
                routes = ifconfig_fixture('net_route_all_with_multiple_interfaces')
         | 
| 32 | 
            -
                Facter::Util::IP.stubs(:read_proc_net_route).returns(routes)
         | 
| 33 | 
            -
                Facter.collection.internal_loader.load(:interfaces)
         | 
| 34 31 |  | 
| 35 32 | 
             
                Facter.value(:ipaddress6).should == "2610:10:20:209:212:3fff:febe:2201"
         | 
| 36 33 | 
             
              end
         | 
| @@ -38,11 +35,8 @@ describe "The IPv6 address fact" do | |
| 38 35 | 
             
              it "should return ipaddress6 information for Linux with recent net-tools" do
         | 
| 39 36 | 
             
                Facter::Core::Execution.stubs(:exec).with('uname -s').returns('Linux')
         | 
| 40 37 | 
             
                Facter::Util::IP.stubs(:get_ifconfig).returns("/sbin/ifconfig")
         | 
| 41 | 
            -
                Facter::Util::IP.stubs(:exec_ifconfig).
         | 
| 38 | 
            +
                Facter::Util::IP.stubs(:exec_ifconfig).with(["2>/dev/null"]).
         | 
| 42 39 | 
             
                  returns(ifconfig_fixture('ifconfig_net_tools_1.60.txt'))
         | 
| 43 | 
            -
                routes = ifconfig_fixture('net_route_net_tools_1.60.txt')
         | 
| 44 | 
            -
                Facter::Util::IP.stubs(:read_proc_net_route).returns(routes)
         | 
| 45 | 
            -
                Facter.collection.internal_loader.load(:interfaces)
         | 
| 46 40 |  | 
| 47 41 | 
             
                Facter.value(:ipaddress6).should == "2610:10:20:209:212:3fff:febe:2201"
         | 
| 48 42 | 
             
              end
         | 
| @@ -50,11 +44,8 @@ describe "The IPv6 address fact" do | |
| 50 44 | 
             
              it "should return ipaddress6 with fe80 in any other octet than the first for Linux" do
         | 
| 51 45 | 
             
                Facter::Core::Execution.stubs(:exec).with('uname -s').returns('Linux')
         | 
| 52 46 | 
             
                Facter::Util::IP.stubs(:get_ifconfig).returns("/sbin/ifconfig")
         | 
| 53 | 
            -
                Facter::Util::IP.stubs(:exec_ifconfig).
         | 
| 47 | 
            +
                Facter::Util::IP.stubs(:exec_ifconfig).with(["2>/dev/null"]).
         | 
| 54 48 | 
             
                  returns(ifconfig_fixture('linux_ifconfig_all_with_multiple_interfaces_and_fe80'))
         | 
| 55 | 
            -
                routes = ifconfig_fixture('net_route_all_with_multiple_interfaces')
         | 
| 56 | 
            -
                Facter::Util::IP.stubs(:read_proc_net_route).returns(routes)
         | 
| 57 | 
            -
                Facter.collection.internal_loader.load(:interfaces)
         | 
| 58 49 |  | 
| 59 50 | 
             
                Facter.value(:ipaddress6).should == "2610:10:20:209:212:3fff:fe80:2201"
         | 
| 60 51 | 
             
              end
         | 
| @@ -62,11 +53,8 @@ describe "The IPv6 address fact" do | |
| 62 53 | 
             
              it "should not return ipaddress6 link-local address for Linux" do
         | 
| 63 54 | 
             
                Facter::Core::Execution.stubs(:exec).with('uname -s').returns('Linux')
         | 
| 64 55 | 
             
                Facter::Util::IP.stubs(:get_ifconfig).returns("/sbin/ifconfig")
         | 
| 65 | 
            -
                Facter::Util::IP.stubs(:exec_ifconfig).
         | 
| 56 | 
            +
                Facter::Util::IP.stubs(:exec_ifconfig).with(["2>/dev/null"]).
         | 
| 66 57 | 
             
                  returns(ifconfig_fixture('linux_ifconfig_all_with_multiple_interfaces_and_no_public_ipv6'))
         | 
| 67 | 
            -
                routes = ifconfig_fixture('net_route_all_with_multiple_interfaces')
         | 
| 68 | 
            -
                Facter::Util::IP.stubs(:read_proc_net_route).returns(routes)
         | 
| 69 | 
            -
                Facter.collection.internal_loader.load(:interfaces)
         | 
| 70 58 |  | 
| 71 59 | 
             
                Facter.value(:ipaddress6).should be_false
         | 
| 72 60 | 
             
              end
         | 
    
        data/spec/unit/ipaddress_spec.rb
    CHANGED
    
    | @@ -4,6 +4,10 @@ require 'spec_helper' | |
| 4 4 | 
             
            require 'facter/util/ip'
         | 
| 5 5 |  | 
| 6 6 | 
             
            describe "ipaddress fact" do
         | 
| 7 | 
            +
              before do
         | 
| 8 | 
            +
                Facter.collection.internal_loader.load(:ipaddress)
         | 
| 9 | 
            +
              end
         | 
| 10 | 
            +
             | 
| 7 11 | 
             
              context 'using `ifconfig`' do
         | 
| 8 12 | 
             
                before :each do
         | 
| 9 13 | 
             
                  Facter.fact(:hostname).stubs(:value)
         | 
| @@ -14,29 +18,25 @@ describe "ipaddress fact" do | |
| 14 18 | 
             
                    Facter.fact(:kernel).stubs(:value).returns("Linux")
         | 
| 15 19 | 
             
                  end
         | 
| 16 20 |  | 
| 17 | 
            -
                  after :each do
         | 
| 18 | 
            -
                    Facter.collection.flush
         | 
| 19 | 
            -
                  end
         | 
| 20 | 
            -
             | 
| 21 21 | 
             
                  def expect_ifconfig_parse(address, fixture)
         | 
| 22 | 
            -
                    Facter::Util::IP.stubs(:exec_ifconfig).returns(my_fixture_read( | 
| 23 | 
            -
                    routes = my_fixture_read("net_route_#{fixture}")
         | 
| 24 | 
            -
                    Facter::Util::IP.stubs(:read_proc_net_route).returns(routes)
         | 
| 25 | 
            -
                    Facter.collection.internal_loader.load(:interfaces)
         | 
| 26 | 
            -
                    Facter.collection.internal_loader.load(:ipaddress)
         | 
| 22 | 
            +
                    Facter::Util::IP.stubs(:exec_ifconfig).returns(my_fixture_read(fixture))
         | 
| 27 23 | 
             
                    Facter.fact(:ipaddress).value.should == address
         | 
| 28 24 | 
             
                  end
         | 
| 29 25 |  | 
| 30 26 | 
             
                  it "parses correctly on Ubuntu 12.04" do
         | 
| 31 | 
            -
                    expect_ifconfig_parse "10.87.80.110", " | 
| 27 | 
            +
                    expect_ifconfig_parse "10.87.80.110", "ifconfig_ubuntu_1204.txt"
         | 
| 32 28 | 
             
                  end
         | 
| 33 29 |  | 
| 34 30 | 
             
                  it "parses correctly on Fedora 17" do
         | 
| 35 | 
            -
                    expect_ifconfig_parse "131.252.209.153", " | 
| 31 | 
            +
                    expect_ifconfig_parse "131.252.209.153", "ifconfig_net_tools_1.60.txt"
         | 
| 32 | 
            +
                  end
         | 
| 33 | 
            +
             | 
| 34 | 
            +
                  it "parses a real address over multiple loopback addresses" do
         | 
| 35 | 
            +
                    expect_ifconfig_parse "10.0.222.20", "ifconfig_multiple_127_addresses.txt"
         | 
| 36 36 | 
             
                  end
         | 
| 37 37 |  | 
| 38 38 | 
             
                  it "parses nothing with a non-english locale" do
         | 
| 39 | 
            -
                    expect_ifconfig_parse nil, " | 
| 39 | 
            +
                    expect_ifconfig_parse nil, "ifconfig_non_english_locale.txt"
         | 
| 40 40 | 
             
                  end
         | 
| 41 41 | 
             
                end
         | 
| 42 42 | 
             
              end
         | 
| @@ -23,11 +23,8 @@ describe "macaddress fact" do | |
| 23 23 | 
             
                end
         | 
| 24 24 |  | 
| 25 25 | 
             
                it "should return the macaddress of the first interface" do
         | 
| 26 | 
            -
                  Facter::Util::IP.stubs(:exec_ifconfig).
         | 
| 26 | 
            +
                  Facter::Util::IP.stubs(:exec_ifconfig).with(["-a","2>/dev/null"]).
         | 
| 27 27 | 
             
                    returns(ifconfig_fixture('linux_ifconfig_all_with_multiple_interfaces'))
         | 
| 28 | 
            -
                  routes = ifconfig_fixture("net_route_all_with_multiple_interfaces")
         | 
| 29 | 
            -
                  Facter::Util::IP.stubs(:read_proc_net_route).returns(routes)
         | 
| 30 | 
            -
                  Facter.collection.internal_loader.load(:interfaces)
         | 
| 31 28 |  | 
| 32 29 | 
             
                  Facter.value(:macaddress).should == "00:12:3f:be:22:01"
         | 
| 33 30 | 
             
                end
         | 
| @@ -35,7 +32,6 @@ describe "macaddress fact" do | |
| 35 32 | 
             
                it "should return nil when no macaddress can be found" do
         | 
| 36 33 | 
             
                  Facter::Util::IP.stubs(:exec_ifconfig).with(["-a","2>/dev/null"]).
         | 
| 37 34 | 
             
                    returns(ifconfig_fixture('linux_ifconfig_no_mac'))
         | 
| 38 | 
            -
                  Facter::Util::IP.stubs(:read_proc_net_route).returns("")
         | 
| 39 35 |  | 
| 40 36 | 
             
                  proc { Facter.value(:macaddress) }.should_not raise_error
         | 
| 41 37 | 
             
                  Facter.value(:macaddress).should be_nil
         | 
| @@ -45,7 +41,6 @@ describe "macaddress fact" do | |
| 45 41 | 
             
                it "should return nil when no interface has a real macaddress" do
         | 
| 46 42 | 
             
                  Facter::Util::IP.stubs(:exec_ifconfig).with(["-a","2>/dev/null"]).
         | 
| 47 43 | 
             
                    returns(ifconfig_fixture('linux_ifconfig_venet'))
         | 
| 48 | 
            -
                  Facter::Util::IP.stubs(:read_proc_net_route).returns("")
         | 
| 49 44 |  | 
| 50 45 | 
             
                  proc { Facter.value(:macaddress) }.should_not raise_error
         | 
| 51 46 | 
             
                  Facter.value(:macaddress).should be_nil
         | 
    
        data/spec/unit/netmask_spec.rb
    CHANGED
    
    | @@ -6,21 +6,8 @@ require 'facter/util/ip' | |
| 6 6 |  | 
| 7 7 | 
             
            shared_examples_for "netmask from ifconfig output" do |platform, address, fixture|
         | 
| 8 8 | 
             
              it "correctly on #{platform}" do
         | 
| 9 | 
            -
                Facter::Util::IP.stubs(:exec_ifconfig).returns(my_fixture_read( | 
| 9 | 
            +
                Facter::Util::IP.stubs(:exec_ifconfig).returns(my_fixture_read(fixture))
         | 
| 10 10 | 
             
                Facter.collection.internal_loader.load(:netmask)
         | 
| 11 | 
            -
                begin
         | 
| 12 | 
            -
                  routes = my_fixture_read("net_route_#{fixture}")
         | 
| 13 | 
            -
                  Facter::Util::IP.stubs(:read_proc_net_route).returns(routes)
         | 
| 14 | 
            -
                rescue RuntimeError
         | 
| 15 | 
            -
                  # We want to try to load proc/net/route fixtures, but skip if
         | 
| 16 | 
            -
                  # they don't exist for non-linux platforms. Ideally we'd get an
         | 
| 17 | 
            -
                  # IOError here, but the fixture machinery here is dumb and
         | 
| 18 | 
            -
                  # converts this to a RuntimeError. Hopefully anything that would
         | 
| 19 | 
            -
                  # error here would also cause the actual test to fail, so I'm
         | 
| 20 | 
            -
                  # not going to worry too hard.
         | 
| 21 | 
            -
                end
         | 
| 22 | 
            -
                Facter.collection.internal_loader.load(:interfaces)
         | 
| 23 | 
            -
                Facter.collection.internal_loader.load(:ipaddress)
         | 
| 24 11 |  | 
| 25 12 | 
             
                Facter.fact(:netmask).value.should eq(address)
         | 
| 26 13 | 
             
              end
         | 
| @@ -34,10 +21,10 @@ describe "The netmask fact" do | |
| 34 21 |  | 
| 35 22 | 
             
                example_behavior_for "netmask from ifconfig output",
         | 
| 36 23 | 
             
                  "Archlinux (net-tools 1.60)", "255.255.255.0",
         | 
| 37 | 
            -
                  " | 
| 24 | 
            +
                  "ifconfig_net_tools_1.60.txt"
         | 
| 38 25 | 
             
                example_behavior_for "netmask from ifconfig output",
         | 
| 39 26 | 
             
                  "Ubuntu 12.04", "255.255.255.255",
         | 
| 40 | 
            -
                  " | 
| 27 | 
            +
                  "ifconfig_ubuntu_1204.txt"
         | 
| 41 28 | 
             
              end
         | 
| 42 29 |  | 
| 43 30 | 
             
              context "on AIX" do
         | 
| @@ -47,7 +34,7 @@ describe "The netmask fact" do | |
| 47 34 |  | 
| 48 35 | 
             
                example_behavior_for "netmask from ifconfig output",
         | 
| 49 36 | 
             
                  "AIX 7", "255.255.255.0",
         | 
| 50 | 
            -
                  " | 
| 37 | 
            +
                  "ifconfig_aix_7.txt"
         | 
| 51 38 |  | 
| 52 39 | 
             
              end
         | 
| 53 40 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: facter
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 2.4. | 
| 4 | 
            +
              version: 2.4.6
         | 
| 5 5 | 
             
              prerelease: 
         | 
| 6 6 | 
             
            platform: universal-darwin
         | 
| 7 7 | 
             
            authors:
         | 
| @@ -9,7 +9,7 @@ authors: | |
| 9 9 | 
             
            autorequire: 
         | 
| 10 10 | 
             
            bindir: bin
         | 
| 11 11 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date: 2016-01- | 
| 12 | 
            +
            date: 2016-01-26 00:00:00.000000000 Z
         | 
| 13 13 | 
             
            dependencies:
         | 
| 14 14 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 15 | 
             
              name: CFPropertyList
         | 
| @@ -236,12 +236,8 @@ files: | |
| 236 236 | 
             
            - spec/fixtures/processorcount/solaris-psrinfo
         | 
| 237 237 | 
             
            - spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt
         | 
| 238 238 | 
             
            - spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt
         | 
| 239 | 
            -
            - spec/fixtures/unit/netmask/net_route_ubuntu_1204.txt
         | 
| 240 | 
            -
            - spec/fixtures/unit/netmask/net_route_multiple_127_addresses.txt
         | 
| 241 239 | 
             
            - spec/fixtures/unit/netmask/ifconfig_aix_7.txt
         | 
| 242 | 
            -
            - spec/fixtures/unit/netmask/ | 
| 243 | 
            -
            - spec/fixtures/unit/netmask/net_route_net_tools_1.60.txt
         | 
| 244 | 
            -
            - spec/fixtures/unit/netmask/ifconfig_darwin_10_8_5.txt
         | 
| 240 | 
            +
            - spec/fixtures/unit/netmask/darwin_10_8_5.txt
         | 
| 245 241 | 
             
            - spec/fixtures/unit/selinux/selinux_sestatus2
         | 
| 246 242 | 
             
            - spec/fixtures/unit/selinux/selinux_sestatus
         | 
| 247 243 | 
             
            - spec/fixtures/unit/filesystems/linux
         | 
| @@ -319,12 +315,8 @@ files: | |
| 319 315 | 
             
            - spec/fixtures/unit/ec2/rest/meta-data/root
         | 
| 320 316 | 
             
            - spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt
         | 
| 321 317 | 
             
            - spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt
         | 
| 322 | 
            -
            - spec/fixtures/unit/ipaddress/net_route_ubuntu_1204.txt
         | 
| 323 | 
            -
            - spec/fixtures/unit/ipaddress/net_route_multiple_127_addresses.txt
         | 
| 324 318 | 
             
            - spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
         | 
| 325 | 
            -
            - spec/fixtures/unit/ipaddress/net_route_non_english_locale.txt
         | 
| 326 319 | 
             
            - spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
         | 
| 327 | 
            -
            - spec/fixtures/unit/ipaddress/net_route_net_tools_1.60.txt
         | 
| 328 320 | 
             
            - spec/fixtures/unit/processors/os/darwin-system-profiler
         | 
| 329 321 | 
             
            - spec/fixtures/unit/zfs_version/zfs_new
         | 
| 330 322 | 
             
            - spec/fixtures/unit/zfs_version/solaris_11
         | 
| @@ -369,7 +361,6 @@ files: | |
| 369 361 | 
             
            - spec/fixtures/unit/zpool_version/freebsd_8.2
         | 
| 370 362 | 
             
            - spec/fixtures/unit/zpool_version/solaris_10
         | 
| 371 363 | 
             
            - spec/fixtures/ifconfig/open_solaris_b132
         | 
| 372 | 
            -
            - spec/fixtures/ifconfig/net_route_all_with_multiple_interfaces
         | 
| 373 364 | 
             
            - spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt
         | 
| 374 365 | 
             
            - spec/fixtures/ifconfig/freebsd_6_0
         | 
| 375 366 | 
             
            - spec/fixtures/ifconfig/linux_ifconfig_venet
         | 
| @@ -393,7 +384,6 @@ files: | |
| 393 384 | 
             
            - spec/fixtures/ifconfig/darwin_10_3_0_en0
         | 
| 394 385 | 
             
            - spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
         | 
| 395 386 | 
             
            - spec/fixtures/ifconfig/open_solaris_10
         | 
| 396 | 
            -
            - spec/fixtures/ifconfig/net_route_net_tools_1.60.txt
         | 
| 397 387 | 
             
            - spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
         | 
| 398 388 | 
             
            - spec/fixtures/ifconfig/darwin_10_6_6_dualstack
         | 
| 399 389 | 
             
            - spec/fixtures/ifconfig/ubuntu_7_04_eth0
         | 
| @@ -595,12 +585,8 @@ test_files: | |
| 595 585 | 
             
            - spec/fixtures/processorcount/solaris-psrinfo
         | 
| 596 586 | 
             
            - spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt
         | 
| 597 587 | 
             
            - spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt
         | 
| 598 | 
            -
            - spec/fixtures/unit/netmask/net_route_ubuntu_1204.txt
         | 
| 599 | 
            -
            - spec/fixtures/unit/netmask/net_route_multiple_127_addresses.txt
         | 
| 600 588 | 
             
            - spec/fixtures/unit/netmask/ifconfig_aix_7.txt
         | 
| 601 | 
            -
            - spec/fixtures/unit/netmask/ | 
| 602 | 
            -
            - spec/fixtures/unit/netmask/net_route_net_tools_1.60.txt
         | 
| 603 | 
            -
            - spec/fixtures/unit/netmask/ifconfig_darwin_10_8_5.txt
         | 
| 589 | 
            +
            - spec/fixtures/unit/netmask/darwin_10_8_5.txt
         | 
| 604 590 | 
             
            - spec/fixtures/unit/selinux/selinux_sestatus2
         | 
| 605 591 | 
             
            - spec/fixtures/unit/selinux/selinux_sestatus
         | 
| 606 592 | 
             
            - spec/fixtures/unit/filesystems/linux
         | 
| @@ -678,12 +664,8 @@ test_files: | |
| 678 664 | 
             
            - spec/fixtures/unit/ec2/rest/meta-data/root
         | 
| 679 665 | 
             
            - spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt
         | 
| 680 666 | 
             
            - spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt
         | 
| 681 | 
            -
            - spec/fixtures/unit/ipaddress/net_route_ubuntu_1204.txt
         | 
| 682 | 
            -
            - spec/fixtures/unit/ipaddress/net_route_multiple_127_addresses.txt
         | 
| 683 667 | 
             
            - spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
         | 
| 684 | 
            -
            - spec/fixtures/unit/ipaddress/net_route_non_english_locale.txt
         | 
| 685 668 | 
             
            - spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
         | 
| 686 | 
            -
            - spec/fixtures/unit/ipaddress/net_route_net_tools_1.60.txt
         | 
| 687 669 | 
             
            - spec/fixtures/unit/processors/os/darwin-system-profiler
         | 
| 688 670 | 
             
            - spec/fixtures/unit/zfs_version/zfs_new
         | 
| 689 671 | 
             
            - spec/fixtures/unit/zfs_version/solaris_11
         | 
| @@ -728,7 +710,6 @@ test_files: | |
| 728 710 | 
             
            - spec/fixtures/unit/zpool_version/freebsd_8.2
         | 
| 729 711 | 
             
            - spec/fixtures/unit/zpool_version/solaris_10
         | 
| 730 712 | 
             
            - spec/fixtures/ifconfig/open_solaris_b132
         | 
| 731 | 
            -
            - spec/fixtures/ifconfig/net_route_all_with_multiple_interfaces
         | 
| 732 713 | 
             
            - spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt
         | 
| 733 714 | 
             
            - spec/fixtures/ifconfig/freebsd_6_0
         | 
| 734 715 | 
             
            - spec/fixtures/ifconfig/linux_ifconfig_venet
         | 
| @@ -752,7 +733,6 @@ test_files: | |
| 752 733 | 
             
            - spec/fixtures/ifconfig/darwin_10_3_0_en0
         | 
| 753 734 | 
             
            - spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
         | 
| 754 735 | 
             
            - spec/fixtures/ifconfig/open_solaris_10
         | 
| 755 | 
            -
            - spec/fixtures/ifconfig/net_route_net_tools_1.60.txt
         | 
| 756 736 | 
             
            - spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
         | 
| 757 737 | 
             
            - spec/fixtures/ifconfig/darwin_10_6_6_dualstack
         | 
| 758 738 | 
             
            - spec/fixtures/ifconfig/ubuntu_7_04_eth0
         |