rambulance 1.0.0 → 1.0.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
  SHA256:
3
- metadata.gz: 4e7a19e6d38b6d44ff7cfe3cc0589f0bf8575f1e6750bf73df35096822e62d5a
4
- data.tar.gz: cf524a57dc3237fc8a182256986fef5178d2efd7d262f85be0b18f8829522d6e
3
+ metadata.gz: 96866c6e01539ba5bb5ef864bdeb564dc00cf8f3f091f9c2b4441508b8fbb735
4
+ data.tar.gz: 6d59f31b878c8537307ab1c4106930cbcac171493cda2da83f6531b93f59b3b9
5
5
  SHA512:
6
- metadata.gz: 8a2dd2e048ccde58d0f8f17d47d0d8f4722a7c83e57062a600c4a2c4d4455823b2d73c854ef77fa7e976db24a888f959b5d3068d059822d73fa428404f2f425e
7
- data.tar.gz: 14753c604c06c1a6412372cd63066a5aa8af55c5c5c0fba8ef3d7764228aa8cb9d735748eb3fc023570d7c4633482f6e2ad38746a36087a781fe74a2f3d16b28
6
+ metadata.gz: 87781753d74097b4c83f5fd4cea441c9da627496a25ffa97893f9ba0694fc063ea5c35fca6d23ed73f6c48c45e4aebb3469844c59d6f2712915e36f6c4208751
7
+ data.tar.gz: dbd6a4df8d0aa5bbe3624a94f0caf9bd902101e41daee1ec7ba6bb01245b44866523dc44eea7a654e65df74eef614519a793fdc6675ddf42eb54041bca58971e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## [v1.0.0](https://github.com/yuki24/rambulance/tree/v1.0.0)
2
+
3
+ _<sup>released at 2019-06-03 05:01:14 UTC</sup>_
4
+
5
+ #### Features
6
+
7
+ - Add support for Ruby 2.6
8
+ - Add support for Rails 6.0
9
+
10
+ #### Bug fixes
11
+
12
+ - Fixes a bug where POST requests cause the exceptions app to throw an `ActionController::InvalidAuthenticityToken` error on Rails 5.2 ([<tt>d68d677</tt>](https://github.com/yuki24/rambulance/commit/d68d677de75059fa09f70e37c97f4bae95885c53), [#48](https://github.com/yuki24/rambulance/issues/48), [@adrianhuna](https://github.com/adrianhuna))
13
+
14
+ #### Breaking Changes
15
+
16
+ - Drop support for Ruby \<= 2.2
17
+ - Drop support for Rails \<= 4.1
18
+
1
19
  ## [v0.6.0](https://github.com/yuki24/rambulance/tree/v0.6.0)
2
20
 
3
21
  _<sup>released at 2018-03-08 18:36:16 UTC</sup>_
@@ -12,8 +12,10 @@ module Rambulance
12
12
  class ExceptionsApp < ActionController::Base
13
13
  layout :layout_name
14
14
 
15
- if self.respond_to?(:skip_forgery_protection)
15
+ begin
16
16
  skip_forgery_protection
17
+ rescue
18
+ # ignore errors from #skip_forgery_protection since older Rails adds this method later.
17
19
  end
18
20
 
19
21
  def self.call(env)
@@ -1,3 +1,3 @@
1
1
  module Rambulance
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
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.0
4
+ version: 1.0.1
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-03 00:00:00.000000000 Z
11
+ date: 2019-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport