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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0cb2ff147e64623a0d51411eab25c6e8fa1bb9dd
4
- data.tar.gz: 76a0f3498dde95981df7f5140af8d7a70fa56d15
3
+ metadata.gz: d154b5675381cbe1bd4471167f75e6543281b0e0
4
+ data.tar.gz: 32f4619187d1ba5ee507ed58b64a758386bf85ac
5
5
  SHA512:
6
- metadata.gz: 38697dc37340ab274e86c473f211e658e8e280505c24722fe65c4f6dc2afabd0364fa64f3daf1a9101a565b91c6af8a0880042b21380ce05b5a2bfdaf491d9d2
7
- data.tar.gz: 365b39c040c9eb8c42ad8e48794d12810fb82a923e30ebfd082a4a461b142c006eb52049f2cd40607b3f750df60f8419b65d084dd2843650ad4c4f1427a913b1
6
+ metadata.gz: 11b1a9e8920fd7621c580b3b068dcdc50c89f8866b51dde375f78de577c123e2b073421efd279170647fcc687128199480bf29a20355edaafa11c74b936486ed
7
+ data.tar.gz: 2b32fc13ad9cd62f4b9ce426a9ff63d8b13221b9e50f290e926f2f43b40028f7b8537e256f36d56972d761cd5d0cafc672872e61fe8d90eaf3045ff3d4543ab0
data/Gemfile.lock CHANGED
@@ -22,7 +22,7 @@ GIT
22
22
  PATH
23
23
  remote: .
24
24
  specs:
25
- proxy_pac_rb (0.6.0)
25
+ proxy_pac_rb (0.6.1)
26
26
  activesupport (~> 4.1)
27
27
  addressable (~> 2.3.8)
28
28
  uglifier (~> 2.7.1)
@@ -8,8 +8,8 @@ module ProxyPacRb
8
8
 
9
9
  public
10
10
 
11
- def initialize(
12
- options: {
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 = options
63
+ }.merge options
64
+
65
+ @options = opts
66
66
  end
67
67
 
68
68
  def compress(proxy_pac)
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
  # ProxyPacRb
3
3
  module ProxyPacRb
4
- VERSION = '0.6.1'
4
+ VERSION = '0.6.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: proxy_pac_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dennis Günnewig