slackit 1.1.2 → 1.1.3
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/CHANGELOG.md +8 -0
- data/exe/slackit +1 -1
- data/lib/slackit/version.rb +1 -1
- data/lib/slackit.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 294a5a40c92d77ad4aae1a9dbdcff4f9a5df0f13d8b915d8823cffe94a2ea5fd
|
|
4
|
+
data.tar.gz: 92a6614ca9d0ca0e46a2ffaae3c7e34bbe6b804cc58da96b52916d3df7dfaa18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b0c3b3ab1d589f55cadc940474a312e6e466f6bb647ebb69fc726e18b2307ff814c02fcec454e386a8572c32621b6ecb0ff6fe5e3fc72ee0a0ce2a51489b756
|
|
7
|
+
data.tar.gz: bdee9987c494cab0db27beab03ea318db5d5d073a33831e1671b9a82fea770e66f1c45046f41239ba6aa713ba3b22a875a72765e4b1eb27ffb936148529923e3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## 1.1.3 (February 6, 2019)
|
|
2
|
+
|
|
3
|
+
IMPROVEMENTS:
|
|
4
|
+
|
|
5
|
+
* Add support for sending a message using newline characters and updated the pipe functionality to also support passing in multiline files. ([@eimlav][])
|
|
6
|
+
|
|
7
|
+
the ability to pipe directly into the app instead of using -m.
|
|
8
|
+
|
|
1
9
|
## 1.1.2 (January 31, 2019)
|
|
2
10
|
|
|
3
11
|
IMPROVEMENTS:
|
data/exe/slackit
CHANGED
|
@@ -63,7 +63,7 @@ def process_arguments
|
|
|
63
63
|
|
|
64
64
|
begin
|
|
65
65
|
optparse.parse!
|
|
66
|
-
options[:message] =
|
|
66
|
+
options[:message] = ARGF.read if !STDIN.tty? # override message parameter if data is piped in
|
|
67
67
|
missing = mandatory.select { |param| options[param].nil? }
|
|
68
68
|
raise OptionParser::MissingArgument.new(missing.join(', ')) unless missing.empty?
|
|
69
69
|
rescue OptionParser::InvalidOption, OptionParser::MissingArgument => e
|
data/lib/slackit/version.rb
CHANGED
data/lib/slackit.rb
CHANGED
|
@@ -21,6 +21,7 @@ class Slackit
|
|
|
21
21
|
headers = { 'Content-Type' => 'application/json' }
|
|
22
22
|
|
|
23
23
|
# payload
|
|
24
|
+
text = text.gsub('\\n', "\n") # ensure newlines are not escaped
|
|
24
25
|
body = { 'text' => text, 'icon_emoji' => @icon_emoji, 'username' => @username }
|
|
25
26
|
|
|
26
27
|
# add the channel if there is one otherwise the default channel
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: slackit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Gurney aka Wolf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|