zillabyte-cli 0.1.28 → 0.1.29
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/zillabyte/cli/apps.rb +6 -6
- data/lib/zillabyte/cli/components.rb +7 -7
- data/lib/zillabyte/cli/flows.rb +6 -6
- data/lib/zillabyte-cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5235575359e55744ebc42c03b7f5f868100a3a5f
|
4
|
+
data.tar.gz: 07e187fcdc5c7711ccb0dbc65c3b3bceaa7a9063
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f70c1780f894248575b79a07d936f1032d551067582ba116965bb8ea081d82a03b43a9507aa9775fcc1d8fa4be8f0517411be5acd62de68743dc889ff3dba6b
|
7
|
+
data.tar.gz: d2f4ae5612bc30c6546e61ffec0fbc67c163a3247ec5d99c9e39cbfa1088f1e7c18d97943790965b61c7833481a312b265a4850a9660a10ec42f983d38b73d8b
|
data/lib/zillabyte/cli/apps.rb
CHANGED
@@ -62,7 +62,7 @@ class Zillabyte::Command::Apps < Zillabyte::Command::Flows
|
|
62
62
|
# Uploads an app.
|
63
63
|
#
|
64
64
|
# --config CONFIG_FILE # Use the given config file
|
65
|
-
# --
|
65
|
+
# --directory DIR # App directory
|
66
66
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
67
67
|
#
|
68
68
|
# Examples:
|
@@ -79,7 +79,7 @@ class Zillabyte::Command::Apps < Zillabyte::Command::Flows
|
|
79
79
|
# Pulls an app source to a directory.
|
80
80
|
#
|
81
81
|
# --force # Pulls even if the directory exists
|
82
|
-
# --
|
82
|
+
# --directory DIR # App directory
|
83
83
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
84
84
|
#
|
85
85
|
# Examples:
|
@@ -107,7 +107,7 @@ class Zillabyte::Command::Apps < Zillabyte::Command::Flows
|
|
107
107
|
#
|
108
108
|
# Performs any necessary initialization for the app.
|
109
109
|
#
|
110
|
-
# --
|
110
|
+
# --directory DIR # App directory
|
111
111
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
112
112
|
# --mode MODE # Specify development or production mode for dependencies #HIDDEN
|
113
113
|
#
|
@@ -281,7 +281,7 @@ class Zillabyte::Command::Apps < Zillabyte::Command::Flows
|
|
281
281
|
# --config CONFIG_FILE # Use the given config file
|
282
282
|
# --output OUTPUT_FILE # Writes sink output to a file
|
283
283
|
# --cycles CYCLES # Number of cycles to emit [default: 1]
|
284
|
-
# --
|
284
|
+
# --directory DIR # App directory
|
285
285
|
# -i, --interactive # Interactively control input and read output
|
286
286
|
#
|
287
287
|
def test
|
@@ -306,7 +306,7 @@ class Zillabyte::Command::Apps < Zillabyte::Command::Flows
|
|
306
306
|
# Runs a local app with live data.
|
307
307
|
#
|
308
308
|
# --config CONFIG_FILE # Use the given config file
|
309
|
-
# --
|
309
|
+
# --directory DIR # App directory
|
310
310
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
311
311
|
#
|
312
312
|
# HIDDEN:
|
@@ -320,7 +320,7 @@ class Zillabyte::Command::Apps < Zillabyte::Command::Flows
|
|
320
320
|
# Outputs the info for the app in the dir.
|
321
321
|
#
|
322
322
|
# --pretty # Pretty prints the info output
|
323
|
-
# --
|
323
|
+
# --directory DIR # App directory
|
324
324
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
325
325
|
#
|
326
326
|
def info
|
@@ -20,7 +20,7 @@ class Zillabyte::Command::Components < Zillabyte::Command::Flows
|
|
20
20
|
# Initializes a new component.
|
21
21
|
#
|
22
22
|
# --lang LANG # Specify which language to use (ruby, python) [default: 'ruby']
|
23
|
-
# --dir DIR # Target directory of the
|
23
|
+
# --dir DIR # Target directory of the app
|
24
24
|
# --remote REMOTE # The git remote name [default: 'zillabyte']
|
25
25
|
#
|
26
26
|
# Examples:
|
@@ -98,7 +98,7 @@ class Zillabyte::Command::Components < Zillabyte::Command::Flows
|
|
98
98
|
# Pulls a component source to a directory.
|
99
99
|
#
|
100
100
|
# --force # Pulls even if the directory exists
|
101
|
-
# --
|
101
|
+
# --directory DIR # Component directory
|
102
102
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
103
103
|
#
|
104
104
|
# Examples:
|
@@ -127,7 +127,7 @@ class Zillabyte::Command::Components < Zillabyte::Command::Flows
|
|
127
127
|
# Outputs the info for the component in the dir.
|
128
128
|
#
|
129
129
|
# --pretty # Pretty prints the info output
|
130
|
-
# --
|
130
|
+
# --directory DIR # Component directory
|
131
131
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
132
132
|
#
|
133
133
|
def info
|
@@ -142,7 +142,7 @@ class Zillabyte::Command::Components < Zillabyte::Command::Flows
|
|
142
142
|
# --config CONFIG_FILE # Use the given config file
|
143
143
|
# --input INPUT_FILE # Uses a CSV for component input
|
144
144
|
# --output OUTPUT_FILE # Write output to a CSV
|
145
|
-
# --
|
145
|
+
# --directory DIR # Component directory
|
146
146
|
#
|
147
147
|
def test
|
148
148
|
super
|
@@ -152,7 +152,7 @@ class Zillabyte::Command::Components < Zillabyte::Command::Flows
|
|
152
152
|
#
|
153
153
|
# Performs any necessary initialization for the component.
|
154
154
|
#
|
155
|
-
# --
|
155
|
+
# --directory DIR # Component directory
|
156
156
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json HIDDEN
|
157
157
|
#
|
158
158
|
def prep
|
@@ -176,7 +176,7 @@ class Zillabyte::Command::Components < Zillabyte::Command::Flows
|
|
176
176
|
# Runs a local component with live data.
|
177
177
|
#
|
178
178
|
# --config CONFIG_FILE # Use the given config file
|
179
|
-
# --
|
179
|
+
# --directory DIR # Component directory
|
180
180
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json HIDDEN
|
181
181
|
#
|
182
182
|
# HIDDEN:
|
@@ -190,7 +190,7 @@ class Zillabyte::Command::Components < Zillabyte::Command::Flows
|
|
190
190
|
# Uploads a component.
|
191
191
|
#
|
192
192
|
# --config CONFIG_FILE # Use the given config file
|
193
|
-
# --
|
193
|
+
# --directory DIR # Component directory
|
194
194
|
#
|
195
195
|
# Examples:
|
196
196
|
#
|
data/lib/zillabyte/cli/flows.rb
CHANGED
@@ -12,7 +12,7 @@ class Zillabyte::Command::Flows < Zillabyte::Command::Base
|
|
12
12
|
# Pulls a flow source to a directory.
|
13
13
|
#
|
14
14
|
# --force # Pulls even if the directory exists
|
15
|
-
# --
|
15
|
+
# --directory DIR # Flow directory
|
16
16
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
17
17
|
#
|
18
18
|
# Examples:
|
@@ -60,7 +60,7 @@ class Zillabyte::Command::Flows < Zillabyte::Command::Base
|
|
60
60
|
# Uploads a flow.
|
61
61
|
#
|
62
62
|
# --config CONFIG_FILE # Use the given config file
|
63
|
-
# --
|
63
|
+
# --directory DIR # Flow directory
|
64
64
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
65
65
|
#
|
66
66
|
def push
|
@@ -116,7 +116,7 @@ class Zillabyte::Command::Flows < Zillabyte::Command::Base
|
|
116
116
|
#
|
117
117
|
# Performs any necessary initialization for the flow.
|
118
118
|
#
|
119
|
-
# --
|
119
|
+
# --directory DIR # Flow directory
|
120
120
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
121
121
|
# --mode MODE # Specify development or production mode for dependencies #HIDDEN
|
122
122
|
#
|
@@ -405,7 +405,7 @@ class Zillabyte::Command::Flows < Zillabyte::Command::Base
|
|
405
405
|
# Runs a local flow with live data.
|
406
406
|
#
|
407
407
|
# --config CONFIG_FILE # Use the given config file
|
408
|
-
# --
|
408
|
+
# --directory DIR # Flow directory
|
409
409
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
410
410
|
#
|
411
411
|
# HIDDEN:
|
@@ -442,7 +442,7 @@ class Zillabyte::Command::Flows < Zillabyte::Command::Base
|
|
442
442
|
# Outputs the info for the flow in the dir.
|
443
443
|
#
|
444
444
|
# --pretty # Pretty prints the info output
|
445
|
-
# --
|
445
|
+
# --directory DIR # Flow directory
|
446
446
|
# --output_type OUTPUT_TYPE # Specify an output type i.e. json #HIDDEN
|
447
447
|
#
|
448
448
|
def info
|
@@ -605,7 +605,7 @@ class Zillabyte::Command::Flows < Zillabyte::Command::Base
|
|
605
605
|
# --input INPUT_FILE # Uses a CSV for component input (only applicable for components)
|
606
606
|
# --output OUTPUT_FILE # Writes sink output to a file
|
607
607
|
# --cycles CYCLES # Number of cycles to emit [default 1] (only applicable for apps)
|
608
|
-
# --
|
608
|
+
# --directory DIR # Flow directory
|
609
609
|
# -i, --interactive # Interactively control input and read output (only applicable for apps)
|
610
610
|
#
|
611
611
|
def test
|
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.29
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- zillabyte
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|