diff options
| author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:03:12 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:03:12 +0000 | 
| commit | 8e2b9d6c2dfe0cf399cffe81b200594610bc2446 (patch) | |
| tree | c6fcf5561041677f714ed21e037ef37aaa44e76f /lib/custodian/util | |
| parent | 34908abb790b8e1cd3abe618c6c9f54b23d673b5 (diff) | |
Don't use "::" for method-calls.
Instead prefer ".".
Flagged by rubocop
Diffstat (limited to 'lib/custodian/util')
| -rw-r--r-- | lib/custodian/util/bytemark.rb | 2 | ||||
| -rw-r--r-- | lib/custodian/util/timespan.rb | 12 | 
2 files changed, 7 insertions, 7 deletions
| diff --git a/lib/custodian/util/bytemark.rb b/lib/custodian/util/bytemark.rb index 9753c18..c821b18 100644 --- a/lib/custodian/util/bytemark.rb +++ b/lib/custodian/util/bytemark.rb @@ -26,7 +26,7 @@ module Custodian        #        # Is the named target inside the Bytemark IP-range?        # -      def Bytemark.inside?( target ) +      def self.inside?( target )          inside = false          if ( BYTEMARK_RANGES.any?{|range| range.include?(IPAddr.new(target))} ) diff --git a/lib/custodian/util/timespan.rb b/lib/custodian/util/timespan.rb index d3166c7..5340c65 100644 --- a/lib/custodian/util/timespan.rb +++ b/lib/custodian/util/timespan.rb @@ -53,8 +53,8 @@ module Custodian        #        def TimeSpan.to_hours( p_start, p_end ) -        p_start = Custodian::Util::TimeSpan::to_hour(p_start) -        p_end   = Custodian::Util::TimeSpan::to_hour(p_end) +        p_start = Custodian::Util::TimeSpan.to_hour(p_start) +        p_end   = Custodian::Util::TimeSpan.to_hour(p_end)          # @@ -99,15 +99,15 @@ module Custodian          #          # Ensure all values are sane and reasonable.          # -        p_start  = Custodian::Util::TimeSpan::to_hour(p_start) -        p_end    = Custodian::Util::TimeSpan::to_hour(p_end) -        cur_hour = Custodian::Util::TimeSpan::to_hour(cur_hour) +        p_start  = Custodian::Util::TimeSpan.to_hour(p_start) +        p_end    = Custodian::Util::TimeSpan.to_hour(p_end) +        cur_hour = Custodian::Util::TimeSpan.to_hour(cur_hour)          #          #  Get the expanded hours          #          valid = -          Custodian::Util::TimeSpan::to_hours( p_start, p_end ) +          Custodian::Util::TimeSpan.to_hours( p_start, p_end )          #          # Lookup to see if the specified hour is within the | 
