job_notifier 1.2.2 → 1.2.3

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: 23588c8481f36a1ec27b32d28edf34f36cbc7404
4
- data.tar.gz: b67e5ff9c6721b907b2145cf4d9c60f95b1437c2
3
+ metadata.gz: c0abde32187ab26c1f8807a419a8f6383f838156
4
+ data.tar.gz: 05aaaf299bd3a544df015ff6b5c9a2a02b649256
5
5
  SHA512:
6
- metadata.gz: 196db14b32abea714b5945bd8864f3da8c434eb9e92892b0eb78902fa2d1f80592badbe397ab88c59e74a406dc7751e07322505fb2ab87cbfdb40be48293bca9
7
- data.tar.gz: 244113a9a3dac857cb0d103f90c78253ade942d4be0f9372ef01b6e6612d6c9d7cc279de6f89567d43bead3eb9cbfab29294fd54d4e170ef9571752edbb782b1
6
+ metadata.gz: b89d57bb16852183576c7671ead25c52d78739e839f7c2f4e317d3cc8a5d0277419fc8e9e7501132c13c48721535551c55a087618db7695c29a97b78bc606278
7
+ data.tar.gz: 5766e7c1d52f1bc0f3a678322dc2f0b59efd7cec7c85bdd60465910145247b5c5e78f745cccd7b2bb4fb1ca4020b15a63f98b67efbef61071b7f177e2aaa440e
@@ -2,6 +2,12 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ### v1.2.3
6
+
7
+ ##### Changed
8
+
9
+ - Avoid raising error with undefined verify_authenticity_token method
10
+
5
11
  ### v1.2.2
6
12
 
7
13
  ##### Changed
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- job_notifier (1.2.2)
4
+ job_notifier (1.2.3)
5
5
  colorize (>= 0.7.7)
6
6
  enumerize (>= 1.0)
7
7
  rails (>= 4.2.0)
@@ -57,7 +57,7 @@ GEM
57
57
  tins (~> 1.6)
58
58
  diff-lcs (1.3)
59
59
  docile (1.1.5)
60
- enumerize (2.0.1)
60
+ enumerize (2.1.2)
61
61
  activesupport (>= 3.2)
62
62
  erubis (2.7.0)
63
63
  factory_girl (4.5.0)
@@ -1,6 +1,6 @@
1
1
  module JobNotifier
2
2
  class AdaptersController < ActionController::Base
3
- skip_before_action :verify_authenticity_token
3
+ skip_before_action :verify_authenticity_token, raise: false
4
4
 
5
5
  def show
6
6
  send_file(JobNotifier::Adapters.get_adapter_path(params[:id]))
@@ -1,6 +1,6 @@
1
1
  module JobNotifier
2
2
  class JobsController < ActionController::Base
3
- skip_before_action :verify_authenticity_token
3
+ skip_before_action :verify_authenticity_token, raise: false
4
4
 
5
5
  def index
6
6
  render json: Job.unnotified_by_identifier(params[:identifier])
@@ -1,3 +1,3 @@
1
1
  module JobNotifier
2
- VERSION = "1.2.2"
2
+ VERSION = "1.2.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: job_notifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Platanus