diff options
| author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:21:36 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:21:36 +0000 | 
| commit | 0c2d64d6daf9a9a901a3b67730680e3e97c60f8d (patch) | |
| tree | 623a1932c32dcf6cbac9254334690db82ac3816e /lib/custodian/util | |
| parent | 6d95fd2e13f23037bbae89b5627caf53aa346e73 (diff) | |
Whitespace fixups.
These were all identified and suggested by rubocop.
Diffstat (limited to 'lib/custodian/util')
| -rw-r--r-- | lib/custodian/util/ping.rb | 2 | ||||
| -rw-r--r-- | lib/custodian/util/timespan.rb | 8 | 
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/custodian/util/ping.rb b/lib/custodian/util/ping.rb index f8b7c75..3b3586e 100644 --- a/lib/custodian/util/ping.rb +++ b/lib/custodian/util/ping.rb @@ -78,7 +78,7 @@ module Custodian            if (system("ping6 -c 1 #{@resolved} 2>/dev/null >/dev/null") == true)              return true            end -        elsif(is_ipv4?) +        elsif is_ipv4?            if (system("ping -c 1 #{@resolved} 2>/dev/null >/dev/null") == true)              return true            end diff --git a/lib/custodian/util/timespan.rb b/lib/custodian/util/timespan.rb index 9b79867..c0ca4eb 100644 --- a/lib/custodian/util/timespan.rb +++ b/lib/custodian/util/timespan.rb @@ -33,8 +33,8 @@ module Custodian          #          #  Ensure within a valid range          # -        raise ArgumentError, 'Integer required for time'   unless(desc.kind_of? Integer) -        raise ArgumentError,  "Invalid time: #{desc}" unless((desc >= 0) && (desc <= 23)) +        raise ArgumentError, 'Integer required for time'   unless desc.kind_of? Integer +        raise ArgumentError,  "Invalid time: #{desc}" unless (desc >= 0) && (desc <= 23)          # @@ -67,12 +67,12 @@ module Custodian          #  Iterate over the hours.  Store in a hash.          #          hour = p_start -        while(hour != p_end) +        while (hour != p_end)            valid[hour] = 1            hour += 1            hour  = 0 if  hour > 23           end -        valid[p_end]=1 +        valid[p_end] = 1          #          #  Return the hash  | 
