turbot 0.0.33 → 0.0.34
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 +8 -8
- data/lib/turbot/command/bots.rb +18 -0
- data/lib/turbot/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MzM5ZmQ3YjY1ODQxOTkxNTM4NjI3NDlkZWQ2ZTIyMTM4ZmM4NzY4Yg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZTRlNjljMjc5ZjUzZmVmYzkxZGVmOWVlOWQzOTBjMWFkMmEwMTliYg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZGI3ZjIwZmM2NTdiMjgxMjliYWFhNDg3NGQwNTk3YmFjZGI3YjQ1ZWVlMDBh
|
10
|
+
ODVmNzFlNjNhYzIzZjI4MGYwN2IzNjg3NDY4MTBkZDFhZWRhYTYxNWNiY2E1
|
11
|
+
M2Q2YzM2YWZmMjk3OTU1YTRmMDc3NGUwYzJmYTU2OGUyMzY2OTI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MDA0M2JiOTQxOTlhYWVjOGFhZDA5NzkyNDk2MGExZTE5Yzg3Mzk5NGRlNTcz
|
14
|
+
ODU5MGQ5NTU3OWEyNmYwMzdmNTg5MWFjZTYxOWE3ZjI1ZWE3Yjk3NDZiM2Fm
|
15
|
+
Njc0NGE2M2I5NWY4YzU4MjVkNWNkMjQzYzNjMmVkYWFkZTJhYmQ=
|
data/lib/turbot/command/bots.rb
CHANGED
@@ -326,6 +326,12 @@ class PreviewRunner < TurbotRunner::BaseRunner
|
|
326
326
|
puts
|
327
327
|
end
|
328
328
|
|
329
|
+
def handle_non_json_output(line)
|
330
|
+
puts "The following line was not valid JSON:"
|
331
|
+
puts line
|
332
|
+
interrupt
|
333
|
+
end
|
334
|
+
|
329
335
|
def handle_interrupted_run
|
330
336
|
result = submit_batch
|
331
337
|
puts "Run interrupted!"
|
@@ -364,6 +370,12 @@ class DumpRunner < TurbotRunner::BaseRunner
|
|
364
370
|
puts
|
365
371
|
end
|
366
372
|
|
373
|
+
def handle_non_json_output(line)
|
374
|
+
puts "The following line was not valid JSON:"
|
375
|
+
puts line
|
376
|
+
interrupt
|
377
|
+
end
|
378
|
+
|
367
379
|
def handle_failed_run
|
368
380
|
puts "Bot did not run to completion:"
|
369
381
|
end
|
@@ -388,6 +400,12 @@ class ValidationRunner < TurbotRunner::BaseRunner
|
|
388
400
|
interrupt
|
389
401
|
end
|
390
402
|
|
403
|
+
def handle_non_json_output(line)
|
404
|
+
puts "The following line was not valid JSON:"
|
405
|
+
puts line
|
406
|
+
interrupt
|
407
|
+
end
|
408
|
+
|
391
409
|
def handle_failed_run
|
392
410
|
puts "Bot did not run to completion:"
|
393
411
|
end
|
data/lib/turbot/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: turbot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.34
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Turbot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: netrc
|
@@ -114,14 +114,14 @@ dependencies:
|
|
114
114
|
requirements:
|
115
115
|
- - '='
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: 0.0.
|
117
|
+
version: 0.0.5
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - '='
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: 0.0.
|
124
|
+
version: 0.0.5
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: excon
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|