rhc 1.6.8 → 1.7.8

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.
Files changed (85) hide show
  1. data/autocomplete/rhc_bash +1167 -0
  2. data/features/README.md +1 -1
  3. data/features/domain.feature +1 -1
  4. data/features/lib/rhc_helper/persistable.rb +4 -1
  5. data/features/multiple_cartridge.feature +4 -3
  6. data/features/sshkey.feature +3 -3
  7. data/features/support/assumptions.rb +3 -3
  8. data/features/support/env.rb +10 -0
  9. data/features/support/platform_support.rb +2 -2
  10. data/lib/rhc.rb +6 -0
  11. data/lib/rhc/auth/token.rb +4 -0
  12. data/lib/rhc/autocomplete.rb +50 -52
  13. data/lib/rhc/autocomplete_templates/{rhc.erb → bash.erb} +8 -2
  14. data/lib/rhc/cartridge_helpers.rb +1 -1
  15. data/lib/rhc/cli.rb +1 -7
  16. data/lib/rhc/command_runner.rb +45 -16
  17. data/lib/rhc/commands.rb +75 -55
  18. data/lib/rhc/commands/account.rb +7 -51
  19. data/lib/rhc/commands/alias.rb +26 -17
  20. data/lib/rhc/commands/app.rb +75 -39
  21. data/lib/rhc/commands/authorization.rb +4 -2
  22. data/lib/rhc/commands/base.rb +31 -29
  23. data/lib/rhc/commands/cartridge.rb +66 -44
  24. data/lib/rhc/commands/domain.rb +20 -8
  25. data/lib/rhc/commands/git_clone.rb +3 -3
  26. data/lib/rhc/commands/logout.rb +51 -0
  27. data/lib/rhc/commands/port_forward.rb +15 -11
  28. data/lib/rhc/commands/setup.rb +25 -0
  29. data/lib/rhc/commands/snapshot.rb +20 -10
  30. data/lib/rhc/commands/sshkey.rb +21 -7
  31. data/lib/rhc/commands/tail.rb +2 -2
  32. data/lib/rhc/commands/threaddump.rb +2 -2
  33. data/lib/rhc/context_helper.rb +0 -4
  34. data/lib/rhc/core_ext.rb +96 -76
  35. data/lib/rhc/exceptions.rb +6 -0
  36. data/lib/rhc/help_formatter.rb +19 -2
  37. data/lib/rhc/helpers.rb +32 -194
  38. data/lib/rhc/highline_extensions.rb +412 -0
  39. data/lib/rhc/output_helpers.rb +31 -67
  40. data/lib/rhc/rest.rb +4 -2
  41. data/lib/rhc/rest/alias.rb +0 -2
  42. data/lib/rhc/rest/application.rb +9 -4
  43. data/lib/rhc/rest/authorization.rb +0 -2
  44. data/lib/rhc/rest/base.rb +1 -1
  45. data/lib/rhc/rest/client.rb +11 -9
  46. data/lib/rhc/rest/domain.rb +5 -1
  47. data/lib/rhc/rest/gear_group.rb +0 -2
  48. data/lib/rhc/rest/key.rb +0 -2
  49. data/lib/rhc/rest/mock.rb +32 -10
  50. data/lib/rhc/ssh_helpers.rb +2 -2
  51. data/lib/rhc/usage_templates/command_help.erb +20 -13
  52. data/lib/rhc/usage_templates/command_syntax_help.erb +1 -3
  53. data/lib/rhc/usage_templates/help.erb +15 -16
  54. data/lib/rhc/usage_templates/options_help.erb +7 -9
  55. data/lib/rhc/wizard.rb +193 -159
  56. data/spec/rest_spec_helper.rb +2 -2
  57. data/spec/rhc/cli_spec.rb +36 -5
  58. data/spec/rhc/command_spec.rb +94 -42
  59. data/spec/rhc/commands/account_spec.rb +1 -75
  60. data/spec/rhc/commands/alias_spec.rb +28 -28
  61. data/spec/rhc/commands/app_spec.rb +141 -33
  62. data/spec/rhc/commands/apps_spec.rb +4 -4
  63. data/spec/rhc/commands/authorization_spec.rb +8 -8
  64. data/spec/rhc/commands/cartridge_spec.rb +18 -9
  65. data/spec/rhc/commands/domain_spec.rb +16 -16
  66. data/spec/rhc/commands/git_clone_spec.rb +3 -3
  67. data/spec/rhc/commands/logout_spec.rb +86 -0
  68. data/spec/rhc/commands/port_forward_spec.rb +9 -9
  69. data/spec/rhc/commands/server_spec.rb +5 -5
  70. data/spec/rhc/commands/setup_spec.rb +19 -5
  71. data/spec/rhc/commands/snapshot_spec.rb +12 -12
  72. data/spec/rhc/commands/sshkey_spec.rb +11 -11
  73. data/spec/rhc/commands/tail_spec.rb +5 -5
  74. data/spec/rhc/commands/threaddump_spec.rb +3 -3
  75. data/spec/rhc/config_spec.rb +6 -6
  76. data/spec/rhc/helpers_spec.rb +72 -219
  77. data/spec/rhc/highline_extensions_spec.rb +269 -0
  78. data/spec/rhc/rest_application_spec.rb +28 -1
  79. data/spec/rhc/rest_client_spec.rb +20 -21
  80. data/spec/rhc/rest_spec.rb +10 -0
  81. data/spec/rhc/wizard_spec.rb +72 -32
  82. data/spec/spec_helper.rb +86 -56
  83. data/spec/wizard_spec_helper.rb +7 -4
  84. metadata +165 -160
  85. data/spec/spec.opts +0 -1
@@ -64,8 +64,8 @@ module WizardStepsHelper
64
64
 
65
65
  last_output do |s|
66
66
  s.should match('Since you do not have any keys associated')
67
- s.should match(/Fingerprint\: (?:[a-f0-9]{2}\:){15}/)
68
- s.should match("Uploading key 'default' from #{current_ssh_dir}/id_rsa.pub ... ")
67
+ #s.should match(/Fingerprint\: (?:[a-f0-9]{2}\:){15}/)
68
+ s.should match("Uploading key 'default' ... ")
69
69
  end
70
70
  end
71
71
 
@@ -130,7 +130,7 @@ module WizardStepsHelper
130
130
 
131
131
  next_stage.should_not be_nil
132
132
  last_output do |s|
133
- s.should match(/Checking common problems \.+.+?done/)
133
+ s.should match(/Checking common problems \.+.+? done/)
134
134
  end
135
135
  end
136
136
 
@@ -161,6 +161,7 @@ module WizardStepsHelper
161
161
  s.should match(/Checking your namespace .*none/)
162
162
  s.should match(/(?:Too long.*?){2}/m)
163
163
  end
164
+ subject.send(:options).__hash__[:namespace].should == 'testnamespace'
164
165
  end
165
166
 
166
167
  def should_skip_creating_namespace
@@ -173,12 +174,14 @@ module WizardStepsHelper
173
174
  s.should match("You will not be able to create applications without first creating a namespace")
174
175
  s.should match("You may create a namespace later through 'rhc domain create'")
175
176
  end
177
+ subject.send(:options).__hash__[:namespace].should be_nil
176
178
  end
177
179
 
178
180
  def should_find_a_namespace(namespace)
179
181
  next_stage.should_not be_nil
180
182
 
181
183
  last_output.should match(/Checking your namespace .*#{namespace}/)
184
+ subject.send(:options).__hash__[:namespace].should be_nil
182
185
  end
183
186
 
184
187
  def should_list_types_of_apps_to_create
@@ -321,7 +324,7 @@ EOF
321
324
  end
322
325
  end
323
326
 
324
- Spec::Runner.configure do |config|
327
+ RSpec.configure do |config|
325
328
  config.include(WizardHelper)
326
329
  config.include(WizardStepsHelper)
327
330
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rhc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.8
4
+ version: 1.7.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-02 00:00:00.000000000 Z
12
+ date: 2013-04-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: net-ssh
@@ -64,17 +64,17 @@ dependencies:
64
64
  requirement: !ruby/object:Gem::Requirement
65
65
  none: false
66
66
  requirements:
67
- - - ! '>='
67
+ - - ~>
68
68
  - !ruby/object:Gem::Version
69
- version: 1.5.1
69
+ version: 1.6.11
70
70
  type: :runtime
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
73
73
  none: false
74
74
  requirements:
75
- - - ! '>='
75
+ - - ~>
76
76
  - !ruby/object:Gem::Version
77
- version: 1.5.1
77
+ version: 1.6.11
78
78
  - !ruby/object:Gem::Dependency
79
79
  name: httpclient
80
80
  requirement: !ruby/object:Gem::Requirement
@@ -136,7 +136,7 @@ dependencies:
136
136
  requirements:
137
137
  - - ! '>='
138
138
  - !ruby/object:Gem::Version
139
- version: '1.6'
139
+ version: '1.8'
140
140
  type: :development
141
141
  prerelease: false
142
142
  version_requirements: !ruby/object:Gem::Requirement
@@ -144,23 +144,23 @@ dependencies:
144
144
  requirements:
145
145
  - - ! '>='
146
146
  - !ruby/object:Gem::Version
147
- version: '1.6'
147
+ version: '1.8'
148
148
  - !ruby/object:Gem::Dependency
149
149
  name: rspec
150
150
  requirement: !ruby/object:Gem::Requirement
151
151
  none: false
152
152
  requirements:
153
- - - ~>
153
+ - - ! '>='
154
154
  - !ruby/object:Gem::Version
155
- version: '1.3'
155
+ version: 2.8.0
156
156
  type: :development
157
157
  prerelease: false
158
158
  version_requirements: !ruby/object:Gem::Requirement
159
159
  none: false
160
160
  requirements:
161
- - - ~>
161
+ - - ! '>='
162
162
  - !ruby/object:Gem::Version
163
- version: '1.3'
163
+ version: 2.8.0
164
164
  - !ruby/object:Gem::Dependency
165
165
  name: fakefs
166
166
  requirement: !ruby/object:Gem::Requirement
@@ -233,151 +233,155 @@ executables:
233
233
  extensions: []
234
234
  extra_rdoc_files: []
235
235
  files:
236
- - lib/rhc/cartridge_helpers.rb
237
- - lib/rhc/exceptions.rb
238
- - lib/rhc/rest/user.rb
239
- - lib/rhc/rest/application.rb
240
- - lib/rhc/rest/base.rb
241
- - lib/rhc/rest/mock.rb
242
- - lib/rhc/rest/authorization.rb
243
- - lib/rhc/rest/domain.rb
244
- - lib/rhc/rest/gear_group.rb
245
- - lib/rhc/rest/key.rb
246
- - lib/rhc/rest/api.rb
247
- - lib/rhc/rest/attributes.rb
248
- - lib/rhc/rest/client.rb
249
- - lib/rhc/rest/cartridge.rb
250
- - lib/rhc/rest/alias.rb
251
- - lib/rhc/auth.rb
252
- - lib/rhc/version.rb
253
- - lib/rhc/output_helpers.rb
254
236
  - lib/rhc/core_ext.rb
255
- - lib/rhc/autocomplete.rb
256
- - lib/rhc/coverage_helper.rb
257
- - lib/rhc/config.rb
258
- - lib/rhc/json.rb
259
- - lib/rhc/commands.rb
260
- - lib/rhc/commands/server.rb
261
- - lib/rhc/commands/base.rb
262
- - lib/rhc/commands/authorization.rb
263
- - lib/rhc/commands/domain.rb
237
+ - lib/rhc/help_formatter.rb
238
+ - lib/rhc/vendor/zliby.rb
239
+ - lib/rhc/vendor/sshkey.rb
240
+ - lib/rhc/vendor/parseconfig.rb
241
+ - lib/rhc/vendor/okjson.rb
264
242
  - lib/rhc/commands/apps.rb
243
+ - lib/rhc/commands/port_forward.rb
265
244
  - lib/rhc/commands/threaddump.rb
266
- - lib/rhc/commands/account.rb
245
+ - lib/rhc/commands/sshkey.rb
246
+ - lib/rhc/commands/setup.rb
267
247
  - lib/rhc/commands/snapshot.rb
248
+ - lib/rhc/commands/account.rb
249
+ - lib/rhc/commands/logout.rb
268
250
  - lib/rhc/commands/git_clone.rb
269
- - lib/rhc/commands/port_forward.rb
270
- - lib/rhc/commands/cartridge.rb
271
- - lib/rhc/commands/setup.rb
251
+ - lib/rhc/commands/domain.rb
252
+ - lib/rhc/commands/alias.rb
253
+ - lib/rhc/commands/server.rb
272
254
  - lib/rhc/commands/app.rb
255
+ - lib/rhc/commands/base.rb
256
+ - lib/rhc/commands/authorization.rb
273
257
  - lib/rhc/commands/tail.rb
274
- - lib/rhc/commands/sshkey.rb
275
- - lib/rhc/commands/alias.rb
276
- - lib/rhc/vendor/zliby.rb
277
- - lib/rhc/vendor/okjson.rb
278
- - lib/rhc/vendor/parseconfig.rb
279
- - lib/rhc/vendor/sshkey.rb
280
- - lib/rhc/tar_gz.rb
281
- - lib/rhc/command_runner.rb
282
- - lib/rhc/ssh_helpers.rb
283
- - lib/rhc/git_helpers.rb
284
- - lib/rhc/wizard.rb
285
- - lib/rhc/cli.rb
258
+ - lib/rhc/commands/cartridge.rb
259
+ - lib/rhc/highline_extensions.rb
260
+ - lib/rhc/helpers.rb
286
261
  - lib/rhc/auth/basic.rb
287
- - lib/rhc/auth/token.rb
288
262
  - lib/rhc/auth/token_store.rb
263
+ - lib/rhc/auth/token.rb
264
+ - lib/rhc/exceptions.rb
289
265
  - lib/rhc/context_helper.rb
290
- - lib/rhc/help_formatter.rb
266
+ - lib/rhc/commands.rb
267
+ - lib/rhc/config.rb
268
+ - lib/rhc/git_helpers.rb
269
+ - lib/rhc/coverage_helper.rb
270
+ - lib/rhc/json.rb
271
+ - lib/rhc/version.rb
272
+ - lib/rhc/autocomplete.rb
273
+ - lib/rhc/auth.rb
274
+ - lib/rhc/wizard.rb
275
+ - lib/rhc/cli.rb
276
+ - lib/rhc/output_helpers.rb
277
+ - lib/rhc/tar_gz.rb
291
278
  - lib/rhc/rest.rb
292
- - lib/rhc/helpers.rb
279
+ - lib/rhc/command_runner.rb
280
+ - lib/rhc/cartridge_helpers.rb
281
+ - lib/rhc/ssh_helpers.rb
282
+ - lib/rhc/rest/key.rb
283
+ - lib/rhc/rest/mock.rb
284
+ - lib/rhc/rest/api.rb
285
+ - lib/rhc/rest/attributes.rb
286
+ - lib/rhc/rest/application.rb
287
+ - lib/rhc/rest/client.rb
288
+ - lib/rhc/rest/domain.rb
289
+ - lib/rhc/rest/alias.rb
290
+ - lib/rhc/rest/user.rb
291
+ - lib/rhc/rest/base.rb
292
+ - lib/rhc/rest/authorization.rb
293
+ - lib/rhc/rest/cartridge.rb
294
+ - lib/rhc/rest/gear_group.rb
293
295
  - lib/rhc.rb
296
+ - lib/rhc/usage_templates/options_help.erb
294
297
  - lib/rhc/usage_templates/command_syntax_help.erb
295
- - lib/rhc/usage_templates/help.erb
296
- - lib/rhc/usage_templates/missing_help.erb
297
298
  - lib/rhc/usage_templates/command_help.erb
298
- - lib/rhc/usage_templates/options_help.erb
299
- - lib/rhc/autocomplete_templates/rhc.erb
299
+ - lib/rhc/usage_templates/missing_help.erb
300
+ - lib/rhc/usage_templates/help.erb
301
+ - lib/rhc/autocomplete_templates/bash.erb
300
302
  - conf/express.conf
303
+ - autocomplete/rhc_bash
301
304
  - LICENSE
302
305
  - COPYRIGHT
303
306
  - README.md
304
307
  - Rakefile
305
- - spec/spec_helper.rb
306
- - spec/coverage_helper.rb
307
- - spec/rhc/json_spec.rb
308
- - spec/rhc/rest_spec.rb
309
- - spec/rhc/helpers_spec.rb
310
- - spec/rhc/rest_client_spec.rb
311
308
  - spec/rhc/wizard_spec.rb
312
- - spec/rhc/config_spec.rb
313
- - spec/rhc/cli_spec.rb
309
+ - spec/rhc/highline_extensions_spec.rb
310
+ - spec/rhc/targz_spec.rb
311
+ - spec/rhc/commands/setup_spec.rb
314
312
  - spec/rhc/commands/tail_spec.rb
313
+ - spec/rhc/commands/logout_spec.rb
314
+ - spec/rhc/commands/alias_spec.rb
315
+ - spec/rhc/commands/account_spec.rb
315
316
  - spec/rhc/commands/domain_spec.rb
316
- - spec/rhc/commands/apps_spec.rb
317
- - spec/rhc/commands/git_clone_spec.rb
318
- - spec/rhc/commands/server_spec.rb
319
317
  - spec/rhc/commands/app_spec.rb
320
- - spec/rhc/commands/setup_spec.rb
321
- - spec/rhc/commands/port_forward_spec.rb
322
- - spec/rhc/commands/account_spec.rb
323
318
  - spec/rhc/commands/snapshot_spec.rb
324
- - spec/rhc/commands/alias_spec.rb
325
319
  - spec/rhc/commands/cartridge_spec.rb
326
320
  - spec/rhc/commands/sshkey_spec.rb
327
- - spec/rhc/commands/threaddump_spec.rb
321
+ - spec/rhc/commands/server_spec.rb
328
322
  - spec/rhc/commands/authorization_spec.rb
323
+ - spec/rhc/commands/port_forward_spec.rb
324
+ - spec/rhc/commands/threaddump_spec.rb
325
+ - spec/rhc/commands/apps_spec.rb
326
+ - spec/rhc/commands/git_clone_spec.rb
327
+ - spec/rhc/auth_spec.rb
328
+ - spec/rhc/json_spec.rb
329
+ - spec/rhc/config_spec.rb
330
+ - spec/rhc/helpers_spec.rb
331
+ - spec/rhc/rest_spec.rb
332
+ - spec/rhc/context_spec.rb
333
+ - spec/rhc/assets/cert_key_rsa
329
334
  - spec/rhc/assets/foo.txt
335
+ - spec/rhc/assets/empty.txt
330
336
  - spec/rhc/assets/cert.crt
331
337
  - spec/rhc/assets/targz_corrupted.tar.gz
332
- - spec/rhc/assets/empty.txt
333
338
  - spec/rhc/assets/targz_sample.tar.gz
334
- - spec/rhc/assets/cert_key_rsa
335
- - spec/rhc/command_spec.rb
339
+ - spec/rhc/rest_client_spec.rb
340
+ - spec/rhc/cli_spec.rb
336
341
  - spec/rhc/rest_application_spec.rb
337
- - spec/rhc/targz_spec.rb
338
- - spec/rhc/context_spec.rb
339
- - spec/rhc/auth_spec.rb
342
+ - spec/rhc/command_spec.rb
343
+ - spec/rest_spec_helper.rb
344
+ - spec/spec_helper.rb
345
+ - spec/coverage_helper.rb
340
346
  - spec/wizard_spec_helper.rb
341
- - spec/keys/example.pem
342
- - spec/keys/server.pem
343
347
  - spec/keys/example_private.pem
344
- - spec/rest_spec_helper.rb
345
- - spec/spec.opts
346
- - features/multiple_cartridge.feature
347
- - features/domain.feature
348
- - features/verify.feature
349
- - features/cartridge.feature
348
+ - spec/keys/server.pem
349
+ - spec/keys/example.pem
350
350
  - features/client.feature
351
- - features/support/env.rb
351
+ - features/verify.feature
352
+ - features/README.md
353
+ - features/geared_application.feature
354
+ - features/support/before_hooks.rb
352
355
  - features/support/key2.pub
353
- - features/support/key1
356
+ - features/support/assumptions.rb
354
357
  - features/support/key1.pub
358
+ - features/support/key1
359
+ - features/support/env.rb
355
360
  - features/support/platform_support.rb
356
- - features/support/before_hooks.rb
357
361
  - features/support/key3.pub
358
362
  - features/support/key2
359
- - features/support/assumptions.rb
360
- - features/application.feature
363
+ - features/lib/rhc_helper/sshkey.rb
364
+ - features/lib/rhc_helper/api.rb
365
+ - features/lib/rhc_helper/commandify.rb
366
+ - features/lib/rhc_helper/persistable.rb
367
+ - features/lib/rhc_helper/loggable.rb
368
+ - features/lib/rhc_helper/domain.rb
369
+ - features/lib/rhc_helper/runnable.rb
370
+ - features/lib/rhc_helper/app.rb
371
+ - features/lib/rhc_helper/httpify.rb
372
+ - features/lib/rhc_helper/cartridge.rb
373
+ - features/lib/rhc_helper.rb
361
374
  - features/sshkey.feature
362
- - features/geared_application.feature
375
+ - features/domain.feature
376
+ - features/cartridge.feature
363
377
  - features/scaled_application.feature
364
378
  - features/step_definitions/cartridge_steps.rb
379
+ - features/step_definitions/sshkey_steps.rb
365
380
  - features/step_definitions/application_steps.rb
366
381
  - features/step_definitions/client_steps.rb
367
382
  - features/step_definitions/domain_steps.rb
368
- - features/step_definitions/sshkey_steps.rb
369
- - features/lib/rhc_helper.rb
370
- - features/lib/rhc_helper/httpify.rb
371
- - features/lib/rhc_helper/domain.rb
372
- - features/lib/rhc_helper/runnable.rb
373
- - features/lib/rhc_helper/loggable.rb
374
- - features/lib/rhc_helper/commandify.rb
375
- - features/lib/rhc_helper/api.rb
376
- - features/lib/rhc_helper/cartridge.rb
377
- - features/lib/rhc_helper/app.rb
378
- - features/lib/rhc_helper/persistable.rb
379
- - features/lib/rhc_helper/sshkey.rb
380
- - features/README.md
383
+ - features/application.feature
384
+ - features/multiple_cartridge.feature
381
385
  - bin/rhc
382
386
  homepage: https://github.com/openshift/rhc
383
387
  licenses: []
@@ -410,79 +414,80 @@ signing_key:
410
414
  specification_version: 3
411
415
  summary: OpenShift Client Tools
412
416
  test_files:
413
- - spec/spec_helper.rb
414
- - spec/coverage_helper.rb
415
- - spec/rhc/json_spec.rb
416
- - spec/rhc/rest_spec.rb
417
- - spec/rhc/helpers_spec.rb
418
- - spec/rhc/rest_client_spec.rb
419
417
  - spec/rhc/wizard_spec.rb
420
- - spec/rhc/config_spec.rb
421
- - spec/rhc/cli_spec.rb
418
+ - spec/rhc/highline_extensions_spec.rb
419
+ - spec/rhc/targz_spec.rb
420
+ - spec/rhc/commands/setup_spec.rb
422
421
  - spec/rhc/commands/tail_spec.rb
422
+ - spec/rhc/commands/logout_spec.rb
423
+ - spec/rhc/commands/alias_spec.rb
424
+ - spec/rhc/commands/account_spec.rb
423
425
  - spec/rhc/commands/domain_spec.rb
424
- - spec/rhc/commands/apps_spec.rb
425
- - spec/rhc/commands/git_clone_spec.rb
426
- - spec/rhc/commands/server_spec.rb
427
426
  - spec/rhc/commands/app_spec.rb
428
- - spec/rhc/commands/setup_spec.rb
429
- - spec/rhc/commands/port_forward_spec.rb
430
- - spec/rhc/commands/account_spec.rb
431
427
  - spec/rhc/commands/snapshot_spec.rb
432
- - spec/rhc/commands/alias_spec.rb
433
428
  - spec/rhc/commands/cartridge_spec.rb
434
429
  - spec/rhc/commands/sshkey_spec.rb
435
- - spec/rhc/commands/threaddump_spec.rb
430
+ - spec/rhc/commands/server_spec.rb
436
431
  - spec/rhc/commands/authorization_spec.rb
432
+ - spec/rhc/commands/port_forward_spec.rb
433
+ - spec/rhc/commands/threaddump_spec.rb
434
+ - spec/rhc/commands/apps_spec.rb
435
+ - spec/rhc/commands/git_clone_spec.rb
436
+ - spec/rhc/auth_spec.rb
437
+ - spec/rhc/json_spec.rb
438
+ - spec/rhc/config_spec.rb
439
+ - spec/rhc/helpers_spec.rb
440
+ - spec/rhc/rest_spec.rb
441
+ - spec/rhc/context_spec.rb
442
+ - spec/rhc/assets/cert_key_rsa
437
443
  - spec/rhc/assets/foo.txt
444
+ - spec/rhc/assets/empty.txt
438
445
  - spec/rhc/assets/cert.crt
439
446
  - spec/rhc/assets/targz_corrupted.tar.gz
440
- - spec/rhc/assets/empty.txt
441
447
  - spec/rhc/assets/targz_sample.tar.gz
442
- - spec/rhc/assets/cert_key_rsa
443
- - spec/rhc/command_spec.rb
448
+ - spec/rhc/rest_client_spec.rb
449
+ - spec/rhc/cli_spec.rb
444
450
  - spec/rhc/rest_application_spec.rb
445
- - spec/rhc/targz_spec.rb
446
- - spec/rhc/context_spec.rb
447
- - spec/rhc/auth_spec.rb
451
+ - spec/rhc/command_spec.rb
452
+ - spec/rest_spec_helper.rb
453
+ - spec/spec_helper.rb
454
+ - spec/coverage_helper.rb
448
455
  - spec/wizard_spec_helper.rb
449
- - spec/keys/example.pem
450
- - spec/keys/server.pem
451
456
  - spec/keys/example_private.pem
452
- - spec/rest_spec_helper.rb
453
- - spec/spec.opts
454
- - features/multiple_cartridge.feature
455
- - features/domain.feature
456
- - features/verify.feature
457
- - features/cartridge.feature
457
+ - spec/keys/server.pem
458
+ - spec/keys/example.pem
458
459
  - features/client.feature
459
- - features/support/env.rb
460
+ - features/verify.feature
461
+ - features/README.md
462
+ - features/geared_application.feature
463
+ - features/support/before_hooks.rb
460
464
  - features/support/key2.pub
461
- - features/support/key1
465
+ - features/support/assumptions.rb
462
466
  - features/support/key1.pub
467
+ - features/support/key1
468
+ - features/support/env.rb
463
469
  - features/support/platform_support.rb
464
- - features/support/before_hooks.rb
465
470
  - features/support/key3.pub
466
471
  - features/support/key2
467
- - features/support/assumptions.rb
468
- - features/application.feature
472
+ - features/lib/rhc_helper/sshkey.rb
473
+ - features/lib/rhc_helper/api.rb
474
+ - features/lib/rhc_helper/commandify.rb
475
+ - features/lib/rhc_helper/persistable.rb
476
+ - features/lib/rhc_helper/loggable.rb
477
+ - features/lib/rhc_helper/domain.rb
478
+ - features/lib/rhc_helper/runnable.rb
479
+ - features/lib/rhc_helper/app.rb
480
+ - features/lib/rhc_helper/httpify.rb
481
+ - features/lib/rhc_helper/cartridge.rb
482
+ - features/lib/rhc_helper.rb
469
483
  - features/sshkey.feature
470
- - features/geared_application.feature
484
+ - features/domain.feature
485
+ - features/cartridge.feature
471
486
  - features/scaled_application.feature
472
487
  - features/step_definitions/cartridge_steps.rb
488
+ - features/step_definitions/sshkey_steps.rb
473
489
  - features/step_definitions/application_steps.rb
474
490
  - features/step_definitions/client_steps.rb
475
491
  - features/step_definitions/domain_steps.rb
476
- - features/step_definitions/sshkey_steps.rb
477
- - features/lib/rhc_helper.rb
478
- - features/lib/rhc_helper/httpify.rb
479
- - features/lib/rhc_helper/domain.rb
480
- - features/lib/rhc_helper/runnable.rb
481
- - features/lib/rhc_helper/loggable.rb
482
- - features/lib/rhc_helper/commandify.rb
483
- - features/lib/rhc_helper/api.rb
484
- - features/lib/rhc_helper/cartridge.rb
485
- - features/lib/rhc_helper/app.rb
486
- - features/lib/rhc_helper/persistable.rb
487
- - features/lib/rhc_helper/sshkey.rb
488
- - features/README.md
492
+ - features/application.feature
493
+ - features/multiple_cartridge.feature