zillabyte-cli 0.1.28 → 0.1.29

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4eed98dbc207c58c7382ce2257361a0a254f6dad
4
- data.tar.gz: 92477528e3ffdf76fb905a66d23f778e3100de75
3
+ metadata.gz: 5235575359e55744ebc42c03b7f5f868100a3a5f
4
+ data.tar.gz: 07e187fcdc5c7711ccb0dbc65c3b3bceaa7a9063
5
5
  SHA512:
6
- metadata.gz: c26e643e27dbd775ecf6dac09c897e107a2f5680aced5cd688d82e6e87610ede565cbe8d88152566664401667824f275badf0afff56694f5da95bf0aa999213e
7
- data.tar.gz: 05f3deb732ef911c35380645f4724204c017100d88bd6823fd98e614afd5871de6fce565d03982d57d3d137df5449920e99a8058e8ffccdb621ebf2771f81f7b
6
+ metadata.gz: 7f70c1780f894248575b79a07d936f1032d551067582ba116965bb8ea081d82a03b43a9507aa9775fcc1d8fa4be8f0517411be5acd62de68743dc889ff3dba6b
7
+ data.tar.gz: d2f4ae5612bc30c6546e61ffec0fbc67c163a3247ec5d99c9e39cbfa1088f1e7c18d97943790965b61c7833481a312b265a4850a9660a10ec42f983d38b73d8b
@@ -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
- # --dir DIR # App directory
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
- # --dir DIR # App directory
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
- # --dir DIR # App directory
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
- # --dir DIR # App directory
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
- # --dir DIR # App directory
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
- # --dir DIR # App directory
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 component
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
- # --dir DIR # Component directory
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
- # --dir DIR # Component directory
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
- # --dir DIR # Component directory
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
- # --dir DIR # Component directory
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
- # --dir DIR # Component directory
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
- # --dir DIR # Component directory
193
+ # --directory DIR # Component directory
194
194
  #
195
195
  # Examples:
196
196
  #
@@ -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
- # --dir DIR # Flow directory
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
- # --dir DIR # Flow directory
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
- # --dir DIR # Flow directory
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
- # --dir DIR # Flow directory
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
- # --dir DIR # Flow directory
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
- # --dir DIR # Flow directory
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
@@ -1,5 +1,5 @@
1
1
  module Zillabyte
2
2
  module CLI
3
- VERSION = "0.1.28"
3
+ VERSION = "0.1.29"
4
4
  end
5
5
  end
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.28
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-07 00:00:00.000000000 Z
11
+ date: 2014-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake