slack_tsuribari 0.1.0 → 0.1.1
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 +4 -4
- data/.github/workflows/ruby.yml +5 -7
- data/CHANGELOG.md +6 -1
- data/README.md +3 -0
- data/lib/slack_tsuribari/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5b261a309303c48afa7c14814d0602e948ba5aba1255298563952c5f40f32dc
|
|
4
|
+
data.tar.gz: 8debbcdbe90a6d67ce2fdc44d2ab22a71b9b44e2d0d85784bb88194321f4ab88
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 247d6f796dc88ebdc2494a310f345e9c24d246d16d636e088d7136eaa15482686f1fe7313410c4858eb2f2bf0983ce784d112f35b1687ddd552294b54beebcfa
|
|
7
|
+
data.tar.gz: 85ed2be7cca5e0d41197f02120af74bf1645e847637c5764ab4b381a4f6290f7fc0543a638727235344989e874a3fc6faefdc23c8a6f9c14a8892e7465788277
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -3,21 +3,19 @@ name: gem test
|
|
|
3
3
|
on: [push, pull_request]
|
|
4
4
|
|
|
5
5
|
jobs:
|
|
6
|
-
|
|
7
|
-
build:
|
|
6
|
+
test:
|
|
8
7
|
runs-on: ubuntu-latest
|
|
9
8
|
strategy:
|
|
10
9
|
matrix:
|
|
11
|
-
ruby: [ '2.5.7', '2.6.5', '2.7.0' ]
|
|
10
|
+
ruby: [ '2.5.7', '2.6.5', '2.7.0', '2.5.8', '2.6.6', '2.7.1' ]
|
|
12
11
|
|
|
13
12
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
15
|
-
|
|
16
|
-
- name: Set up Ruby version
|
|
17
|
-
uses: actions/setup-ruby@master
|
|
13
|
+
- uses: actions/checkout@v2
|
|
14
|
+
- uses: ruby/setup-ruby@v1
|
|
18
15
|
with:
|
|
19
16
|
ruby-version: ${{ matrix.ruby }}
|
|
20
17
|
|
|
18
|
+
- run: ruby -v
|
|
21
19
|
- run: gem install bundler --no-document
|
|
22
20
|
- run: bundle install --jobs 4 --retry 3
|
|
23
21
|
- run: bundle exec rake spec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
# Change log
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## 0.1.1 / 2020-04-28
|
|
4
|
+
- [Specified the version of rubies ](https://github.com/nekomaho/slack-tsuribari/pull/3)
|
|
5
|
+
- [Use ruby/setup-ruby for CI ](https://github.com/nekomaho/slack-tsuribari/pull/2)
|
|
6
|
+
- [Add support versions to README](https://github.com/nekomaho/slack-tsuribari/pull/1)
|
|
7
|
+
|
|
8
|
+
## 0.1.0 / 2020-03-29
|
|
4
9
|
* first release
|
data/README.md
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: slack_tsuribari
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- nekomaho
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
124
124
|
- !ruby/object:Gem::Version
|
|
125
125
|
version: '0'
|
|
126
126
|
requirements: []
|
|
127
|
-
rubygems_version: 3.
|
|
127
|
+
rubygems_version: 3.0.3
|
|
128
128
|
signing_key:
|
|
129
129
|
specification_version: 4
|
|
130
130
|
summary: This gem can post messages to the channel using slack's incoming webhook.
|