cmd-chatops-rpc 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
  SHA256:
3
- metadata.gz: 209d84bc7e36a9c28d598db9dfd9c936949e0f8306f22e6954cd4414137bd8d1
4
- data.tar.gz: 0b5343aaea800d7935468bbdfbf58bef3fc2b4f908ffa86a574d6445ce9f7516
3
+ metadata.gz: 927d5d5d62aa63ee0efd89609cd71d430b70b9740a2482ee3b5b202c99cb7d45
4
+ data.tar.gz: 8b0ae067fcbaf96c9fe48c78a9f983395d906e1b68b61f5fd708a920756057b8
5
5
  SHA512:
6
- metadata.gz: d3c968edd2d2cc7fde2df789d9688a562a73d15d5f2c9313734aec5b7ffbca46933dfaf67ce5e3c14a42ab235f5765ca4174daea2475407e882c608be3e96c1c
7
- data.tar.gz: 45fe307d8040faf1e23c572e6ea29d54a4689f98bfcd4afca03c59c984136d3da43bfc34c103a53ddaa1cdb70745a4cd8d227a8291855a9d34d2fc71e4a9e4f1
6
+ metadata.gz: 9e4db09eb6f6abfd840ce1650c8b3f49dc7ee9b4d982b04bb07f1a1d6f03cc1adf28338c67c30451eb3575795e18893e307a55060f958ba4970b3f833669bf89
7
+ data.tar.gz: 255ad3cc3b5393c7e95e4a4e39801c667f026ed1d1ac755ebbaf7033cc166d0cdfc87c648eb8feeb72494af56e9ab63e11f4939f2e53df30ef23bff0845c501a
@@ -53,7 +53,7 @@ loop do
53
53
  end
54
54
  command.chomp!
55
55
  begin
56
- resp = client.chat command, configuration["user"]
56
+ resp = client.chat command, configuration["user"], configuration["room"] || "123"
57
57
  rescue ChatopsRPC::Errors::NoMatchingCommandRegex => e
58
58
  possible_prefixes = client.clients.keys
59
59
  prefix = command.split(" ")[0]
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "cmd-chatops-rpc"
7
- spec.version = "0.0.1"
7
+ spec.version = "0.0.2"
8
8
  spec.authors = ["Brian Anglin"]
9
9
  spec.email = ["anglinb@github.com"]
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cmd-chatops-rpc
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
  - Brian Anglin