slack_bot-events 0.0.2 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +2 -2
- data/lib/slack_bot/events/version.rb +1 -1
- data/slack_bot-events.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 214337c85ccf72326faf95c1fca9b46bc46293d98e404bb3dc8856bec70534c3
|
4
|
+
data.tar.gz: 4fa855274d80b70ece04fad550fe949fbda80557b8629d2595f40f9d09c66b7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be57b63b5ce9a1aeea150b8944a38a764094be0970c9cddff0538877f70ba3723fa9dd869b4b5df916ea2474ab7fd05c56c89c2dc984a760d87039f8dc7dfe95
|
7
|
+
data.tar.gz: 58ac99258d980088a670194c496248edaad9e4cb2dcd1639278079a9108e983a8981c56419781d9db3ce468f0558f81e6a499b41cd8b0edecfa834bf618d039e
|
data/.circleci/config.yml
CHANGED
@@ -12,10 +12,10 @@ workflows:
|
|
12
12
|
- cst/enforce-gem-version-bump
|
13
13
|
- cst/rspec-ruby:
|
14
14
|
rspec-system-args: "SIMPLE_COV_RUN=true"
|
15
|
-
cc-report-collect-ruby: "3.2
|
15
|
+
cc-report-collect-ruby: "3.2"
|
16
16
|
matrix:
|
17
17
|
parameters:
|
18
|
-
ruby-version: ["3.
|
18
|
+
ruby-version: ["3.1" , "3.2", "3.3"]
|
19
19
|
alias: required-matrix-tests
|
20
20
|
name: test-ruby<< matrix.ruby-version >>
|
21
21
|
- cst/publish-gem:
|
data/slack_bot-events.gemspec
CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.description = "Describe the gem here"
|
20
20
|
spec.homepage = "https://github.com/matt-taylor/slack_bot-events"
|
21
21
|
|
22
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 3.
|
22
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 3.1")
|
23
23
|
|
24
24
|
spec.metadata = {
|
25
25
|
"github_repo" => spec.homepage,
|
metadata
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slack_bot-events
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Taylor
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
11
|
date: 2024-06-16 00:00:00.000000000 Z
|
@@ -150,7 +150,7 @@ metadata:
|
|
150
150
|
github_repo: https://github.com/matt-taylor/slack_bot-events
|
151
151
|
homepage_uri: https://github.com/matt-taylor/slack_bot-events
|
152
152
|
source_code_uri: https://github.com/matt-taylor/slack_bot-events
|
153
|
-
post_install_message:
|
153
|
+
post_install_message:
|
154
154
|
rdoc_options: []
|
155
155
|
require_paths:
|
156
156
|
- lib
|
@@ -158,15 +158,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
158
158
|
requirements:
|
159
159
|
- - ">="
|
160
160
|
- !ruby/object:Gem::Version
|
161
|
-
version: '3.
|
161
|
+
version: '3.1'
|
162
162
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
163
163
|
requirements:
|
164
164
|
- - ">="
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0'
|
167
167
|
requirements: []
|
168
|
-
rubygems_version: 3.5.
|
169
|
-
signing_key:
|
168
|
+
rubygems_version: 3.5.9
|
169
|
+
signing_key:
|
170
170
|
specification_version: 4
|
171
171
|
summary: Slack Events API is here! Receive events without making a public endpoint.
|
172
172
|
This Gem taps into the Events Websocket Architecture
|