slack_messaging 2.1.0 → 2.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/README.md +5 -5
- data/lib/slack_messaging/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed1a41806773a2013660b33d83b26c0e66e674df00c67a5f669b2e891baf24c5
|
|
4
|
+
data.tar.gz: d57f53b3c1510be3be48b580667308bee30a7eae8500584fe7870e7ce5abc116
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09a09b96d5ead64faa64566187efc058491fbdf44b0ef1bce5f0eee20f8185f8e496333afa079b6e0956e9cab461c262017712a83daa29da238c89203a6efa9b'
|
|
7
|
+
data.tar.gz: 7d9cdd032f88b3aeafc365a1f9784f56bb750f6a285b405fb662cd5cc46e28ffad2bf43471a075a1301ca1c68bc78555c4aaea2ab8b8088e7e46fe4e93409cdd
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Slack Messaging [](https://codeclimate.com/github/emmahsax/slack_messaging/maintainability) [](https://github.com/emmahsax/slack_messaging/actions/workflows/main.yml)
|
|
2
2
|
|
|
3
3
|
This is a simple project designed to post messages to a given Slack channel as a bot.
|
|
4
4
|
|
|
@@ -66,7 +66,7 @@ slack-messaging slack "MESSAGE 1" "MESSAGE 2" "MESSAGE 3" ... "MESSAGE N"
|
|
|
66
66
|
|
|
67
67
|
The output of slack_messaging will look something like this:
|
|
68
68
|
|
|
69
|
-
<img src="https://github.com/
|
|
69
|
+
<img src="https://github.com/emmahsax/slack_messaging/blob/main/QuoteExample.png" width="500">
|
|
70
70
|
|
|
71
71
|
I hope you enjoy printing fun and specialized messages to Slack!
|
|
72
72
|
|
|
@@ -76,9 +76,9 @@ To run the tests, run `bundle exec rspec` from the command line. GitHub Actions
|
|
|
76
76
|
|
|
77
77
|
## Contributing
|
|
78
78
|
|
|
79
|
-
To submit a feature request, bug ticket, etc, please submit an official [GitHub Issue](https://github.com/
|
|
79
|
+
To submit a feature request, bug ticket, etc, please submit an official [GitHub Issue](https://github.com/emmahsax/slack_messaging/issues/new).
|
|
80
80
|
|
|
81
|
-
To report any security vulnerabilities, please view this project's [Security Policy](https://github.com/
|
|
81
|
+
To report any security vulnerabilities, please view this project's [Security Policy](https://github.com/emmahsax/slack_messaging/security/policy).
|
|
82
82
|
|
|
83
83
|
When interacting with this repository, please follow [Contributor Covenant's Code of Conduct](https://contributor-covenant.org).
|
|
84
84
|
|
|
@@ -88,7 +88,7 @@ To make a new release of this gem:
|
|
|
88
88
|
|
|
89
89
|
1. Merge the pull request via the big green button
|
|
90
90
|
2. Run `git tag vX.X.X` and `git push --tag`
|
|
91
|
-
3. Make a new release [here](https://github.com/
|
|
91
|
+
3. Make a new release [here](https://github.com/emmahsax/slack_messaging/releases/new)
|
|
92
92
|
4. Run `gem build *.gemspec`
|
|
93
93
|
5. Run `gem push *.gem` to push the new gem to RubyGems
|
|
94
94
|
6. Run `rm *.gem` to clean up your local repository
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: slack_messaging
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emma Sax
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-02-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -194,7 +194,6 @@ dependencies:
|
|
|
194
194
|
version: '3.9'
|
|
195
195
|
description: Sending Personalized Slack Messages to a Slack channel of your choice.
|
|
196
196
|
email:
|
|
197
|
-
- emma.sax4@gmail.com
|
|
198
197
|
executables:
|
|
199
198
|
- slack-messaging
|
|
200
199
|
extensions: []
|
|
@@ -218,7 +217,7 @@ files:
|
|
|
218
217
|
- spec/slack_messaging/notify_slack_spec.rb
|
|
219
218
|
- spec/slack_messaging/random_message_spec.rb
|
|
220
219
|
- spec/spec_helper.rb
|
|
221
|
-
homepage: https://github.com/
|
|
220
|
+
homepage: https://github.com/emmahsax/slack_messaging
|
|
222
221
|
licenses:
|
|
223
222
|
- MIT
|
|
224
223
|
metadata: {}
|