turbot 0.0.17 → 0.0.18
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/turbot/command/bots.rb +1 -3
- data/lib/turbot/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
Yjc5ZTg2YTU2MTA5NmFlZWY2NmU1OTQwZmFkOTYzODk2ZmQxYjE5MA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZDM0MTA2MDE3OTA0ZTBhMmZhM2YyZGIzZDRmOTkyNmEyOWMzZjY5ZA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZmNmNzg4OTQxYTM5Y2M4ZjQ3M2FjZWQxMDEyNzRkODA2MDQzZWI2NGI0MWMx
|
10
|
+
N2FkYzlkNDNjMjkyNjRmZmQ2NWQ2MmIwNzE4NGJmMjRkN2FiM2RhZWI2MWY5
|
11
|
+
YjE0ODExOGNlZTUzZDMxNjdkYmMwZDk1NzdjZTVlMWExMTUxZGM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OGY1NzM3ZDkzODI5MTFiY2M5OThiNDQ5OTg0NDljN2Y0OWNhNDE0OWJlYmQ0
|
14
|
+
YzYxMmI1YmM0NTc5NTliYzlmODhiOTMxYjM3MzdkYWUwZjM1YTc3OTBhYzk5
|
15
|
+
MDJkMzBiZjkwZDZjYjg5ZTkyNTg3NDA1NzU3ZGEyYWIxMjc2YTM=
|
data/lib/turbot/command/bots.rb
CHANGED
@@ -117,9 +117,7 @@ class Turbot::Command::Bots < Turbot::Command::Base
|
|
117
117
|
open("#{bot}/manifest.json", "w") do |f|
|
118
118
|
f.write(JSON.pretty_generate(JSON.parse(manifest)))
|
119
119
|
end
|
120
|
-
|
121
|
-
api.create_bot(bot, manifest)
|
122
|
-
|
120
|
+
api.create_bot(bot, JSON.parse(manifest))
|
123
121
|
puts "Created new bot template at #{bot}!"
|
124
122
|
end
|
125
123
|
|
data/lib/turbot/version.rb
CHANGED