ruboty-message_suffix 0.0.1 → 0.0.2

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
  SHA1:
3
- metadata.gz: 148e6675809c52215046a6c8b5763bf7bbaf9a5d
4
- data.tar.gz: edbb92a3bd31fa47e0a62242af2005a1fc133845
3
+ metadata.gz: 93198f533d9499a1da35c0371827cbade7c3f0e4
4
+ data.tar.gz: 0854fc5156f8a20f7356a19c6481425cd5971070
5
5
  SHA512:
6
- metadata.gz: a0613dac366950ccd37b0a85540c94cbc6f1c5908a07bd20e836c047ea2ee0fece6bc2e0e2ffe636d3816eb4abdc7f104a7f865f87994749b995a0034d933ae8
7
- data.tar.gz: 5e934e99ff8c881af32e7efbbd79a670c542aa5d031081efcf36adcf2a79b25ef3f1062a4f033e3930e8ac13f309d0c0408e0d242c98966c252977a433892478
6
+ metadata.gz: f68d996670ff09fafebba22f97105626aa320a0ff16b61b47bb44bf4f3991be99c21330c2d9ee0bcfb2b0100f05c1dccb402b5f3ecd3409f13cbc8485e1f3261
7
+ data.tar.gz: d092a557221e2b3ee8f95839c7f49e09ab241df366e700b47a63887fa02d34a52c2644953aa26508ed0d2da881f55ba2b4eae4b1224c7038cfa8dae3164cb1a5
data/README.md CHANGED
@@ -11,7 +11,7 @@ Grant any word to suffix of message.
11
11
  ## Usage
12
12
 
13
13
  ```bash
14
- export RUBOTY_MESSAGE_SUFFIX='どすぅ'
14
+ export RUBOT_MESSAGE_SUFFIX='どすぅ'
15
15
  bundle exec ruboty
16
16
  > ruboty ping
17
17
  pong どすぅ
@@ -1,5 +1,5 @@
1
1
  module Ruboty
2
2
  module MessageSuffix
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -3,9 +3,9 @@ require "ruboty/message_suffix/version"
3
3
 
4
4
  module ExtensionMessage
5
5
  def message_suffix_reply(body, options = {})
6
- raise "Please set the value to the ENV variable 'RUBOTY_MESSAGE_SUFFIX'" unless ENV.has_key?("RUBOTY_MESSAGE_SUFFIX")
6
+ raise "Please set the value to the ENV variable 'RUBOT_MESSAGE_SUFFIX'" unless ENV.has_key?("RUBOT_MESSAGE_SUFFIX")
7
7
 
8
- attributes = { body: body << " " << ENV["RUBOTY_MESSAGE_SUFFIX"], from: to, to: from, original: original }.merge(options)
8
+ attributes = { body: body << " " << ENV["RUBOT_MESSAGE_SUFFIX"], from: to, to: from, original: original }.merge(options)
9
9
  robot.say(attributes)
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruboty-message_suffix
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fukui ReTu