forked from openshift/rhc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.spec
646 lines (555 loc) · 27.6 KB
/
client.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
%define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
%define gemversion %(echo %{version} | cut -d'.' -f1-3)
Summary: OpenShift client management tools
Name: rhc
Version: 1.38.4
Release: 1%{?dist}
Group: Network/Daemons
License: ASL 2.0
URL: http://openshift.redhat.com
Source0: rhc-%{version}.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: ruby >= 1.8.5
BuildRequires: rubygems
BuildRequires: rubygem-rdoc
BuildRequires: ruby-irb
Requires: ruby >= 1.8.5
Requires: rubygem-parseconfig
Requires: rubygem-httpclient >= 2.4.0
Requires: rubygem-test-unit
Requires: rubygem-net-ssh
Requires: rubygem-net-scp
Requires: ruby193-rubygem-net-scp
Requires: rubygem-net-ssh-multi
Requires: rubygem-archive-tar-minitar
Requires: rubygem-commander
Requires: rubygem-open4
Requires: git
%if 0%{?fedora} >= 19 || 0%{?rhel} >= 7
Requires: rubygem-net-ssh-multi
%endif
Obsoletes: rhc-rest
Provides: rubygem-rhc
BuildArch: noarch
%description
Provides OpenShift client libraries.
%prep
%setup -q
%build
for f in bin/rhc*
do
ruby -c $f
done
for f in lib/*.rb
do
ruby -c $f
done
%install
pwd
rm -rf $RPM_BUILD_ROOT
mkdir -p "$RPM_BUILD_ROOT/usr/share/man/man1/"
mkdir -p "$RPM_BUILD_ROOT/usr/share/man/man5/"
for f in man/*
do
len=`expr length $f`
manSection=`expr substr $f $len $len`
cp $f "$RPM_BUILD_ROOT/usr/share/man/man${manSection}/"
done
mkdir -p $RPM_BUILD_ROOT/etc/openshift
if [ ! -f "$RPM_BUILD_ROOT/etc/openshift/express.conf" ]
then
cp "conf/express.conf" $RPM_BUILD_ROOT/etc/openshift/
fi
# Package the gem
LC_ALL=en_US.UTF-8 gem build rhc.gemspec
mkdir -p .%{gemdir}
# Ignore dependencies here because these will be handled by rpm
gem install --install-dir $RPM_BUILD_ROOT/%{gemdir} --bindir $RPM_BUILD_ROOT/%{_bindir} --local -V --force --rdoc --ignore-dependencies \
rhc-%{version}.gem
# Copy the bash autocompletion script
mkdir -p "$RPM_BUILD_ROOT/etc/bash_completion.d/"
cp autocomplete/rhc_bash $RPM_BUILD_ROOT/etc/bash_completion.d/rhc
cp LICENSE $RPM_BUILD_ROOT/%{gemdir}/gems/rhc-%{version}/LICENSE
cp COPYRIGHT $RPM_BUILD_ROOT/%{gemdir}/gems/rhc-%{version}/COPYRIGHT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc LICENSE
%doc COPYRIGHT
%{_bindir}/rhc
%{_mandir}/man1/rhc*
%{_mandir}/man5/express*
%{gemdir}/gems/rhc-%{version}/
%{gemdir}/cache/rhc-%{version}.gem
%{gemdir}/doc/rhc-%{version}
%{gemdir}/specifications/rhc-%{version}.gemspec
%config(noreplace) %{_sysconfdir}/openshift/express.conf
%attr(0644,-,-) /etc/bash_completion.d/rhc
%changelog
* Fri Oct 23 2015 Wesley Hearn <[email protected]> 1.38.4-1
- Merge pull request #704 from yithian/cartridge_start_usage
- change the usage for `cartridge start` to say starting ([email protected])
* Tue Oct 20 2015 Stefanie Forrester <[email protected]> 1.38.3-1
- Formatting fixes ([email protected])
* Mon Oct 12 2015 Stefanie Forrester <[email protected]> 1.38.2-1
- Merge pull request #703 from
fabianofranz/bugs/1197301_and_other_net_ssh_issues
- Bug 1197301 - fixes net-ssh version higher bounds ([email protected])
* Thu Sep 17 2015 Unknown name 1.38.1-1
- bump_minor_versions for sprint 103 ([email protected])
* Thu Sep 17 2015 Unknown name 1.37.2-1
- Merge pull request #696 from tiwillia/bz1216206
- Fix create-app --from-app test timeout ([email protected])
- Bug 1216206 - Always_auth should be able to be passed to 'setup'
* Thu Jul 02 2015 Wesley Hearn <[email protected]> 1.37.1-1
- bump_minor_versions for 2.0.65 ([email protected])
- Merge pull request #694 from tiwillia/b1232921
- Report error when a syntatically incorrect env var is provided on app-create
* Tue Jun 30 2015 Wesley Hearn <[email protected]> 1.36.3-1
- Merge pull request #683 from msowka/master ([email protected])
- port-forward: option to enable selecting specific service(s), fix 1
- Fix error message ([email protected])
- Fix spelling errors ([email protected])
- Merge pull request #681 from Miciah/bug-1125926-bug-1130028-app-show-
highlight-carts-with-endpoints ([email protected])
- Update unit test for app show ([email protected])
- port-forward: option to enable selecting specific service(s)
- app show: highlight carts with endpoints ([email protected])
* Thu May 07 2015 Troy Dawson <[email protected]> 1.36.2-1
- Bug 1158737 - creating --from-app need to inherit HA
* Fri Apr 10 2015 Wesley Hearn <[email protected]> 1.36.1-1
- bump_minor_versions for sprint 62 ([email protected])
* Thu Mar 26 2015 Wesley Hearn <[email protected]> 1.35.3-1
- Parse boolean option `always_auth` ([email protected])
* Thu Mar 19 2015 Adam Miller <[email protected]> 1.35.2-1
- Merge pull request #674 from dobbymoodge/always-auth-BZ1187806
- Bug 1197301 - need to update gemspec to lock net-ssh and commander versions
- Bug 1197301 - need to lock net-ssh and commander versions
- Add "always_auth" config option ([email protected])
* Thu Feb 12 2015 Adam Miller <[email protected]> 1.35.1-1
- Bug 1187812 - must handle ssl_client_key_file in config files
- bump_minor_versions for sprint 57 ([email protected])
* Tue Jan 13 2015 Adam Miller <[email protected]> 1.34.2-1
- Merge pull request #669 from jwforres/fix_rhc_ruby_18_deps
- Version 0.7.0 of i18n gem doesn't support ruby 1.8 ([email protected])
- Bug 1149016 - allow spaces in paths for --ssh flag but still allow arguments.
* Tue Dec 09 2014 Adam Miller <[email protected]> 1.34.1-1
- bump_minor_versions for sprint 55 ([email protected])
* Wed Dec 03 2014 Adam Miller <[email protected]> 1.33.4-1
- Snapshot save for deployment on windows ([email protected])
* Tue Dec 02 2014 Adam Miller <[email protected]> 1.33.3-1
- Bug 1149016 - lowering verbosity of ssh debug messages
- Merge pull request #663 from fabianofranz/master
- Bug 1149016 - lowering verbosity of ssh debug messages
* Mon Dec 01 2014 Adam Miller <[email protected]> 1.33.2-1
- Fix rhc port-forward on Windows 7 ([email protected])
- Bug 1149016 - fixes ssh path with commas ([email protected])
* Mon Nov 24 2014 Adam Miller <[email protected]> 1.33.1-1
- bump_minor_versions for sprint 54 ([email protected])
* Wed Nov 12 2014 Adam Miller <[email protected]> 1.32.2-1
- Fixes autocomplete ([email protected])
- Merge pull request #648 from benemon/apps_summary
- Fixed indentation to align with standards ([email protected])
- Added the --summary option to the apps command ([email protected])
* Tue Nov 11 2014 Adam Miller <[email protected]> 1.32.1-1
- Bug 1127643 - must copy gear_profile on main app (not only cartridges) when
cloning app ([email protected])
- bump_minor_versions for sprint 53 ([email protected])
* Tue Oct 21 2014 Adam Miller <[email protected]> 1.31.5-1
- Merge pull request #654 from fabianofranz/bugs/1149016
- Bug 1149016 - git auto-discovery on Windows ([email protected])
- Bug 1149016 - ssh auto-discovery on Windows ([email protected])
* Mon Oct 20 2014 Adam Miller <[email protected]> 1.31.4-1
- Bump httpclient to 2.4.0 to fix ssl version negotiation ([email protected])
* Tue Oct 07 2014 Adam Miller <[email protected]> 1.31.3-1
- Merge pull request #653 from liggitt/worldline-make-ha
- Lock fakefs to a version supporting 1.8.7 ([email protected])
- Rename command to enable-ha ([email protected])
- add a test on make-ha not supported to fix coverage ([email protected])
- refactor make-ha ([email protected])
- add rhc app make-ha ([email protected])
* Tue Sep 30 2014 Adam Miller <[email protected]> 1.31.2-1
- [bug 1146802] User should not be prompted to create a token when passing
--create-token ([email protected])
- [bug 1142653] Remove region when cloning an app and the server does not allow
Region selection ([email protected])
* Thu Sep 18 2014 Adam Miller <[email protected]> 1.31.1-1
- bump_minor_versions for sprint 51 ([email protected])
* Fri Sep 05 2014 Adam Miller <[email protected]> 1.30.2-1
- Merge pull request #645 from tiwillia/bz1132651
- Re-added backtrace ([email protected])
- Bug 1132651 Bugzilla link https://bugzilla.redhat.com/show_bug.cgi?id=1132651
Removed unnecessary backtrace and improved debug message to decrease
confusion among users unfamilar with rhc code. ([email protected])
* Thu Aug 21 2014 Adam Miller <[email protected]> 1.30.1-1
- Merge pull request #644 from liggitt/ichi-the-one-master
- Rename and hide headers option, add spec tests ([email protected])
- bump_minor_versions for sprint 50 ([email protected])
- Using headers with RHC ([email protected])
* Tue Aug 19 2014 Adam Miller <[email protected]> 1.29.7-1
- Bug 1126388 - when displaying servers will warn if a given server is not yet
configured ([email protected])
* Fri Aug 15 2014 Troy Dawson <[email protected]> 1.29.6-1
- Merge pull request #636 from liggitt/rework_token_fallback
- Bug 1128987 - prevent rhc from needlessly regenerating tokens with x509 auth
- Use cert as user_key for token store hash for x509 ([email protected])
- Rework token fallback ([email protected])
* Thu Aug 14 2014 Adam Miller <[email protected]> 1.29.5-1
- Merge pull request #641 from fabianofranz/dev/207
- [origin-ui-207] Handle user region selection availability
* Wed Aug 13 2014 Adam Miller <[email protected]> 1.29.4-1
- Bug 1128986 - Missing "--ssl-client-key-file" option in the help message of
'rhc server add/configure' ([email protected])
* Tue Aug 12 2014 Adam Miller <[email protected]> 1.29.3-1
- Merge pull request #639 from fabianofranz/bugs/1126388
- Bug 1126388 - removed warning message ([email protected])
* Mon Aug 11 2014 Adam Miller <[email protected]> 1.29.2-1
- Bug 1126388 - only warns if unconfigured server comes from conf files
* Fri Aug 08 2014 Adam Miller <[email protected]> 1.29.1-1
- bump_minor_versions for sprint 49 ([email protected])
* Fri Aug 08 2014 Adam Miller <[email protected]> 1.28.6-1
- Bug 1126388 - must properly handle express.conf server missing on servers.yml
* Wed Jul 30 2014 Adam Miller <[email protected]> 1.28.5-1
- Bug 1124343 - show|list domain must tolerate servers with no membership
support ([email protected])
* Mon Jul 28 2014 Adam Miller <[email protected]> 1.28.4-1
- Merge pull request #634 from fabianofranz/bugs/1067874
- Bug 1067874 - fixes rhc server status messages ([email protected])
* Fri Jul 25 2014 Troy Dawson <[email protected]> 1.28.3-1
- Merge pull request #632 from fabianofranz/bugs/1091071
- Merge pull request #486 from brenton/x509 ([email protected])
- Bug 1091071 - properly displays haproxy on app gears
- Merge pull request #633 from fabianofranz/bugs/1082973
- Bug 1082973 - improved exit message when there are warnings from broker
- x509 auth ([email protected])
* Thu Jul 24 2014 Adam Miller <[email protected]> 1.28.2-1
- Merge pull request #631 from brenton/BZ1122702
- Merge pull request #629 from liggitt/bug_1112449_skip_ssh_key_check
- Bug 1112449: Skip key upload prompts if a kerberos key is added to the user's
account ([email protected])
- [origin-ui-186] Adding support to regions and zones
- Bug 1122702 - "rhc server add" with --no-use-authorization-tokens does not
work as expected ([email protected])
* Fri Jul 18 2014 Adam Miller <[email protected]> 1.28.1-1
- Merge pull request #628 from liggitt/bug_1110728_rhc_help_autocomplete
- Bug 1110728: RHC help autocomplete ([email protected])
- Bug 1118903: Fix typo ([email protected])
- Merge pull request #626 from fabianofranz/bugs/1118712
- Bug 1118712 - fixes ssl version parse when adding new servers
- Bug 1117466 - fixes overriding timeout config ([email protected])
- Bug 1118712 and Bug 1118500 - makes global ssl options explicit on rhc server
commands ([email protected])
- Bug 1035632 - added plural version to rhc env and rhc sshkey commands
- bump_minor_versions for sprint 48 ([email protected])
* Wed Jul 09 2014 Adam Miller <[email protected]> 1.27.4-1
- Merge pull request #621 from sferich888/debug_ssh
- Adding Test and reducing the code needed to make this happen
- Merge branch 'master' into debug_ssh ([email protected])
- Have rhc --debug also put ssh into debugin mode ([email protected])
* Wed Jul 09 2014 Adam Miller <[email protected]> 1.27.3-1
- Merge pull request #620 from jcantrill/1116709_unclear_notificatio_message
- Bug 1117466 - should not reuse SSL certs from different server configs
- Bug 1116709 - Modified the domain rename message to inform about applications
that will be created ([email protected])
* Thu Jul 03 2014 Adam Miller <[email protected]> 1.27.2-1
- Bug 1115386 - remove stray space from cloned app environment variables
* Thu Jun 26 2014 Adam Miller <[email protected]> 1.27.1-1
- Improvements to inline help ([email protected])
- Adding support to nickname on --server option ([email protected])
- Bug 1111467 - must preserve configs provided through the wizard when saving
new server ([email protected])
- bump_minor_versions for sprint 47 ([email protected])
* Thu Jun 19 2014 Adam Miller <[email protected]> 1.26.7-1
- Merge pull request #610 from
liggitt/bug_1111090_save_serversyml_from_server_command
- Prevent --use and --skip-wizard being used together ([email protected])
- Prevent full config being written to express.conf once servers.yml exists
- Add spec test for creating servers.yml on first add ([email protected])
- Bug 1111090: Allow setting and changing nickname with only a single server
* Thu Jun 19 2014 Adam Miller <[email protected]> 1.26.6-1
- Bug 1110961 - should not try to convert server to host (allows ports and
different schemes) ([email protected])
- Merge pull request #608 from liggitt/bug_1109865_team_show_owner
- Fetch members if needed for membership#owner ([email protected])
* Wed Jun 18 2014 Adam Miller <[email protected]> 1.26.5-1
- Merge pull request #607 from fabianofranz/master
- [origin-ui-180] Several code improvements ([email protected])
- Merge pull request #606 from fabianofranz/master
- Bug 1110357 - fixes issue with ruby/highline conversion to yaml
- Bug 1110266 - fixes first run of rhc server add ([email protected])
* Tue Jun 17 2014 Adam Miller <[email protected]> 1.26.4-1
- [origin-ui-180] will not set server as default when add|configure, adds --use
option ([email protected])
- [origin-ui-180] Moved more configs to servers.yml, added server nickname
suggestions ([email protected])
- [origin-ui-180] Bug fixes and improvements according to code review
- [origin-ui-180] rhc server feature tests ([email protected])
- [origin-ui-180] Removing discard_global_option ([email protected])
- [origin-ui-180] rhc supporting multiple servers ([email protected])
* Fri Jun 13 2014 Adam Miller <[email protected]> 1.26.3-1
- Ensure we have free gears available ([email protected])
* Mon Jun 09 2014 Adam Miller <[email protected]> 1.26.2-1
- Update RHC to work with HTTPClient >= 2.4.0 ([email protected])
* Thu Jun 05 2014 Adam Miller <[email protected]> 1.26.1-1
- Prevent rspec 3.0 from being installed ([email protected])
- Bug 1103049: Fix typo in member update documentation ([email protected])
- Bug 1103091: Remove .. check for team names from rhc ([email protected])
- bump_minor_versions for sprint 46 ([email protected])
* Wed May 21 2014 Adam Miller <[email protected]> 1.25.2-1
- Bug 1095440: Ensure gears are free for scalable test ([email protected])
- Bug 1073283: Escape URI correctly ([email protected])
- Add spec test for URL encoding ([email protected])
* Fri May 16 2014 Adam Miller <[email protected]> 1.25.1-1
- When cloning app should only copy scaling factors of the cartridge if the app
is scalable ([email protected])
- bump_minor_versions for sprint 45 ([email protected])
* Tue May 06 2014 Troy Dawson <[email protected]> 1.24.3-1
- Bug 1079165 - added warning when removing external cart with zero gears
- Workaround bundler issues ([email protected])
* Mon May 05 2014 Adam Miller <[email protected]> 1.24.2-1
- Merge pull request #586 from fabianofranz/bugs/1093166-updates-rest-api-
to-1.7 ([email protected])
- Bug 1081235: Fix RHC rate display ([email protected])
- Bug 1093166 - increases API client to version 1.7 ([email protected])
* Fri Apr 25 2014 Adam Miller <[email protected]> 1.24.1-1
- bump_minor_versions for sprint 44 ([email protected])
- Merge pull request #585 from
liggitt/bug_1090912_handle_global_team_delete_error
- Update autocomplete ([email protected])
- Bug 1090912: Handle attempts to delete a global team via RHC
- Bug 1090830: Improve help and syntax help for members command
- Review comments ([email protected])
- Typo ([email protected])
- Guard team creation with capability check ([email protected])
- Fix incorrect feature test ([email protected])
- Team management via RHC ([email protected])
- Bug 1089665: Show application members who have their membership via domain
* Thu Apr 17 2014 Troy Dawson <[email protected]> 1.23.6-1
- Skip forking output for jruby ([email protected])
* Thu Apr 17 2014 Troy Dawson <[email protected]> 1.23.5-1
- Merge pull request #578 from pravisankar/dev/ravi/fix-rhc-tests
- Fix cucumber support script: Pick user_register_script_format based on auth
plugin ([email protected])
* Wed Apr 16 2014 Troy Dawson <[email protected]> 1.23.4-1
- Merge pull request #579 from liggitt/always_show_owner
- Always show the domain or application owner in member list
* Tue Apr 15 2014 Troy Dawson <[email protected]> 1.23.3-1
- Merge pull request #577 from liggitt/bug_1086567_handle_implicit_leaving
- Improve message when searching member teams ([email protected])
- Bug 1086567: Handle implicit members leaving ([email protected])
* Mon Apr 14 2014 Troy Dawson <[email protected]> 1.23.2-1
- Merge pull request #576 from liggitt/fabianofranz-dev/174
- Improve documentation, sample usage, grammar, and type validation
- Bug 1086698: Improve examples for update to say that user logins or team ids
can add members ([email protected])
- Complete spec coverage of members command ([email protected])
- Bug 1086227: Improve message when a team cannot be found while adding
- Add spec tests to make sure we use an exact match, handle multiple exact
matches, use a single case-insensitive match, suggest when there are multiple
matches, and handle special Regexp characters correctly ([email protected])
- Update spec tests for member list output ([email protected])
- Bug 1086138: Show info message when there are no members, reformat member
output, add --all option to show team members ([email protected])
- Bug 1086127: update autocomplete script ([email protected])
- Bug 1086128: Improve syntax to include --type and login,team name,id
- [origin-ui-174] add/remove/update/list teams as members
* Wed Apr 09 2014 Adam Miller <[email protected]> 1.23.1-1
- Merge pull request #573 from jwforres/latest_rake_breaks_on_ruby18
- Merge pull request #574 from fabianofranz/master
- Merge pull request #572 from ShalomPisteuo/fixScpMisspelling
- bump_minor_versions for sprint 43 ([email protected])
- Fixes failing test in rhc/features/core_feature.rb:178
- Latest version of rake breaks bundle install on ruby 1.8.x
- Fixing a misspelling. ([email protected])
* Tue Mar 25 2014 Adam Miller <[email protected]> 1.22.5-1
- [origin-ui-162] surface more information in the UI for external cartridges
- Merge pull request #571 from fabianofranz/master
- Merge pull request #570 from fabianofranz/bugs/1078684
- Fixes failing test (was reaching the 3 gears limit)
- Bug 1078684 - fixes rhc help options ([email protected])
* Mon Mar 24 2014 Adam Miller <[email protected]> 1.22.4-1
- Bug 1079584: Fix scp option conflict with global option ([email protected])
- Fix failing test ([email protected])
- Merge pull request #566 from fabianofranz/dev/163
- [origin-ui-163] Add support to filter apps you own - 'rhc apps --mine'
- Bug 1073108 - fixes case check when removing cartridges by url
* Tue Mar 18 2014 Adam Miller <[email protected]> 1.22.3-1
- Merge pull request #553 from fabianofranz/dev/160
- Updates autocomplete ([email protected])
- Improved message about scaling when creating --from-app
- Creating --from-app will no longer copy aliases, still warns about it
- Moved check for options dns and git to previous logic
- Changes rhc create-app --from to --from-app ([email protected])
- [origin-dev-ui-160] Add support to clone app on create: 'rhc create-app
<clone> --from <existing>' ([email protected])
* Mon Mar 17 2014 Troy Dawson <[email protected]> 1.22.2-1
- Merge pull request #564 from nhr/fix_for_origin
- Merge pull request #563 from liggitt/require_tmpdir
- Add SCL dependency for client.spec-based RPM builds ([email protected])
- Require tmpdir ([email protected])
* Fri Mar 14 2014 Adam Miller <[email protected]> 1.22.1-1
- Update scp.rb ([email protected])
- Update scp.rb ([email protected])
- Bug 1073852 fixing traceback with authentication failed message
- Bug 1073307: Make error message on download failure more generic
- Bug 1073326: Add scp to rhc autocomplete ([email protected])
- Bug 1073283: Fix scp when app name is empty or . ([email protected])
- bump_minor_versions for sprint 42 ([email protected])
* Wed Mar 05 2014 Adam Miller <[email protected]> 1.21.3-1
- Bug 1072721: Fix divide by zero and duplicate messages in rhc scp command
* Mon Mar 03 2014 Adam Miller <[email protected]> 1.21.2-1
- fix cucumber test cartridge index files ([email protected])
- Use more than 1 word ([email protected])
* Thu Feb 27 2014 Adam Miller <[email protected]> 1.21.1-1
- Fixing tests ([email protected])
- Merge pull request #550 from smarterclayton/add_more_debugging_to_dns_output
- Report more info about DNS resolution ([email protected])
- fix feature test - remove obsolete php/ dir ([email protected])
- Bug 1066850 - Fixing urls ([email protected])
- bump_minor_versions for sprint 41 ([email protected])
* Sun Feb 16 2014 Adam Miller <[email protected]> 1.20.3-1
- Explain automatic updates ([email protected])
* Mon Feb 10 2014 Adam Miller <[email protected]> 1.20.2-1
- Cleanup formatting ([email protected])
- Cleaning spec ([email protected])
- Merge pull request #539 from jhadvig/mongo_update
- Merge pull request #536 from fabianofranz/dev/441
- Removed references to OpenShift forums in several places
- Fix infinite retry logic ([email protected])
- Merge pull request #488 from developercorey/rhc_scp
- adding Requires:rubygem-net-scp to client.spec ([email protected])
- Net::SSH 2.8.0 raises a different exception on fingerprint errors
- Stop using sort_by! for ruby 1.8.7 ([email protected])
- Add test for domain with more than 5 members ([email protected])
- Merge pull request #541 from smarterclayton/show_automatic_updates
- Show automatic updates if available ([email protected])
- MongoDB version update to 2.4 ([email protected])
- fixing issues identified by clayton ([email protected])
- adding rhc scp command for transferring files to and from gears, along with
associated tests ([email protected])
* Thu Jan 30 2014 Adam Miller <[email protected]> 1.20.1-1
- Use verbose logging in Net::SSH when in debug mode ([email protected])
- Merge pull request #537 from fabianofranz/bugs/1058251
- Bug 1058251 - gear activate requires --all to be applied to all gears
- Bug 1048392 - remove workaround for travis CI failures ([email protected])
- bump_minor_versions for sprint 40 ([email protected])
* Thu Jan 09 2014 Troy Dawson <[email protected]> 1.19.4-1
- Merge pull request #524 from smarterclayton/authorization_tests
- Bug 1048392 - force gem to version 2.11.1 so travis CI can run
- Merge pull request #532 from liggitt/bug_1046443_stderr_redirect
- Bug 991250 - changed the behavior of the 'rhc' command called alone to
display help instead of the wizard if it's not configured
- Review: test 'rhc authorization' directly ([email protected])
- Fix bug 1046443: Incorrect stderr redirect ([email protected])
- Bug 991250 - 'rhc' must call wizard with the same context as 'rhc setup'
- Bug 1043291 - using ruby to snapshot restore on mac (tar --wildcards not
supported) ([email protected])
- Bug 1041313 - allow all rhc catridge commands to accept a url
- Authorization tests ([email protected])
- net-multi-ssh made it to master ([email protected])