proxy_pac_rb 0.8.1 → 0.8.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/lib/proxy_pac_rb/version.rb +1 -1
- data/proxy_pac_rb.gemspec +1 -0
- metadata +24 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ecdd75967c91ea19b1ceba679284915f6cb3a0bb
|
|
4
|
+
data.tar.gz: b132a3f2b7a92c68c68dab8d0a432fcb26481532
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a032ec25c9f63e82d97abf66aaccb3d6251d00fde0eafc0d9d1f3c10cdef9ad5a2af2e6b61ed439c803503b7e5d37fc13fd0ba8e061d47155a91526393b57fd
|
|
7
|
+
data.tar.gz: 504bdf54c11c337171b2a8dc457e9f1719096d4ad2facf99b91086e691e6e284da0f28840d41866b442576a93cfb0d0b91843de9b119cc735b7882e7db0c6ab7
|
data/lib/proxy_pac_rb/version.rb
CHANGED
data/proxy_pac_rb.gemspec
CHANGED
|
@@ -27,6 +27,7 @@ DESC
|
|
|
27
27
|
spec.add_runtime_dependency 'uglifier', '~> 2.7.1'
|
|
28
28
|
spec.add_runtime_dependency 'excon', '~> 0.45.3'
|
|
29
29
|
spec.add_runtime_dependency 'contracts', '~> 0.9'
|
|
30
|
+
spec.add_runtime_dependency 'thor', '~> 0.19'
|
|
30
31
|
|
|
31
32
|
spec.required_ruby_version = '~> 2.0'
|
|
32
33
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: proxy_pac_rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dennis Günnewig
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-07-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|
|
@@ -80,8 +80,28 @@ dependencies:
|
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0.9'
|
|
83
|
-
|
|
84
|
-
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: thor
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0.19'
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0.19'
|
|
97
|
+
description: '"proxy_pac_rb" is a gem to compress, lint and parse proxy auto-config
|
|
98
|
+
files. It comes with a cli program, some rack middlewares and can be used from within
|
|
99
|
+
ruby scripts as well. "proxy_pac_rb" uses a JavaScript runtime to evaulate a proxy
|
|
100
|
+
auto-config file the same way a browser does to determine what proxy (if any at
|
|
101
|
+
all) should a program use to connect to a server. You must install on of the supported
|
|
102
|
+
JavaScript runtimes: therubyracer or therubyrhino
|
|
103
|
+
|
|
104
|
+
'
|
|
85
105
|
email:
|
|
86
106
|
- dg1@vrnetze.de
|
|
87
107
|
executables:
|