slack_trello 0.8.2 → 0.8.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/lib/slack_trello/commands/standard_stuff.rb +1 -2
- data/lib/slack_trello/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 04251574157b0fb8f00883cdbb187b2ff86d8021
|
|
4
|
+
data.tar.gz: 85a05d1570fa6afec3b124e48cb1031f5587f2d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4028c337d077e00e5549ff531cb23331302fb97fb33632d232bd66e24fec191f19087cd0e4fc8cbe6c7d6a225871536b5f7a0ff29a44d9520b3e6fe65556d8c2
|
|
7
|
+
data.tar.gz: d306983f4179e934ce27cd20313e5e19a445e7fa1f95fe2bbb0572ce6c52b113afcb5026d4bbf24e93775633f14bc2d912734a49cdac385ab67ee5f571292767
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
module SlackTrello; module Commands; module StandardStuff
|
|
2
2
|
|
|
3
3
|
def list_not_found_message
|
|
4
|
-
"A Trello list named #{trello_list_name} must be added to the '#{trello_board_name}' board for the command to function."
|
|
4
|
+
"A Trello list named #{trello_list_name} must be added to the '#{trello_board_name}' board for the command to function. The Trello Bot user that is authenticated by your application must also be added to the board."
|
|
5
5
|
end
|
|
6
6
|
|
|
7
7
|
def help_message
|
|
@@ -24,6 +24,5 @@ Example: #{example_command}
|
|
|
24
24
|
":mega: [#{slack_post_response.user_name}] has created a new trello card: <#{trello_card.short_url}|#{slack_post_response.text.strip}>"
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
-
|
|
28
27
|
end; end; end
|
|
29
28
|
|
data/lib/slack_trello/version.rb
CHANGED