proxy_pac_rb 0.6.7 → 0.6.8

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: fb1ec4f7794855c660497d33d932f2407156fbe3
4
- data.tar.gz: 8e5794f77ee9ed2d29779a2204fec78653e31a0d
3
+ metadata.gz: 6218053a32fc112fbc21d3d13dcf321133f7330e
4
+ data.tar.gz: 5d6a5658d3de402b187a42f97e6a5860f123a1c6
5
5
  SHA512:
6
- metadata.gz: be7fb69f0156511ae205abdfafe3737f9dfa9ecf196401594e320c5d457d7de1072747ba1024633710876fb5df022447fad9dd2a9e5a4d11301f7c7a5d8b3a30
7
- data.tar.gz: 4203bd90a368922fbf75bd01881a1b9671cf06d8107d8f4daee1e0ba5ce5ea6d71b706c86c867721d3e2ad8c723d9d36db032bd1fc09b2649537fff00dafe7b1
6
+ metadata.gz: 41b9301f4bbc85cc42838873f2bccce8004c7d32ac8055f2264a36191e1c50c35243027d4f059634cd99480c9887f0f009a2e50718db541039fa27d4172bf8dd
7
+ data.tar.gz: 0585895de55f8fd9634d204818b96fc042551cbb8d2c67c20624074e615eaf04226b3fc37955037a6d22b108c6f06d65ea319ae600a8dccc115d38e098c7dc1d
data/README.md CHANGED
@@ -7,10 +7,7 @@
7
7
  [![Downloads](http://img.shields.io/gem/dt/proxy_pac_rb.svg?style=flat)](http://rubygems.org/gems/proxy_pac_rb)
8
8
 
9
9
 
10
- `proxy_pac_rb` is a gem to parse [proxy auto-config](http://en.wikipedia.org/wiki/Proxy_auto-config) files.
11
- `proxy_pac_rb` uses a JavaScript runtime to evaulate a proxy auto-config file the same way a browser does to determine what proxy (if
12
- any at all) should a program use to connect to a server. You must install on of the supported JavaScript runtimes:
13
- therubyracer, therubyrhino
10
+ `proxy_pac_rb` is a gem to compress, lint and parse [proxy auto-config](http://en.wikipedia.org/wiki/Proxy_auto-config) files. It comes with a cli program, some rack middlewares and can be used from within ruby scripts as well. `proxy_pac_rb` uses a JavaScript runtime to evaulate a proxy auto-config file the same way a browser does to determine what proxy (if any at all) should a program use to connect to a server. You must install on of the supported JavaScript runtimes: [therubyracer](https://rubygems.org/gems/therubyracer) or [therubyrhino](https://rubygems.org/gems/therubyrhino/).
14
11
 
15
12
  Big thanks to [sstephenson](https://github.com/sstephenson)'s [execjs](https://github.com/sstephenson/execjs) for the
16
13
  runtime wrapper code and to
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
  # ProxyPacRb
3
3
  module ProxyPacRb
4
- VERSION = '0.6.7'
4
+ VERSION = '0.6.8'
5
5
  end
data/proxy_pac_rb.gemspec CHANGED
@@ -8,11 +8,9 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Dennis Günnewig']
9
9
  spec.email = ['dg1@vrnetze.de']
10
10
  spec.homepage = 'https://github.com/dg-vrnetze/proxy_pac_rb'
11
- spec.summary = 'gem to parse proxy auto-config files.'
11
+ spec.summary = 'Compress, lint and parse proxy auto-config files from commandline, rack-compatible applications and custom ruby code.'
12
12
  spec.description = <<-DESC
13
- This gem uses a JavaScript runtime to evaulate a proxy auto-config file the same way a browser does to determine what proxy (if
14
- any at all) should a program use to connect to a server. You must install on of the supported JavaScript runtimes:
15
- therubyracer, therubyrhino, johnson or mustang.
13
+ "proxy_pac_rb" is a gem to compress, lint and parse proxy auto-config files. It comes with a cli program, some rack middlewares and can be used from within ruby scripts as well. "proxy_pac_rb" uses a JavaScript runtime to evaulate a proxy auto-config file the same way a browser does to determine what proxy (if any at all) should a program use to connect to a server. You must install on of the supported JavaScript runtimes: therubyracer or therubyrhino
16
14
  DESC
17
15
 
18
16
  spec.license = 'MIT'
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.7
4
+ version: 0.6.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dennis Günnewig
@@ -53,9 +53,7 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: 2.7.1
55
55
  description: |
56
- This gem uses a JavaScript runtime to evaulate a proxy auto-config file the same way a browser does to determine what proxy (if
57
- any at all) should a program use to connect to a server. You must install on of the supported JavaScript runtimes:
58
- therubyracer, therubyrhino, johnson or mustang.
56
+ "proxy_pac_rb" is a gem to compress, lint and parse proxy auto-config files. It comes with a cli program, some rack middlewares and can be used from within ruby scripts as well. "proxy_pac_rb" uses a JavaScript runtime to evaulate a proxy auto-config file the same way a browser does to determine what proxy (if any at all) should a program use to connect to a server. You must install on of the supported JavaScript runtimes: therubyracer or therubyrhino
59
57
  email:
60
58
  - dg1@vrnetze.de
61
59
  executables:
@@ -209,7 +207,8 @@ rubyforge_project:
209
207
  rubygems_version: 2.4.5
210
208
  signing_key:
211
209
  specification_version: 4
212
- summary: gem to parse proxy auto-config files.
210
+ summary: Compress, lint and parse proxy auto-config files from commandline, rack-compatible
211
+ applications and custom ruby code.
213
212
  test_files:
214
213
  - features/.keep
215
214
  - features/check_proxy_pac.feature