zillabyte-cli 0.1.5 → 0.1.6
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/bin/zbd +5 -0
- data/lib/zillabyte/cli/apps.rb +1 -0
- data/lib/zillabyte/cli/auth.rb +2 -2
- data/lib/zillabyte/cli/components.rb +5 -4
- data/lib/zillabyte/cli/flows.rb +1 -1
- data/lib/zillabyte-cli/version.rb +1 -1
- data/zillabyte-cli.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
Nzg4MjUyOWI3MDVkZGMwZjUyNWI2YmUzOTIyMjMyYjRhZWFmMTA1MA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MGY3ODY4NTU3MzIyZmIxZDcxMmIzODY1MjYyZDgxNmE5N2IxYjk3Yg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NzQzZGRhNmYwOWFhMzVjM2RkODFhZjQ3NjNmYzNkNmIyY2JlZDg3Mjg5YTNh
|
10
|
+
YTRjZTgwODY0MjZiNDgxNzhjMjUzMDg5OWRiNmExYmZiNzU0MTM3MGFiOWMw
|
11
|
+
Nzc4YTU3NDJjZGY5ZDFkN2Q5MjBiNjM2ODY3YjE5OWUwNjc0NmU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MzQyMWNjYTViOTYwMjgzNjc4ZmY2M2U3ZTM1ZjM0NDgyYTI5M2EyMjcxMzQ1
|
14
|
+
MWVkNGZlMDM4ZmY2ZTVkZTJkOGVlNDM5ZDlmNzdhMDBjY2IzYjU2N2FjYmE0
|
15
|
+
ZjgzNzcxYzY2MTQzMTY2NjIwYzVkOTU0YTVlOThhZTNkY2ZiOTA=
|
data/bin/zbd
ADDED
data/lib/zillabyte/cli/apps.rb
CHANGED
@@ -360,6 +360,7 @@ class Zillabyte::Command::Apps < Zillabyte::Command::Flows
|
|
360
360
|
elsif trigger_forever
|
361
361
|
response = api.apps.run_forever(app_id, options)
|
362
362
|
else
|
363
|
+
require("date")
|
363
364
|
# List the apps
|
364
365
|
response = api.apps.list_cycles(app_id, options)
|
365
366
|
# TODO List the sequence number for this app.
|
data/lib/zillabyte/cli/auth.rb
CHANGED
@@ -1,6 +1,4 @@
|
|
1
1
|
require "zillabyte/cli/base"
|
2
|
-
require "optparse"
|
3
|
-
require "pp"
|
4
2
|
|
5
3
|
# manage zillabyte accounts
|
6
4
|
#
|
@@ -12,6 +10,7 @@ class Zillabyte::Command::Auth < Zillabyte::Command::Base
|
|
12
10
|
# Set the authentication token.
|
13
11
|
#
|
14
12
|
def login
|
13
|
+
require "zillabyte/auth"
|
15
14
|
Zillabyte::Auth.ask_for_and_save_credentials
|
16
15
|
end
|
17
16
|
|
@@ -22,6 +21,7 @@ class Zillabyte::Command::Auth < Zillabyte::Command::Base
|
|
22
21
|
# Clear the authentication token.
|
23
22
|
#
|
24
23
|
def logout
|
24
|
+
require "zillabyte/auth"
|
25
25
|
Zillabyte::Auth.logout
|
26
26
|
end
|
27
27
|
|
@@ -248,7 +248,7 @@ class Zillabyte::Command::Components < Zillabyte::Command::Flows
|
|
248
248
|
|
249
249
|
# Push the component...
|
250
250
|
session.display("packaging directory... ") if session && type.nil?
|
251
|
-
|
251
|
+
require("zillabyte/common/tar")
|
252
252
|
tar = Zillabyte::Common::Tar.tar(dir)
|
253
253
|
|
254
254
|
# Create the component
|
@@ -300,8 +300,8 @@ class Zillabyte::Command::Components < Zillabyte::Command::Flows
|
|
300
300
|
#
|
301
301
|
# Submits a single query to the rpc. The input parameters MUST be
|
302
302
|
# listed in the same order as that given in the component inputs.
|
303
|
-
# TO SUBMIT MULTIPLE queries, use the --
|
304
|
-
# csv file containing the queries without listing any inputs on
|
303
|
+
# TO SUBMIT MULTIPLE queries, use the --input_file switch to specify
|
304
|
+
# a csv file containing the queries without listing any inputs on
|
305
305
|
# the command line. Each line of the file should correspond to a
|
306
306
|
# unique query.
|
307
307
|
#
|
@@ -318,7 +318,8 @@ class Zillabyte::Command::Components < Zillabyte::Command::Flows
|
|
318
318
|
# $ zillabyte components:rpc 'web_screenshot' --file 'url_list.csv'
|
319
319
|
#
|
320
320
|
def rpc
|
321
|
-
|
321
|
+
require("csv")
|
322
|
+
|
322
323
|
component_id = options[:id] || shift_argument
|
323
324
|
async = options[:async] || false
|
324
325
|
|
data/lib/zillabyte/cli/flows.rb
CHANGED
@@ -223,7 +223,7 @@ class Zillabyte::Command::Flows < Zillabyte::Command::Base
|
|
223
223
|
headings = ["operation", "date", "error"]
|
224
224
|
rows = (res.body["recent_errors"] || []).map do |row|
|
225
225
|
if row['date']
|
226
|
-
d =
|
226
|
+
d = row['date']
|
227
227
|
else
|
228
228
|
d = nil
|
229
229
|
end
|
data/zillabyte-cli.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
|
|
15
15
|
|
16
16
|
if File.directory?(".git")
|
17
17
|
spec.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md zillabyte_emails.csv zillaconf.json Gemfile zillabyte-cli.gemspec)
|
18
|
-
spec.executables =
|
18
|
+
spec.executables = ["zillabyte", "zb"]
|
19
19
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
20
20
|
end
|
21
21
|
spec.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zillabyte-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- zillabyte
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -168,12 +168,13 @@ description: The Official Zillabyte CLI Gem
|
|
168
168
|
email:
|
169
169
|
- gem@zillabyte.com
|
170
170
|
executables:
|
171
|
-
- zb
|
172
171
|
- zillabyte
|
172
|
+
- zb
|
173
173
|
extensions: []
|
174
174
|
extra_rdoc_files: []
|
175
175
|
files:
|
176
176
|
- bin/zb
|
177
|
+
- bin/zbd
|
177
178
|
- bin/zillabyte
|
178
179
|
- lib/zillabyte/api/apps.rb
|
179
180
|
- lib/zillabyte/api/base.rb
|