slack_messaging 3.1.3 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +114 -0
- data/Guardfile +1 -1
- data/LICENSE.md +24 -6
- data/README.md +3 -1
- data/lib/slack_messaging/version.rb +1 -1
- metadata +6 -46
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8dca88b2aa6f5f3f6c6d00b959fc61757cb09585125c57f9e8b97196fecb90aa
|
4
|
+
data.tar.gz: a2209e3efd4abdb1a68cbfe284d1d3c037ff2132bc4c3b022625e3d232ab826b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '099fcbf29e6141abfb0e0d7616c8257764994ca916110db53b1f94ed9253222e62bdf2b5c67b787910c16781d206cc2ce81abd7e35e3b7d98c89c8e803ac719f'
|
7
|
+
data.tar.gz: 7582a545af09cf57b4c03297e56675b13bba4f76e0f2e6de204e9e8a28173347af941c87e7902c721c8bf2e16e1de1f54cd705e832bbff16ff4f450e03e1da9a
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
slack_messaging (3.2.0)
|
5
|
+
gli (~> 2.10)
|
6
|
+
hashie (~> 4.1)
|
7
|
+
highline_wrapper (~> 1.1)
|
8
|
+
httparty (~> 0.18)
|
9
|
+
json (~> 2.5)
|
10
|
+
|
11
|
+
GEM
|
12
|
+
remote: https://rubygems.org/
|
13
|
+
specs:
|
14
|
+
ast (2.4.2)
|
15
|
+
coderay (1.1.3)
|
16
|
+
concurrent-ruby (1.1.9)
|
17
|
+
diff-lcs (1.4.4)
|
18
|
+
faker (2.18.0)
|
19
|
+
i18n (>= 1.6, < 2)
|
20
|
+
ffi (1.15.3)
|
21
|
+
formatador (0.3.0)
|
22
|
+
gli (2.20.1)
|
23
|
+
guard (2.17.0)
|
24
|
+
formatador (>= 0.2.4)
|
25
|
+
listen (>= 2.7, < 4.0)
|
26
|
+
lumberjack (>= 1.0.12, < 2.0)
|
27
|
+
nenv (~> 0.1)
|
28
|
+
notiffany (~> 0.0)
|
29
|
+
pry (>= 0.9.12)
|
30
|
+
shellany (~> 0.0)
|
31
|
+
thor (>= 0.18.1)
|
32
|
+
guard-compat (1.2.1)
|
33
|
+
guard-rspec (4.7.3)
|
34
|
+
guard (~> 2.1)
|
35
|
+
guard-compat (~> 1.1)
|
36
|
+
rspec (>= 2.99.0, < 4.0)
|
37
|
+
hashie (4.1.0)
|
38
|
+
highline (2.0.3)
|
39
|
+
highline_wrapper (1.3.0)
|
40
|
+
highline (~> 2.0)
|
41
|
+
httparty (0.18.1)
|
42
|
+
mime-types (~> 3.0)
|
43
|
+
multi_xml (>= 0.5.2)
|
44
|
+
i18n (1.8.10)
|
45
|
+
concurrent-ruby (~> 1.0)
|
46
|
+
json (2.5.1)
|
47
|
+
listen (3.5.1)
|
48
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
49
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
50
|
+
lumberjack (1.2.8)
|
51
|
+
method_source (1.0.0)
|
52
|
+
mime-types (3.3.1)
|
53
|
+
mime-types-data (~> 3.2015)
|
54
|
+
mime-types-data (3.2021.0704)
|
55
|
+
multi_xml (0.6.0)
|
56
|
+
nenv (0.3.0)
|
57
|
+
notiffany (0.1.3)
|
58
|
+
nenv (~> 0.1)
|
59
|
+
shellany (~> 0.0)
|
60
|
+
parallel (1.20.1)
|
61
|
+
parser (3.0.1.1)
|
62
|
+
ast (~> 2.4.1)
|
63
|
+
pry (0.14.1)
|
64
|
+
coderay (~> 1.1)
|
65
|
+
method_source (~> 1.0)
|
66
|
+
rainbow (3.0.0)
|
67
|
+
rb-fsevent (0.11.0)
|
68
|
+
rb-inotify (0.10.1)
|
69
|
+
ffi (~> 1.0)
|
70
|
+
regexp_parser (2.1.1)
|
71
|
+
rexml (3.2.5)
|
72
|
+
rspec (3.10.0)
|
73
|
+
rspec-core (~> 3.10.0)
|
74
|
+
rspec-expectations (~> 3.10.0)
|
75
|
+
rspec-mocks (~> 3.10.0)
|
76
|
+
rspec-core (3.10.1)
|
77
|
+
rspec-support (~> 3.10.0)
|
78
|
+
rspec-expectations (3.10.1)
|
79
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
80
|
+
rspec-support (~> 3.10.0)
|
81
|
+
rspec-mocks (3.10.2)
|
82
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
83
|
+
rspec-support (~> 3.10.0)
|
84
|
+
rspec-support (3.10.2)
|
85
|
+
rubocop (1.18.2)
|
86
|
+
parallel (~> 1.10)
|
87
|
+
parser (>= 3.0.0.0)
|
88
|
+
rainbow (>= 2.2.2, < 4.0)
|
89
|
+
regexp_parser (>= 1.8, < 3.0)
|
90
|
+
rexml
|
91
|
+
rubocop-ast (>= 1.7.0, < 2.0)
|
92
|
+
ruby-progressbar (~> 1.7)
|
93
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
94
|
+
rubocop-ast (1.7.0)
|
95
|
+
parser (>= 3.0.1.1)
|
96
|
+
ruby-progressbar (1.11.0)
|
97
|
+
shellany (0.0.1)
|
98
|
+
thor (1.1.0)
|
99
|
+
unicode-display_width (2.0.0)
|
100
|
+
|
101
|
+
PLATFORMS
|
102
|
+
x86_64-darwin-19
|
103
|
+
|
104
|
+
DEPENDENCIES
|
105
|
+
bundler (~> 2.2)
|
106
|
+
faker (~> 2.15)
|
107
|
+
guard-rspec (~> 4.3)
|
108
|
+
pry (~> 0.13)
|
109
|
+
rspec (~> 3.9)
|
110
|
+
rubocop (~> 1.10)
|
111
|
+
slack_messaging!
|
112
|
+
|
113
|
+
BUNDLED WITH
|
114
|
+
2.2.21
|
data/Guardfile
CHANGED
data/LICENSE.md
CHANGED
@@ -1,11 +1,29 @@
|
|
1
|
-
|
1
|
+
BSD 3-Clause "New" or "Revised" License
|
2
2
|
|
3
|
-
|
3
|
+
Copyright (c) 2014 Emma Sax.
|
4
|
+
All rights reserved.
|
4
5
|
|
5
|
-
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
6
8
|
|
7
|
-
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
10
|
+
list of conditions, and the following disclaimer.
|
8
11
|
|
9
|
-
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
13
|
+
this list of conditions, and the following disclaimer in the documentation
|
14
|
+
and/or other materials provided with the distribution.
|
10
15
|
|
11
|
-
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
17
|
+
contributors may be used to endorse or promote products derived from
|
18
|
+
this software without specific prior written permission.
|
19
|
+
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
29
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.md
CHANGED
@@ -92,7 +92,9 @@ To run the tests, run `bundle exec rspec` from the command-line. GitHub Actions
|
|
92
92
|
|
93
93
|
### Contributing
|
94
94
|
|
95
|
-
To submit a feature request, bug ticket, etc, please submit an official [GitHub
|
95
|
+
To submit a feature request, bug ticket, etc, please submit an official [GitHub issue](https://github.com/emmahsax/slack_messaging/issues/new). To copy or make changes, please [fork this repository](https://github.com/emmahsax/slack_messaging/fork). When/if you'd like to contribute back to this upstream, please create a pull request on this repository.
|
96
|
+
|
97
|
+
Please follow included Issue Template(s) and Pull Request Template(s) when creating issues or pull requests.
|
96
98
|
|
97
99
|
### Security Policy
|
98
100
|
|
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slack_messaging
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
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-06
|
11
|
+
date: 2021-07-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: activesupport
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '6.0'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '6.0'
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: gli
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,20 +80,6 @@ dependencies:
|
|
94
80
|
- - "~>"
|
95
81
|
- !ruby/object:Gem::Version
|
96
82
|
version: '2.5'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: rack
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - "~>"
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '2.2'
|
104
|
-
type: :runtime
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - "~>"
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '2.2'
|
111
83
|
- !ruby/object:Gem::Dependency
|
112
84
|
name: bundler
|
113
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -164,20 +136,6 @@ dependencies:
|
|
164
136
|
- - "~>"
|
165
137
|
- !ruby/object:Gem::Version
|
166
138
|
version: '0.13'
|
167
|
-
- !ruby/object:Gem::Dependency
|
168
|
-
name: rake
|
169
|
-
requirement: !ruby/object:Gem::Requirement
|
170
|
-
requirements:
|
171
|
-
- - "~>"
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: '13.0'
|
174
|
-
type: :development
|
175
|
-
prerelease: false
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
177
|
-
requirements:
|
178
|
-
- - "~>"
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
version: '13.0'
|
181
139
|
- !ruby/object:Gem::Dependency
|
182
140
|
name: rspec
|
183
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -206,7 +164,8 @@ dependencies:
|
|
206
164
|
- - "~>"
|
207
165
|
- !ruby/object:Gem::Version
|
208
166
|
version: '1.10'
|
209
|
-
description: Sending
|
167
|
+
description: Sending personalized messages and quotes to a Slack channel of your choice
|
168
|
+
via the command-line.
|
210
169
|
email:
|
211
170
|
executables:
|
212
171
|
- slack-messaging
|
@@ -214,6 +173,7 @@ extensions: []
|
|
214
173
|
extra_rdoc_files: []
|
215
174
|
files:
|
216
175
|
- Gemfile
|
176
|
+
- Gemfile.lock
|
217
177
|
- Guardfile
|
218
178
|
- LICENSE.md
|
219
179
|
- QuoteExample.png
|
@@ -255,7 +215,7 @@ requirements: []
|
|
255
215
|
rubygems_version: 3.2.15
|
256
216
|
signing_key:
|
257
217
|
specification_version: 4
|
258
|
-
summary: Personalized Slack
|
218
|
+
summary: Personalized quotes and messages sent straight to Slack
|
259
219
|
test_files:
|
260
220
|
- spec/spec_helper.rb
|
261
221
|
- spec/slack_messaging/config_spec.rb
|