zooming-proxy 0.3.0 → 0.4.0

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
  SHA1:
3
- metadata.gz: d5db2f68097db08244631570dd8652a30ec720b4
4
- data.tar.gz: 1d9d6554c128bd744e25a5bd3f435411b352c9d4
3
+ metadata.gz: 2019838582e56560013197cd409cc4f3bd0ada67
4
+ data.tar.gz: 3972471cc45d40b126022d4d1c0ede123a1c60f5
5
5
  SHA512:
6
- metadata.gz: aa979c1af8a2f8d069324badbd215b72e84a918ee66be1be37556799c45a285101e89442769fb874a96f2f94d62b8cde87df8f9ea3bf91b7303eca81636e3cb1
7
- data.tar.gz: fbacd3ddc666a5cd9df37e93854fb05dc3512c35b639b1785238590dc9210e9985dd6ac9eb25d5f5a3f2b02072dbaeb599f93d5f3bd65174da883b9b5b98f277
6
+ metadata.gz: 2195bbceaabf5aa7499f3c76e31665e3119df03cb2cdcb0b095aa7b235cc32df2de6f5864605fd01ba54ef8fa3a40dad2fe31df169813d16def27befd087a421
7
+ data.tar.gz: e2cf8d6beeb5f8a5827b6668bb4f0290f00ebc912da86adc278c1b84feadcec0bb5bbd725ec19a25f1d0661264ad73b1130ebfe026cc1848722708c7cd9a9882
@@ -5,7 +5,12 @@ require 'typhoeus'
5
5
 
6
6
  Typhoeus::Config.memoize = true
7
7
 
8
- module ZoomingProxy
8
+ class ZoomingProxy
9
+ class << self
10
+ attr_accessor :default_scheme
11
+ attr_accessor :default_host
12
+ end
13
+
9
14
  # Middleware
10
15
  #
11
16
  class Middleware
@@ -96,8 +101,8 @@ module ZoomingProxy
96
101
 
97
102
  def request_rel(href, headers)
98
103
  uri = URI.parse(href)
99
- uri.scheme = scheme
100
- uri.host = host
104
+ uri.scheme = ZoomingProxy.default_scheme || scheme
105
+ uri.host = ZoomingProxy.default_host || host
101
106
 
102
107
  Typhoeus::Request.new(uri, headers: headers)
103
108
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module ZoomingProxy
4
- VERSION = '0.3.0'
3
+ class ZoomingProxy
4
+ VERSION = '0.4.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zooming-proxy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Blendle developers