slkecho 1.3.0 → 1.4.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '06487abc9f5c53432e2d6e93f0db427338c44d34c51e766b4bb9aa4b45c20e07'
4
- data.tar.gz: f6e04c8fd4433d136d5d8262862d213a3aa8a1181d7fc03c8744cd20fe9b34cf
3
+ metadata.gz: 60840e25954d5f27219da1751cc8afd0659d8fad0011d9801f392d73eff0fbdd
4
+ data.tar.gz: 01146cb293d39c8e1d7b01ff6748dbca25c3f6a35316b24ec5ef2ddb951d5f62
5
5
  SHA512:
6
- metadata.gz: 96d474087c4760de85be2bd90a6d3f144a24505396b7a6a5eaedc357fd1f010ec4164234202d620ccd3f5f30d75be3f4d69c8a907df578950919f1fa2f48d386
7
- data.tar.gz: 8a27c49d64315fa4652c12a1736a350c3a31e68c305309ef6e4d4ebec8cdb6edf343dd32a75af5ae6e63fac6ef76d528a44bd5549fa83d310a62c21486c1cb1f
6
+ metadata.gz: 6a61dc7880593a6cd2f4b53be89f5db6ec22431d086640e770092925751e6cb049f4fe852e061cc8524e69ee99c765134de4a178b31a343cb922aa6d5fcb9be1
7
+ data.tar.gz: fc30c5af4a5fca0defd1a3e87651ff4389e1a19767a5ab16915864d95341caa47abaa34a28d3afdfceb113fcc44f8767e24978565b9859934a41c2040b0221c1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [v1.4.0] - 2024-01-09
4
+
5
+ - feat: Add --icon-emoji option
6
+
3
7
  ## [v1.3.0] - 2024-01-08
4
8
 
5
9
  - chore: Improved description of username option
data/README.md CHANGED
@@ -50,6 +50,10 @@ Specify mention to post message. user email or user id (starts `U`).
50
50
 
51
51
  Specify the username for the published message.
52
52
 
53
+ #### --icon-emoji <emoji> (optional)
54
+
55
+ Specify an emoji for the speaker's icon. e.g.) `:smile:`
56
+
53
57
  ## Contributing
54
58
 
55
59
  Bug reports and pull requests are welcome on GitHub at https://github.com/okonomi/slkecho.
data/lib/slkecho/cli.rb CHANGED
@@ -36,7 +36,8 @@ module Slkecho
36
36
  subject: options.subject,
37
37
  user_id: user_id,
38
38
  username: options.username,
39
- icon_url: options.icon_url
39
+ icon_url: options.icon_url,
40
+ icon_emoji: options.icon_emoji
40
41
  )
41
42
  end
42
43
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Slkecho
4
4
  class OptionParser
5
- def option_parser # rubocop:disable Metrics/AbcSize
5
+ def option_parser # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
6
6
  @option_parser ||= ::OptionParser.new do |o|
7
7
  o.banner = "Usage: slkecho [options] message"
8
8
  o.program_name = "slkecho"
@@ -12,6 +12,7 @@ module Slkecho
12
12
  o.on("-m", "--mention EMAIL", "Mention to user by email") { @options.mention = _1 }
13
13
  o.on("--username USERNAME", "Set your bot's user name") { @options.username = _1 }
14
14
  o.on("--icon-url ICON_URL", "URL to an image to use as the icon for this message") { @options.icon_url = _1 }
15
+ o.on("--icon-emoji ICON_EMOJI", "Emoji to use as the icon for this message") { @options.icon_emoji = _1 }
15
16
  end
16
17
  end
17
18
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Slkecho
4
4
  class Options
5
- attr_accessor :channel, :subject, :mention, :message, :username, :icon_url
5
+ attr_accessor :channel, :subject, :mention, :message, :username, :icon_url, :icon_emoji
6
6
  end
7
7
  end
@@ -3,7 +3,7 @@
3
3
  module Slkecho
4
4
  module SlackRequest
5
5
  class PostMessage
6
- Params = Struct.new(:channel, :message, :subject, :user_id, :username, :icon_url, keyword_init: true)
6
+ Params = Struct.new(:channel, :message, :subject, :user_id, :username, :icon_url, :icon_emoji, keyword_init: true)
7
7
 
8
8
  def initialize(slack_api_token:)
9
9
  @slack_api_token = slack_api_token
@@ -36,7 +36,8 @@ module Slkecho
36
36
  "channel" => params.channel,
37
37
  "blocks" => [],
38
38
  "username" => params.username,
39
- "icon_url" => params.icon_url
39
+ "icon_url" => params.icon_url,
40
+ "icon_emoji" => params.icon_emoji
40
41
  }
41
42
  body["blocks"] << header_block(params.subject) unless params.subject.nil?
42
43
  body["blocks"] << section_block(params.message, user_id: params.user_id)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Slkecho
4
- VERSION = "1.3.0"
4
+ VERSION = "1.4.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slkecho
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - okonomi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-08 00:00:00.000000000 Z
11
+ date: 2024-01-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Post message to Slack like echo command.
14
14
  email: