├── .document ├── .gitignore ├── .ruby-version ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── VERSION ├── lib ├── rails-reverse-proxy.rb ├── reverse-proxy.rb ├── reverse_proxy.rb └── reverse_proxy │ ├── client.rb │ └── controller.rb └── rails-reverse-proxy.gemspec /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.13.0 2 | -------------------------------------------------------------------------------- /lib/rails-reverse-proxy.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + '/reverse_proxy' -------------------------------------------------------------------------------- /lib/reverse-proxy.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + '/reverse_proxy' -------------------------------------------------------------------------------- /lib/reverse_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/lib/reverse_proxy.rb -------------------------------------------------------------------------------- /lib/reverse_proxy/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/lib/reverse_proxy/client.rb -------------------------------------------------------------------------------- /lib/reverse_proxy/controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/lib/reverse_proxy/controller.rb -------------------------------------------------------------------------------- /rails-reverse-proxy.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axsuul/rails-reverse-proxy/HEAD/rails-reverse-proxy.gemspec --------------------------------------------------------------------------------