browsed 0.2.6 → 0.2.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ce77ce8ab4a14169daeb61e3af46f43340b248d84c81cdda763777e7c152bea
4
- data.tar.gz: 2694ba144b2f55c5a7e1dd8231c258092828794b3d5f229edf126814aa2c176f
3
+ metadata.gz: 2912f572bf4721e3c324b4888113d21af4b480817e4dd80905b93e66a75c344b
4
+ data.tar.gz: bc30648ef8cfe3976918d922ffb4254c35740b1e4fcbd82bfb119ad9bbc57f56
5
5
  SHA512:
6
- metadata.gz: 80c7d784ad587b6202e2c4cec78830793e7f1101f10a8c6c49c2bce6c47e556b4019ac6fc616ebda318fce632834f5fd7fd10d85080c2fb3cfa9ce9091d933df
7
- data.tar.gz: 4ec3b57515d439944e62ea0c791e92c4c97c64600b7b47342bc81dd7e9b02fd1c63aac0a5989931950c9862e15621c936d49e21ae98b2d8d5f6d5c0db401176e
6
+ metadata.gz: b6bd02c049efd51d390d9545d5090f2bb5672cd8ae5634ee68b82b08ecd279f87de0594a086e417218dac766693496871c9f7963c9728de1bfc785523e337261
7
+ data.tar.gz: a10d2c5f84fe7dfa0c3f38df4859824f603e6572cf2788c22d7bd813acca7d004f073e8fe286b01d390e41895e715f2d9ee01e06166969701846b77c6a1f3377
@@ -51,7 +51,7 @@ module Browsed
51
51
 
52
52
  if !headless? && proxy_using_auth?
53
53
  log("Generating a new proxy plugin to manage proxy authentication.")
54
- plugin_path = Browser::Proxies::Chrome::ProxyAuthentication::Packager.package_extension(proxy, self.configuration.temp_path)
54
+ plugin_path = Browsed::Proxies::Chrome::ProxyAuthentication::Packager.package_extension(proxy, self.configuration.temp_path)
55
55
  end
56
56
  end
57
57
  end
@@ -10,10 +10,10 @@ module Browser
10
10
  FileUtils.mkdir_p plugin_path
11
11
 
12
12
  manifest_file = "#{plugin_path}/manifest.json"
13
- File.open(manifest_file, 'w') { |file| file.write(::Browser::Proxies::Chrome::ProxyAuthentication::MANIFEST_JSON_TEMPLATE) }
13
+ File.open(manifest_file, 'w') { |file| file.write(::Browsed::Proxies::Chrome::ProxyAuthentication::MANIFEST_JSON_TEMPLATE) }
14
14
 
15
15
  script_file = "#{plugin_path}/background.js"
16
- script_result = Browser::Proxies::Chrome::ProxyAuthentication::BACKGROUND_SCRIPT_TEMPLATE % [proxy[:host], proxy[:port], proxy[:username], proxy[:password]]
16
+ script_result = Browsed::Proxies::Chrome::ProxyAuthentication::BACKGROUND_SCRIPT_TEMPLATE % [proxy[:host], proxy[:port], proxy[:username], proxy[:password]]
17
17
  File.open(script_file, 'w') { |file| file.write(script_result) }
18
18
 
19
19
  return plugin_path
@@ -1,3 +1,3 @@
1
1
  module Browsed
2
- VERSION = "0.2.6"
2
+ VERSION = "0.2.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: browsed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian