exception_notification-shoryuken 1.0.1 → 1.1.0

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: aae7edaa73a416ddf20699640c337270b7691ae6f4ed82a1be5fce8a94b07fb7
4
- data.tar.gz: a8a11b97f2fbf9eb9c9d35a653960b03743a276d5e5ced6fae7407958b75ba51
3
+ metadata.gz: de3f4589124ecc82a0fb4bf1d67a08f125c0001b083c465a579b1fb47e95298a
4
+ data.tar.gz: 98093152343c8ce1342e6112eb64a0c52ad93a3396f70da48e74e4ade57995f7
5
5
  SHA512:
6
- metadata.gz: 921262e9bf9966c0d7bb602e4c44d7688a2f36a1fd8e683cf40449507b13c8987514bc614051840a815cc0e992b7a5b9d426d82393961d9806399bd4bc84fc32
7
- data.tar.gz: de35b0f79a185e7bb7d426b4af0ff6978e3dfde5d13fb51ba51ec9d6eba1a039861c080ce5cd5e1f63903480dc594c4109ffc41754de84d1e0eb12865a995cf6
6
+ metadata.gz: 92e4947f454cd9927a4e6cd14a7f20870906c4687d78eba82e3921d2309cc2d80b8d4597eaf845f5eb597c0afdedae4871be6e5126ce2242058484c104d0f8fb
7
+ data.tar.gz: 3bd36e6975f034249ce20800d7ab78cdc362592096b7e87c4cc1b35db3639f5e6df7119eb2c4ad5cedc38bb5ea387c4a54cfadac624afdee78bed2487cdfef75
@@ -0,0 +1,33 @@
1
+ name: Release
2
+
3
+ on:
4
+ release:
5
+ types: [created]
6
+
7
+ jobs:
8
+ release:
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Set up Ruby
14
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
15
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
16
+ # uses: ruby/setup-ruby@v1
17
+ uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
18
+ with:
19
+ ruby-version: 3.0.0
20
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
21
+ - name: Setup Release Credentials
22
+ env:
23
+ RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
24
+ run: |
25
+ mkdir -p $HOME/.gem
26
+ touch $HOME/.gem/credentials
27
+ chmod 600 $HOME/.gem/credentials
28
+ echo "---" >$HOME/.gem/credentials
29
+ echo ":rubygems_api_key: ${RUBYGEMS_API_KEY}" >> $HOME/.gem/credentials
30
+ - name: Publish Gem
31
+ run: |
32
+ gem build *.gemspec
33
+ gem push *.gem
@@ -0,0 +1,31 @@
1
+ name: Test
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ tags:
9
+
10
+ pull_request:
11
+
12
+ jobs:
13
+ test:
14
+
15
+ runs-on: ubuntu-latest
16
+ strategy:
17
+ matrix:
18
+ ruby-version: ['2.6', '2.7', '3.0']
19
+
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - name: Set up Ruby
23
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
24
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
25
+ # uses: ruby/setup-ruby@v1
26
+ uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
27
+ with:
28
+ ruby-version: ${{ matrix.ruby-version }}
29
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
30
+ - name: Run tests
31
+ run: bundle exec rspec
data/README.md CHANGED
@@ -1,5 +1,5 @@
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)
2
+ [![Test](https://github.com/h3poteto/exception_notification-shoryuken/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/h3poteto/exception_notification-shoryuken/actions/workflows/test.yml)
3
3
  [![GitHub release](https://img.shields.io/github/release/h3poteto/exception_notification-shoryuken.svg)](https://github.com/h3poteto/exception_notification-shoryuken/releases)
4
4
  [![Gem](https://img.shields.io/gem/v/exception_notification-shoryuken.svg)](https://rubygems.org/gems/exception_notification-shoryuken)
5
5
  ![Gem](https://img.shields.io/gem/dt/exception_notification-shoryuken.svg)
@@ -20,7 +20,7 @@ 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", "<= 5.1"
23
+ spec.add_runtime_dependency 'shoryuken', ">= 4.0", "<= 5.3"
24
24
  spec.add_development_dependency "rake", "~> 13.0"
25
25
  spec.add_development_dependency "rspec", "~> 3.0"
26
26
  spec.add_development_dependency 'aws-sdk-sqs', "~> 1.13"
@@ -1,5 +1,5 @@
1
1
  module ExceptionNotification
2
2
  module Shoryuken
3
- VERSION = "1.0.1"
3
+ VERSION = "1.1.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: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - h3poteto
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-11-03 00:00:00.000000000 Z
11
+ date: 2021-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: exception_notification
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '4.0'
34
34
  - - "<="
35
35
  - !ruby/object:Gem::Version
36
- version: '5.1'
36
+ version: '5.3'
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '4.0'
44
44
  - - "<="
45
45
  - !ruby/object:Gem::Version
46
- version: '5.1'
46
+ version: '5.3'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: rake
49
49
  requirement: !ruby/object:Gem::Requirement
@@ -93,9 +93,10 @@ executables: []
93
93
  extensions: []
94
94
  extra_rdoc_files: []
95
95
  files:
96
+ - ".github/workflows/release.yml"
97
+ - ".github/workflows/test.yml"
96
98
  - ".gitignore"
97
99
  - ".rspec"
98
- - ".travis.yml"
99
100
  - CODE_OF_CONDUCT.md
100
101
  - Gemfile
101
102
  - LICENSE.txt
@@ -126,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
127
  - !ruby/object:Gem::Version
127
128
  version: '0'
128
129
  requirements: []
129
- rubygems_version: 3.0.3
130
+ rubygems_version: 3.2.3
130
131
  signing_key:
131
132
  specification_version: 4
132
133
  summary: exception_notification's plugin for shoryuken.
data/.travis.yml DELETED
@@ -1,9 +0,0 @@
1
- language: ruby
2
-
3
- rvm:
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