url_canonicalize 0.1.4 → 0.1.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 34f9a7a4f198b6f09e35d22c80b290400b9f19dc
4
- data.tar.gz: 3a10c7dd7d775f212d2b44e8f728a04568ff78c0
3
+ metadata.gz: fee1271623644044284abeb6be2ab10d600994aa
4
+ data.tar.gz: 08b0d07e29df7fce0c5594f1fe3312058ae479b9
5
5
  SHA512:
6
- metadata.gz: c9a953ab2304b1fbda3909f8af3abbc50a1acb634cf0b6300decd1d2cfad934884dbf27ee124a17100a7c81885f893cfeb07e712e166d0cdac3ff3b0855cd295
7
- data.tar.gz: 253b870b0f19b5c29232e411a512c6e34a74b8744a79d9d70e530839317a8ab4e6eadee31203765e2b89fcfbf2494987b7ee2abb6819e5a1423a6c90a684bcdc
6
+ metadata.gz: c1e4b1bf7dd1c621f7943b34973b1eab2b20e3b7c48b9287097e84e1b654561b560ecdb31b4668f18d7db2491810a2db8168a5f45664d9396a376397cbe5996b
7
+ data.tar.gz: b44fcd267a0b41e401144e84849e54c10a2bfdfdb22a1b3e5e5b09cc69d999bc559e22334dc0a7a0d1b0ae7ca4fb06b38246d8bcc8ffb097411d1584ac44b1da
data/.rubocop.yml CHANGED
@@ -53,4 +53,4 @@ Lint/LiteralInInterpolation:
53
53
 
54
54
  Metrics/ClassLength:
55
55
  CountComments: false # count full line comments?
56
- Max: 150
56
+ Max: 200
@@ -168,7 +168,7 @@ module URLCanonicalize
168
168
  puts "#{http_method.upcase} #{url} #{response.code} #{response.message}"
169
169
 
170
170
  return unless ENV['DEBUG'].casecmp('headers')
171
- response.each { |k, v| puts " #{k}:\t#{v}"}
171
+ response.each { |k, v| puts " #{k}:\t#{v}" }
172
172
  end
173
173
 
174
174
  NETWORK_EXCEPTIONS = [
@@ -1,3 +1,3 @@
1
1
  module URLCanonicalize
2
- VERSION = '0.1.4'.freeze
2
+ VERSION = '0.1.5'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: url_canonicalize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dominic Sayers