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 +4 -4
- data/README.md +1 -4
- data/lib/proxy_pac_rb/version.rb +1 -1
- data/proxy_pac_rb.gemspec +2 -4
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6218053a32fc112fbc21d3d13dcf321133f7330e
|
|
4
|
+
data.tar.gz: 5d6a5658d3de402b187a42f97e6a5860f123a1c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41b9301f4bbc85cc42838873f2bccce8004c7d32ac8055f2264a36191e1c50c35243027d4f059634cd99480c9887f0f009a2e50718db541039fa27d4172bf8dd
|
|
7
|
+
data.tar.gz: 0585895de55f8fd9634d204818b96fc042551cbb8d2c67c20624074e615eaf04226b3fc37955037a6d22b108c6f06d65ea319ae600a8dccc115d38e098c7dc1d
|
data/README.md
CHANGED
|
@@ -7,10 +7,7 @@
|
|
|
7
7
|
[](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
|
data/lib/proxy_pac_rb/version.rb
CHANGED
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 = '
|
|
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
|
-
|
|
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.
|
|
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
|
-
|
|
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:
|
|
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
|