proxy_pac_rb 0.6.1 → 0.6.2
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/proxy_pac_rb/proxy_pac_compressor.rb +5 -5
- data/lib/proxy_pac_rb/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d154b5675381cbe1bd4471167f75e6543281b0e0
|
|
4
|
+
data.tar.gz: 32f4619187d1ba5ee507ed58b64a758386bf85ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11b1a9e8920fd7621c580b3b068dcdc50c89f8866b51dde375f78de577c123e2b073421efd279170647fcc687128199480bf29a20355edaafa11c74b936486ed
|
|
7
|
+
data.tar.gz: 2b32fc13ad9cd62f4b9ce426a9ff63d8b13221b9e50f290e926f2f43b40028f7b8537e256f36d56972d761cd5d0cafc672872e61fe8d90eaf3045ff3d4543ab0
|
data/Gemfile.lock
CHANGED
|
@@ -8,8 +8,8 @@ module ProxyPacRb
|
|
|
8
8
|
|
|
9
9
|
public
|
|
10
10
|
|
|
11
|
-
def initialize(
|
|
12
|
-
|
|
11
|
+
def initialize(options: {})
|
|
12
|
+
opts = {
|
|
13
13
|
output: {
|
|
14
14
|
# ascii_only: true, # Escape non-ASCII characters
|
|
15
15
|
# comments: :copyright, # Preserve comments (:all, :jsdoc, :copyright, :none, Regexp (see below))
|
|
@@ -60,9 +60,9 @@ module ProxyPacRb
|
|
|
60
60
|
# keep_fargs: false, # Preserve unused function arguments
|
|
61
61
|
# keep_fnames: true # Preserve function names
|
|
62
62
|
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
@options =
|
|
63
|
+
}.merge options
|
|
64
|
+
|
|
65
|
+
@options = opts
|
|
66
66
|
end
|
|
67
67
|
|
|
68
68
|
def compress(proxy_pac)
|
data/lib/proxy_pac_rb/version.rb
CHANGED