slack-cli-webhook 0.0.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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/bin/main +3 -0
  3. data/lib/slack-cli-webhook.rb +7 -0
  4. metadata +45 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b625875e1331fa0d57229702ce0922ed424eac7490152d62e80e70d1050eb476
4
+ data.tar.gz: e8f9fb9e21ec2da7a58c92d25993a5334f0aced9c34fbf2705f2d8d62c3a1b40
5
+ SHA512:
6
+ metadata.gz: f53157ec66b18ed0d6fc08588cdc103609faaf1bf72d5ca46098ab12fd88923e7d9827bb394a6205551ff876de0b18e8e5c44ce9c1fd74a2a3e8c2f8b3eb9717
7
+ data.tar.gz: 825353c4e21cd140a9b325ba8aee6c944ead57750d761bbd0fd33a93db16b8092edb3f2f53f6fc5dfb38e460d640d426acbb8e5acb1089f64253e17a4a38da02
data/bin/main ADDED
@@ -0,0 +1,3 @@
1
+ require 'slack-cli-webhook'
2
+
3
+ SlackCliWebhook.hello
@@ -0,0 +1,7 @@
1
+ class SlackCliWebhook
2
+
3
+ def self.hello
4
+ puts "Hello World!"
5
+ end
6
+
7
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: slack-cli-webhook
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Matthijs Roelink
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-02-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email: matthijs@roelink.eu
15
+ executables:
16
+ - main
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - bin/main
21
+ - lib/slack-cli-webhook.rb
22
+ homepage: https://github.com/Matthiti/slack-cli-webhook-ruby
23
+ licenses: []
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.7.6
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Gem for sending Slack messages using the command line using a webhook
45
+ test_files: []