slack_tsuribari 0.1.0 → 0.1.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: 27b61f76c23e7c65fae3944fd22612fe4638bd770c6d64240c12a2754248cbd1
4
- data.tar.gz: adbcafd65c338a0478387008cdb8f0e4af7839657034236a610a02d1ed843c28
3
+ metadata.gz: c5b261a309303c48afa7c14814d0602e948ba5aba1255298563952c5f40f32dc
4
+ data.tar.gz: 8debbcdbe90a6d67ce2fdc44d2ab22a71b9b44e2d0d85784bb88194321f4ab88
5
5
  SHA512:
6
- metadata.gz: fa659bd30956fb58fbf26eb8e1f9bfd95c5ea114e1a15ba5f05e47d98bf11fa84833e5fe3e9734621c3d2ff451144ab4a13de51526a7871e580a9b05c52cdfd2
7
- data.tar.gz: 96dc2d0b186cd2a1554f9f0ad6175f6949658ed420d05ef98eb15faab736a6d8aae85f5552ea37c40ff92ee061769d0b3727f551adb8e22ad47c9391910f67b8
6
+ metadata.gz: 247d6f796dc88ebdc2494a310f345e9c24d246d16d636e088d7136eaa15482686f1fe7313410c4858eb2f2bf0983ce784d112f35b1687ddd552294b54beebcfa
7
+ data.tar.gz: 85ed2be7cca5e0d41197f02120af74bf1645e847637c5764ab4b381a4f6290f7fc0543a638727235344989e874a3fc6faefdc23c8a6f9c14a8892e7465788277
@@ -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@v1
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
- ### 0.1.0 / 2020-03-29
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
@@ -17,6 +17,9 @@ Or install it yourself as:
17
17
 
18
18
  $ gem install slack_tsuribari
19
19
 
20
+ ## Supported versions
21
+ * Ruby 2.5.7+, 2.6.5+, 2.7.0+
22
+
20
23
  ## Usage
21
24
  To post a message to a slack an easy way, create a hook object and send data with Angler.easy_throw!.
22
25
  ```ruby
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SlackTsuribari
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
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.0
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-03-28 00:00:00.000000000 Z
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.1.2
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.