rambulance 1.0.1 → 1.0.2
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/rambulance/railtie.rb +1 -0
- data/lib/rambulance/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74116493ad5ada66c35eb31534fadb7392c54847bdbc2fc156c14a10fa050c44
|
|
4
|
+
data.tar.gz: 2272a7686a4b88815488ccd3a7f0e3325ecc5596e4ec687552407a0f4d9b21e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c680ce9ec05c5ef1c89cc91dc59606294d482cebc8a8b0795f47715b80ee4108c3818e2760e5c9eb738876c61bd99d7cb65f97876dc3754a1af1b61b2ac5299c
|
|
7
|
+
data.tar.gz: af312ac6bdcfa74255360d17d84a736c615fd833be9586892500267c440332a765e6c16015cdaaa69d694695d4360f09efa5ad9b91ac4500dbf8210a973b8282
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [v1.0.1](https://github.com/yuki24/rambulance/tree/v1.0.1)
|
|
2
|
+
|
|
3
|
+
_<sup>released at 2019-06-04 16:30:38 UTC</sup>_
|
|
4
|
+
|
|
5
|
+
#### Fixes
|
|
6
|
+
|
|
7
|
+
- Fixes an issue where `ExceptionsApp` prevents Rails from booting up ([#49](https://github.com/yuki24/rambulance/issues/49))
|
|
8
|
+
|
|
1
9
|
## [v1.0.0](https://github.com/yuki24/rambulance/tree/v1.0.0)
|
|
2
10
|
|
|
3
11
|
_<sup>released at 2019-06-03 05:01:14 UTC</sup>_
|
data/lib/rambulance/railtie.rb
CHANGED
|
@@ -10,6 +10,7 @@ module Rambulance
|
|
|
10
10
|
ActiveSupport::Dependencies.load_missing_constant(Object, :ExceptionsApp)
|
|
11
11
|
::ExceptionsApp.call(env)
|
|
12
12
|
rescue NameError
|
|
13
|
+
require "rambulance/exceptions_app" if !defined?(::Rambulance::ExceptionsApp)
|
|
13
14
|
::Rambulance::ExceptionsApp.call(env)
|
|
14
15
|
end
|
|
15
16
|
}
|
data/lib/rambulance/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rambulance
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yuki Nishijima
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-06-
|
|
11
|
+
date: 2019-06-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|