exception_notification-shoryuken 0.2.1 → 1.0.0

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
  SHA256:
3
- metadata.gz: 25e9415524da225f1002ea6c45635a52c16e8c367cc027113178d1f8330c0c0a
4
- data.tar.gz: 94fa209479939e75da2f6ab95312fb5f4d436b0e79be808936c45b2909026988
3
+ metadata.gz: d18bd4e389cb95c74c6fb213244bcc3560db045479e8c4c3b2e610a01de56f50
4
+ data.tar.gz: ea6eeb8b95556581d9c5eb65f8e4e90aeeb791e56723213782f51b7b411c26bb
5
5
  SHA512:
6
- metadata.gz: dc610fd2ff3586506d678b8b23e871e75f17d343894b049cb831faa00702e5bac62bfad20c1d19c5926c9ff6ecaaaf7f4e11d2a711736c016c6cb9571849c490
7
- data.tar.gz: 07b1d5a41d04271eac5bf36cbb1bc1d41c5a69a690186e1fbd0ed64e147e16e347ea80565f16f804bc8769f590b45f0d64509cb1653e9d19b564f608c59a4a1c
6
+ metadata.gz: '02876a85136220d176c52b9f5935cfa8f12fa2f98199fe4a968538ae47a41b89e7582d1ec22fbef4adef7c520b66dd4e79fad3fef205b06c9852cc449c46a97e'
7
+ data.tar.gz: 75b875c4f7d390260b125c9251e4235852f12a16372b0a0bd13e6489849b30de42c3e747120238673f09442b77bae6d2ca792be8ab557f4085e276207a11bb09
data/.travis.yml CHANGED
@@ -1,4 +1,9 @@
1
1
  language: ruby
2
+
2
3
  rvm:
3
- - 2.1.4
4
- before_install: gem install bundler -v 1.11.2
4
+ - 2.6.3
5
+ - 2.5.5
6
+ - 2.4.6
7
+ - 2.3.8
8
+
9
+ before_install: gem install bundler -v 1.17.1
data/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # ExceptionNotification::Shoryuken
2
+ [![Build Status](https://travis-ci.com/h3poteto/exception_notification-shoryuken.svg?branch=master)](https://travis-ci.com/h3poteto/exception_notification-shoryuken)
3
+ [![GitHub release](https://img.shields.io/github/release/h3poteto/exception_notification-shoryuken.svg)](https://github.com/h3poteto/exception_notification-shoryuken/releases)
4
+ [![Gem](https://img.shields.io/gem/v/exception_notification-shoryuken.svg)](https://rubygems.org/gems/exception_notification-shoryuken)
5
+ ![Gem](https://img.shields.io/gem/dt/exception_notification-shoryuken.svg)
2
6
 
3
- This Ruby gem is an extension of the [exception_notification](https://github.com/smartinez87/exception_notification) gem, and provides a set of notifiers for sending notifications when errors occur in [Shoryuken](https://github.com/phstc/shoryuken) worker. This is useful if you use Shoryuken worker as asynchronous
7
+ This Ruby gem is an extension of the [exception_notification](https://github.com/smartinez87/exception_notification) gem, and provides a set of notifiers for sending notifications when errors occur in [Shoryuken](https://github.com/phstc/shoryuken) worker. This is useful if you use Shoryuken worker as asynchronous
4
8
  process.
5
9
 
6
10
  ## Installation
@@ -20,8 +20,8 @@ Gem::Specification.new do |spec|
20
20
  spec.require_paths = ["lib"]
21
21
 
22
22
  spec.add_runtime_dependency 'exception_notification', "~> 4"
23
- spec.add_runtime_dependency 'shoryuken', "~> 4.0"
24
- spec.add_development_dependency "bundler", "~> 1.11"
23
+ spec.add_runtime_dependency 'shoryuken', ">= 4.0", "<= 5.1"
25
24
  spec.add_development_dependency "rake", "~> 10.0"
26
25
  spec.add_development_dependency "rspec", "~> 3.0"
26
+ spec.add_development_dependency 'aws-sdk-sqs', "~> 1.13"
27
27
  end
@@ -1,5 +1,5 @@
1
1
  module ExceptionNotification
2
2
  module Shoryuken
3
- VERSION = "0.2.1"
3
+ VERSION = "1.0.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exception_notification-shoryuken
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - h3poteto
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-11-07 00:00:00.000000000 Z
11
+ date: 2019-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: exception_notification
@@ -28,58 +28,64 @@ dependencies:
28
28
  name: shoryuken
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '4.0'
34
+ - - "<="
35
+ - !ruby/object:Gem::Version
36
+ version: '5.1'
34
37
  type: :runtime
35
38
  prerelease: false
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
38
- - - "~>"
41
+ - - ">="
39
42
  - !ruby/object:Gem::Version
40
43
  version: '4.0'
44
+ - - "<="
45
+ - !ruby/object:Gem::Version
46
+ version: '5.1'
41
47
  - !ruby/object:Gem::Dependency
42
- name: bundler
48
+ name: rake
43
49
  requirement: !ruby/object:Gem::Requirement
44
50
  requirements:
45
51
  - - "~>"
46
52
  - !ruby/object:Gem::Version
47
- version: '1.11'
53
+ version: '10.0'
48
54
  type: :development
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
51
57
  requirements:
52
58
  - - "~>"
53
59
  - !ruby/object:Gem::Version
54
- version: '1.11'
60
+ version: '10.0'
55
61
  - !ruby/object:Gem::Dependency
56
- name: rake
62
+ name: rspec
57
63
  requirement: !ruby/object:Gem::Requirement
58
64
  requirements:
59
65
  - - "~>"
60
66
  - !ruby/object:Gem::Version
61
- version: '10.0'
67
+ version: '3.0'
62
68
  type: :development
63
69
  prerelease: false
64
70
  version_requirements: !ruby/object:Gem::Requirement
65
71
  requirements:
66
72
  - - "~>"
67
73
  - !ruby/object:Gem::Version
68
- version: '10.0'
74
+ version: '3.0'
69
75
  - !ruby/object:Gem::Dependency
70
- name: rspec
76
+ name: aws-sdk-sqs
71
77
  requirement: !ruby/object:Gem::Requirement
72
78
  requirements:
73
79
  - - "~>"
74
80
  - !ruby/object:Gem::Version
75
- version: '3.0'
81
+ version: '1.13'
76
82
  type: :development
77
83
  prerelease: false
78
84
  version_requirements: !ruby/object:Gem::Requirement
79
85
  requirements:
80
86
  - - "~>"
81
87
  - !ruby/object:Gem::Version
82
- version: '3.0'
88
+ version: '1.13'
83
89
  description: exception_notification's plugin for shoryuken.
84
90
  email:
85
91
  - h3.poteto@gmail.com