oop_rails_server 0.0.21 → 0.0.22
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d59483bdfe97f34e39632230300cf37f6e95737
|
4
|
+
data.tar.gz: 0b36b1482eec1a6ce5d637bd203bc253bb701257
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 08ad2cadd68042cb72cdac8e99c4b6ae175664ab3ed2f70df16d7427d47b5c903bb40eaefe9cfcc57b9e43d368404f9cbd60a0661b2fcf038ed7bfe93a19d88b
|
7
|
+
data.tar.gz: dcfa773fad0e8e3f44f9c60549aecc8b4a7789fa56461974f25d8b0c0398910e962a67976d77e7a424191f7dca0cae699a74e122da27d5d121d6291e9ec3e3ff
|
data/CHANGES.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# `oop_rails_server` Releases
|
2
2
|
|
3
|
+
## 0.0.22, 27 September 2016
|
4
|
+
|
5
|
+
* Fixed a bug caused by trying to call `Exception#cause` without checking if it exists; this doesn't exist in older
|
6
|
+
Ruby versions.
|
7
|
+
|
3
8
|
## 0.0.21, 27 September 2016
|
4
9
|
|
5
10
|
* Fixed an issue that broke compatibility with older Ruby versions, since `Net::HTTP::Get.new` could not accept a
|
@@ -17,7 +17,7 @@ class ApplicationController < ActionController::Base
|
|
17
17
|
:backtrace => exception.backtrace
|
18
18
|
}
|
19
19
|
|
20
|
-
if exception.cause && (! exception.cause.equal?(exception))
|
20
|
+
if exception.respond_to?(:cause) && exception.cause && (! exception.cause.equal?(exception))
|
21
21
|
out[:cause] = exception_to_hash(exception.cause)
|
22
22
|
end
|
23
23
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oop_rails_server
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.22
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Geweke
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-09-
|
11
|
+
date: 2016-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|