rails-reverse-proxy 0.6.0 → 0.6.1

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: 78ea4a79ac30cf2d5454c26be07c28e59751ea22
4
- data.tar.gz: 41759c7fd4e82afc78813012d7dc7f4fe82a08e4
3
+ metadata.gz: e6bd7ea23c01e11f9d0a36390b59b4cf858ee808
4
+ data.tar.gz: 41e84754f2fe15e633bda9e1a69f16558e43c562
5
5
  SHA512:
6
- metadata.gz: c31b57716cf1dbd60eb648f3d8bd7e735e1038ea516b57abda73a27057845e6fd8584b8410e976c7c0fd624f3e53e11b4022a1747cf3b2db3fb103d73a06b218
7
- data.tar.gz: b26d44277bfb5dde703d077fd06d6ea511c2b4dc05320c28fdd5edd20969e12f7edb80758109965e5c0903bd6be21ce9c75e4e6ead7baa40ab9518a3eaf08abf
6
+ metadata.gz: 0bcf6a90d2617114375c460a9bb962705504c81bb2e0c3613d947f857256706b344d84c1faaf91cd924bbd5f387e22af8b6c8af3a69532c23704920143fcb1a7
7
+ data.tar.gz: cbb88d800f60edc5585f389eb59d3d6dd4d1448606aadfef6b5c64be9d7c75371bab7ca29fb4c65be38fab64b24f4cb0c5097b3d47b2c12704ff74d47cabbd7e
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2016 James Hu
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -69,6 +69,7 @@ All pull requests will become first class citizens.
69
69
  Special thanks to our contributors!
70
70
 
71
71
  - [miyukki](https://github.com/miyukki)
72
+ - [bapirex](https://github.com/bapirex)
72
73
 
73
74
  ## Copyright
74
75
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.0
1
+ 0.6.1
data/lib/reverse_proxy.rb CHANGED
@@ -2,4 +2,9 @@ require 'reverse_proxy/client'
2
2
  require 'reverse_proxy/controller'
3
3
 
4
4
  module ReverseProxy
5
+ def version
6
+ File.open(File.expand_path("../../VERSION", __FILE__)).read.strip
7
+ end
8
+
9
+ extend self
5
10
  end
@@ -2,27 +2,27 @@
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.6.0 ruby lib
5
+ # stub: rails-reverse-proxy 0.6.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "rails-reverse-proxy"
9
- s.version = "0.6.0"
9
+ s.version = "0.6.1"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["James Hu"]
14
- s.date = "2016-09-30"
14
+ s.date = "2016-10-05"
15
15
  s.description = "Reverse proxy for Ruby on Rails"
16
16
  s.email = "hello@james.hu"
17
17
  s.extra_rdoc_files = [
18
- "LICENSE.txt",
18
+ "LICENSE",
19
19
  "README.md"
20
20
  ]
21
21
  s.files = [
22
22
  ".document",
23
23
  "Gemfile",
24
24
  "Gemfile.lock",
25
- "LICENSE.txt",
25
+ "LICENSE",
26
26
  "README.md",
27
27
  "Rakefile",
28
28
  "VERSION",
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.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Hu
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-30 00:00:00.000000000 Z
11
+ date: 2016-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -141,13 +141,13 @@ email: hello@james.hu
141
141
  executables: []
142
142
  extensions: []
143
143
  extra_rdoc_files:
144
- - LICENSE.txt
144
+ - LICENSE
145
145
  - README.md
146
146
  files:
147
147
  - ".document"
148
148
  - Gemfile
149
149
  - Gemfile.lock
150
- - LICENSE.txt
150
+ - LICENSE
151
151
  - README.md
152
152
  - Rakefile
153
153
  - VERSION
data/LICENSE.txt DELETED
@@ -1,20 +0,0 @@
1
- Copyright (c) 2016 James Hu
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.