rails-reverse-proxy 0.11.0 → 0.12.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
  SHA256:
3
- metadata.gz: 6456ffe718138ee9846ef5579c7f67e9aa60339e6b208e4c985c3b64caa7cca8
4
- data.tar.gz: 993aa4fe65082f18776066abc7b013722407b5eeb41f0442a6e0776ba8676b64
3
+ metadata.gz: acf23d29679d737e49136de095157258980b48880b63e69bb00f1fbcd0136fdc
4
+ data.tar.gz: da88db569650043b74f76cf4656bfcd30501b0cded0ed0888306115fa089ddc5
5
5
  SHA512:
6
- metadata.gz: 801d5819e6d0538512588927f7dc98bd451dc4ad3bcdaaaa73c65a2b8e58280bb7e2389fa7f682f28c7abeb121da6774d2463c44dbc62b1851d05c3be173a10a
7
- data.tar.gz: 25777c89c3516b8b306a26a52d6b938d02f70b73b2b0ffd0003a0974afec298c5428f1b7938710d0162b653f17293ddd703540fa45853fbd147a6cef9b55831a
6
+ metadata.gz: 120d187b75a971b95d7f8cca93631994ade98e98f72cc349d03787f9f9b470482dec3bbcd5175c7a24f4493093552ac44e721a9cfb68e6ff3738acaba8b19ddc
7
+ data.tar.gz: fcda14733a9ae6db003b60ca646382aae400ab5f36934298aa9ffcf459f7199d5c8982028f2ec4eb4022101de234f11d3474292610c1f5f67934c48c115bff6a
data/README.md CHANGED
@@ -15,7 +15,7 @@ gem 'rails-reverse-proxy'
15
15
  Then (you guessed it!)
16
16
 
17
17
  ```
18
- $ bundle
18
+ $ bundle install
19
19
  ```
20
20
 
21
21
  ## Usage
@@ -75,6 +75,12 @@ If you'd like to customize options passed into the underlying [`Net:HTTP`](https
75
75
  reverse_proxy "http://localhost:8000", http: { read_timeout: 20, open_timeout: 100 }
76
76
  ```
77
77
 
78
+ If you'd like to reset the `Accept-Encoding` header in order to disable compression or other server-side encodings
79
+
80
+ ```ruby
81
+ reverse_proxy "http://localhost:8000", reset_accept_encoding: true
82
+ ```
83
+
78
84
  Determine what version you're using
79
85
 
80
86
  ```ruby
@@ -91,10 +97,11 @@ All pull requests will become first class citizens.
91
97
 
92
98
  Special thanks to our contributors!
93
99
 
94
- - [mediafinger](https://github.com/mediafinger)
95
- - [miyukki](https://github.com/miyukki)
96
- - [bapirex](https://github.com/bapirex)
97
- - [marcosbeirigo](https://github.com/marcosbeirigo)
100
+ - [aardvarkk](https://github.com/aardvarkk)
98
101
  - [avinashkoulavkar](https://github.com/avinashkoulavkar)
102
+ - [bapirex](https://github.com/bapirex)
99
103
  - [jcs](https://github.com/jcs)
100
- - [aardvarkk](https://github.com/aardvarkk)
104
+ - [kylewlacy](https://github.com/kylewlacy)
105
+ - [marcosbeirigo](https://github.com/marcosbeirigo)
106
+ - [mediafinger](https://github.com/mediafinger)
107
+ - [miyukki](https://github.com/miyukki)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.11.0
1
+ 0.12.0
@@ -65,9 +65,9 @@ module ReverseProxy
65
65
  && source_request.body
66
66
  source_request.body.rewind
67
67
  target_request.body_stream = source_request.body
68
+ target_request.content_length = source_request.content_length || 0
68
69
  end
69
70
 
70
- target_request.content_length = source_request.content_length || 0
71
71
  target_request.content_type = source_request.content_type if source_request.content_type
72
72
 
73
73
  # Hold the response here
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: rails-reverse-proxy 0.11.0 ruby lib
5
+ # stub: rails-reverse-proxy 0.12.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "rails-reverse-proxy".freeze
9
- s.version = "0.11.0"
9
+ s.version = "0.12.0"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
13
13
  s.authors = ["James Hu".freeze]
14
- s.date = "2022-02-08"
14
+ s.date = "2023-03-02"
15
15
  s.description = "Reverse proxy for Ruby on Rails".freeze
16
16
  s.email = "hello@james.hu".freeze
17
17
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-reverse-proxy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Hu
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-08 00:00:00.000000000 Z
11
+ date: 2023-03-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack