public_rescue 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/lib/public_rescue/rails.rb +1 -1
- data/public_rescue-0.2.3.gem +0 -0
- data/public_rescue.gemspec +2 -1
- metadata +4 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.4
|
data/lib/public_rescue/rails.rb
CHANGED
|
@@ -7,7 +7,7 @@ module PublicRescue
|
|
|
7
7
|
config.public_rescue.controller = :public_errors
|
|
8
8
|
|
|
9
9
|
initializer "devise.add_middleware" do |app|
|
|
10
|
-
app.middleware.swap ActionDispatch::ShowExceptions,
|
|
10
|
+
app.middleware.swap ActionDispatch::ShowExceptions, PublicRescue::ShowExceptions
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
|
|
Binary file
|
data/public_rescue.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{public_rescue}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Cyril Picard"]
|
|
@@ -34,6 +34,7 @@ Gem::Specification.new do |s|
|
|
|
34
34
|
"lib/public_rescue.rb",
|
|
35
35
|
"lib/public_rescue/rails.rb",
|
|
36
36
|
"lib/public_rescue/show_exceptions.rb",
|
|
37
|
+
"public_rescue-0.2.3.gem",
|
|
37
38
|
"public_rescue.gemspec",
|
|
38
39
|
"test/helper.rb",
|
|
39
40
|
"test/test_public_rescue.rb"
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: public_rescue
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 31
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.2.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Cyril Picard
|
|
@@ -120,6 +120,7 @@ files:
|
|
|
120
120
|
- lib/public_rescue.rb
|
|
121
121
|
- lib/public_rescue/rails.rb
|
|
122
122
|
- lib/public_rescue/show_exceptions.rb
|
|
123
|
+
- public_rescue-0.2.3.gem
|
|
123
124
|
- public_rescue.gemspec
|
|
124
125
|
- test/helper.rb
|
|
125
126
|
- test/test_public_rescue.rb
|