forked from openshift/rhc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
client.spec
1684 lines (1410 loc) · 73.2 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
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%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: 0.97.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: rubygem-rake
BuildRequires: rubygem-rspec
BuildRequires: rubygem-webmock
BuildRequires: rubygem-cucumber
Requires: ruby >= 1.8.5
Requires: rubygem-parseconfig
Requires: rubygem-rest-client
Requires: rubygem-test-unit
Requires: rubygem-net-ssh
Requires: rubygem-archive-tar-minitar
Requires: rubygem-commander
Requires: git
Obsoletes: rhc-rest
Provides: rubygem-rhc
BuildArch: noarch
%description
Provides OpenShift client libraries
%prep
%setup -q
pwd
rake --trace version["%{version}"]
%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
rake --trace package
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 \
pkg/rhc-%{gemversion}.gem
# Copy the bash autocompletion script
mkdir -p "$RPM_BUILD_ROOT/etc/bash_completion.d/"
cp autocomplete/rhc $RPM_BUILD_ROOT/etc/bash_completion.d/rhc
cp LICENSE $RPM_BUILD_ROOT/%{gemdir}/gems/rhc-%{gemversion}/LICENSE
cp COPYRIGHT $RPM_BUILD_ROOT/%{gemdir}/gems/rhc-%{gemversion}/COPYRIGHT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc doc/USAGE.txt
%doc LICENSE
%doc COPYRIGHT
%{_bindir}/rhc
%{_bindir}/rhc-app
%{_bindir}/rhc-domain
%{_bindir}/rhc-sshkey
%{_bindir}/rhc-chk
%{_bindir}/rhc-create-app
%{_bindir}/rhc-create-domain
%{_bindir}/rhc-ctl-domain
%{_bindir}/rhc-domain-info
%{_bindir}/rhc-user-info
%{_bindir}/rhc-ctl-app
%{_bindir}/rhc-snapshot
%{_bindir}/rhc-tail-files
%{_bindir}/rhc-port-forward
%{_mandir}/man1/rhc*
%{_mandir}/man5/express*
%{gemdir}/gems/rhc-%{gemversion}/
%{gemdir}/cache/rhc-%{gemversion}.gem
%{gemdir}/doc/rhc-%{gemversion}
%{gemdir}/specifications/rhc-%{gemversion}.gemspec
%config(noreplace) %{_sysconfdir}/openshift/express.conf
%attr(0644,-,-) /etc/bash_completion.d/rhc
%changelog
* Wed Aug 08 2012 Adam Miller <admiller@redhat.com> 0.97.4-1
-
* Tue Aug 07 2012 Adam Miller <admiller@redhat.com> 0.97.3-1
- Bug 845171 - Was returning too aggressively, output not produced.
(ccoleman@redhat.com)
* Sat Aug 04 2012 Dan McPherson <dmcphers@redhat.com> 0.97.2-1
- Bug 845171 (lnader@redhat.com)
- Merge pull request #113 from lnader/master (ccoleman@redhat.com)
- Bug 845171 (lnader@redhat.com)
- Loop and test roughly the same amount of time as before (ccoleman@redhat.com)
- Bug 845154 - When the CLI creates an app, it should check the health check
URL first (if available), then check the root page. If either are available
we consider the app to have been loaded. (ccoleman@redhat.com)
* Thu Aug 02 2012 Adam Miller <admiller@redhat.com> 0.97.1-1
- bump_minor_versions for sprint 16 (admiller@redhat.com)
* Wed Aug 01 2012 Adam Miller <admiller@redhat.com> 0.96.7-1
- Merge pull request #110 from lnader/master (ccoleman@redhat.com)
- Merge pull request #111 from fabianofranz/master (ccoleman@redhat.com)
- Fixes #823851 and #841170 (ffranz@redhat.com)
- Bug 839889, Bug 841430 and use health_check_path returned by API
(lnader@redhat.com)
* Tue Jul 31 2012 Adam Miller <admiller@redhat.com> 0.96.6-1
- Merge pull request #109 from smarterclayton/send_user_agent
(ccoleman@redhat.com)
- Fix require bug with helpers and non-standard rhc load order
(ccoleman@redhat.com)
- Merge pull request #106 from smarterclayton/send_user_agent
(ccoleman@redhat.com)
- Ensure that the gem version is always < 4 numbers (ccoleman@redhat.com)
- Send user agent on all requests, add spec test coverage for user agent, and
simplify api request stubs (ccoleman@redhat.com)
* Mon Jul 30 2012 Dan McPherson <dmcphers@redhat.com> 0.96.5-1
- Merge pull request #103 from smarterclayton/us2531_expose_version_info_in_gem
(ccoleman@redhat.com)
- build.sh should invoke rake version, rake version should default to the
client spec. (ccoleman@redhat.com)
- US2531 - Update gem version during RPM build, and use RHC::VERSION::STRING
when accessing the current version. (ccoleman@redhat.com)
* Thu Jul 26 2012 Dan McPherson <dmcphers@redhat.com> 0.96.4-1
- added zend health_check.php (lnader@redhat.com)
* Thu Jul 19 2012 Adam Miller <admiller@redhat.com> 0.96.3-1
- Update README with changes to repository name. (ccoleman@redhat.com)
- Tidied up some redundancies in the shared examples setup. (hripps@redhat.com)
- Rhc::Rest#send was colliding with Ruby core send() method. This has been
renamed to resolve the collision. Changes have been made throughout the REST
API to accound fort this correction. Additionally, removed evals in
rest_application_spec.rb to use the newly liberated ruby send() method
instead. (hripps@redhat.com)
- Changed the way that class expectations are evaluated (hripps@redhat.com)
- DRYed up the Rhc::Rest::Aplication tests. (hripps@redhat.com)
- Added coverage for Rhc::Rest::Application; also added a filter to coverage
config for a file that was blocking 100%% coverage. (hripps@redhat.com)
* Fri Jul 13 2012 Adam Miller <admiller@redhat.com> 0.96.2-1
- Merge pull request #97 from fotioslindiakos/BZ836483 (johnp@redhat.com)
- Merge pull request #99 from J5/master (ccoleman@redhat.com)
- some fixes to setup command and checking the spec test (johnp@redhat.com)
- Added tests to ensure a domain exists (fotios@redhat.com)
- Fixed error_for to ensure the sprintf won't fail (fotios@redhat.com)
- Ensuring we don't fail if broker sends nil HTTP response (fotios@redhat.com)
* Wed Jul 11 2012 Adam Miller <admiller@redhat.com> 0.96.1-1
- bump_minor_versions for sprint 15 (admiller@redhat.com)
* Wed Jul 11 2012 Adam Miller <admiller@redhat.com> 0.95.13-1
- [rspec] get to 100%% coverage with new wizard command change
(johnp@redhat.com)
- add a better help formatter (johnp@redhat.com)
- make wizard run from Commander and setup default command line args
(johnp@redhat.com)
- Merge pull request #94 from fabianofranz/master (ccoleman@redhat.com)
- Added coverage to File ext (chunks) (contact@fabianofranz.com)
- Moved File chunk extension to core_ext.rb (contact@fabianofranz.com)
- Changed tar.gz file check from client to server side when on Windows
(contact@fabianofranz.com)
- Added a rescue to handle server errors when attempting to create new scaling
applications (nhr@redhat.com)
- Removed debug code (contact@fabianofranz.com)
- Merge branch 'master' of github.com:openshift/os-client-tools
(contact@fabianofranz.com)
- Fixes BZ 836097 (contact@fabianofranz.com)
* Tue Jul 10 2012 Adam Miller <admiller@redhat.com> 0.95.12-1
- Merge pull request #92 from J5/master (ccoleman@redhat.com)
- add Config value as default because it correctly evaluates when called
(johnp@redhat.com)
- [bug #837189] Normalize on generating ssh keys using the wizard
(johnp@redhat.com)
* Mon Jul 09 2012 Adam Miller <admiller@redhat.com> 0.95.11-1
- Merge pull request #90 from J5/master (contact@fabianofranz.com)
- [bug #816813] fix it so debug=true in conf works with rhc app
(johnp@redhat.com)
- [spec] add test for ssh helper (johnp@redhat.com)
- bump the key generation to 2048 bits (johnp@redhat.com)
- [bug #837189] call ssh-add when writing out ssh key (johnp@redhat.com)
* Mon Jul 09 2012 Dan McPherson <dmcphers@redhat.com> 0.95.10-1
- Removed debug comments (contact@fabianofranz.com)
- Fixes BZ 837464 (contact@fabianofranz.com)
- Fixes BZ 837191, not parsing \n on windows anymore (using .lines instead)
(contact@fabianofranz.com)
* Mon Jul 09 2012 Dan McPherson <dmcphers@redhat.com> 0.95.9-1
- Merge pull request #89 from nhr/BZ836177 (ccoleman@redhat.com)
- Merge pull request #87 from J5/master (ccoleman@redhat.com)
- Fixed BZ836177 - error message is not clear when using invalid domain name
in rhc setup wizard (nhr@redhat.com)
- Added rspec coverage for Rhc::Rest::Client (nhr@redhat.com)
- [cucumber] add tests for cartridge creation and stub out other tests
(johnp@redhat.com)
- [cucumber] Suppress simplecov output for rhc scripts (johnp@redhat.com)
- [cucumber] revert debug comments which were mistakenly checked in
(johnp@redhat.com)
* Thu Jul 05 2012 Adam Miller <admiller@redhat.com> 0.95.8-1
- Added rsepc testing for Rhc::Rest. Made minor fixes to Rhc::Rest base module.
(nhr@redhat.com)
* Tue Jul 03 2012 Adam Miller <admiller@redhat.com> 0.95.7-1
- added buildrequires rubygem-cucumber because tests are running at rpm build
time (admiller@redhat.com)
* Mon Jul 02 2012 Adam Miller <admiller@redhat.com> 0.95.6-1
- add comment to the top of coverage_helper (johnp@redhat.com)
- make coverage helper module more ruby'esk (johnp@redhat.com)
- [rake] make a cucumber_local task that runs on the local bundle
(johnp@redhat.com)
- [rake] clean up tasks (johnp@redhat.com)
- [rake] add cucumber task and allow specifying RHC_SERVER (johnp@redhat.com)
- [cucumber coverage] use a helper to start simplecov (johnp@redhat.com)
- add simplecov to cucumber tests (johnp@redhat.com)
- [simplecov] Seperated simplecov output for spec tests (nhr@redhat.com)
- Fixes BZ 829833, Yard warnings when gem install rhc (ffranz@redhat.com)
* Wed Jun 27 2012 Adam Miller <admiller@redhat.com> 0.95.5-1
- add thor developer dependency so we can run cucumber tests (johnp@redhat.com)
- fix tito build due to move to root directory (johnp@redhat.com)
- Merge pull request #77 from smarterclayton/add_help_information_to_framework
(johnp@redhat.com)
- Fixes BZ 834813, error while creating scaled apps on Ruby 1.9+
(ffranz@redhat.com)
- DateTime on Ruby 1.8.7 can't be converted because of timezones
(ccoleman@redhat.com)
- Ruby 1.8.7 doesn't support to_time (ccoleman@redhat.com)
- Add simple help info to the framework Improve the spec tests so that they
pass when an openshift config file already exists Get 100%% coverage of
helpers in helpers_spec.rb Add a way to create global options cleanly from
the helper (ccoleman@redhat.com)
- Move everything in express/ into the root (ccoleman@redhat.com)
- Add contributing guidelines (ccoleman@redhat.com)
- Merge pull request #75 from smarterclayton/finish_up_cuc_tests
(ccoleman@redhat.com)
- Ruby 1.8.7 does not support URI#hostname (ccoleman@redhat.com)
- Integrate cucumber into rake, simplify coverage reporting, allow optional
execution of coverage during cucumber (ccoleman@redhat.com)
- Fix ActiveSupport override in both Ruby 1.8 and 1.9 (ccoleman@redhat.com)
* Sat Jun 23 2012 Dan McPherson <dmcphers@redhat.com> 0.95.4-1
- Merge pull request #67 from matthicksj/add-cuc-tests (ccoleman@redhat.com)
- Switching cucumber to exit on any failure (mhicks@redhat.com)
- Adding rhc app show test (mhicks@redhat.com)
- Better OpenShift Origin instance support and docs (mhicks@redhat.com)
- No need to exclude these fields anymore (mhicks@redhat.com)
- Refactoring, fixes and additional functionality (mhicks@redhat.com)
- Minor fixes, handling rhc setup and configuration (mhicks@redhat.com)
- Adds end to end cucumber integration tests (mhicks@redhat.com)
* Sat Jun 23 2012 Dan McPherson <dmcphers@redhat.com> 0.95.3-1
- Merge pull request #73 from J5/master (ccoleman@redhat.com)
- [rspec] finish up the odds and ends to get Config to 100%% coverage
(johnp@redhat.com)
- [rspec] break up Config to make it easier for testsing (johnp@redhat.com)
- [rspec] add RHC::Config tests (johnp@redhat.com)
- [rspec] fix home dir switching code to correctly reload config
(johnp@redhat.com)
- [rspec] move fakefs bits into spec_helper so other tests can benifit
(johnp@redhat.com)
* Thu Jun 21 2012 Adam Miller <admiller@redhat.com> 0.95.2-1
- Merge pull request #72 from J5/master (ccoleman@redhat.com)
- [simplecov] simpler coverage fix (johnp@redhat.com)
- Merge pull request #69 from J5/master (ccoleman@redhat.com)
- [simplecov] use the same regex for nocov as simplecov uses (johnp@redhat.com)
- Merge pull request #71 from xiy/master (ccoleman@redhat.com)
- Make line enumeration in rhc-port-forward compatible with both ruby 1.8 and
1.9. (xiy3x0@gmail.com)
- [simplecov] monkey patch to correctly ignore :nocov: lines (johnp@redhat.com)
- [rspec] make stub methods less generic (johnp@redhat.com)
- [rspec] make sure we our internal ssh fingerprint methods match out fallback
(johnp@redhat.com)
- [rspec] stub out ssh_keygen_fallback instead of exe_cmd (johnp@redhat.com)
- [rspec] silence output during tests by using highline's "say" instead of
"puts" (johnp@redhat.com)
- remove debug output (johnp@redhat.com)
- [rspec] 100%% wizard coverage (johnp@redhat.com)
- [rspec] get coverage for ssh-keygen fallback (johnp@redhat.com)
- [rspec] more package kit code path coverage (johnp@redhat.com)
- [rspec] cover has_git? error condition (johnp@redhat.com)
- [rcov] cover the dbus_send_session_method method (johnp@redhat.com)
- [rspec wizard] add windows codepath check (johnp@redhat.com)
- [rspec] mock package kit (johnp@redhat.com)
- [rspec] small changes to get better test coverage (johnp@redhat.com)
- [rspec] add a test that runs through the whole wizard in one go
(johnp@redhat.com)
* Wed Jun 20 2012 Adam Miller <admiller@redhat.com> 0.95.1-1
- bump_minor_versions for sprint 14 (admiller@redhat.com)
- Removing --noprompt from ARGV after we're done with it since the other
commands complain about it not being a valid option (fotios@redhat.com)
* Wed Jun 20 2012 Adam Miller <admiller@redhat.com> 0.94.8-1
- Improved style (ffranz@redhat.com)
- Minor message improvements (ffranz@redhat.com)
- Fixed wrong forum URL everywhere (ffranz@redhat.com)
- Fixes BZ 826769 - will not fail app create and will show a message when the
Windows Winsock bug is detected (ffranz@redhat.com)
* Tue Jun 19 2012 Adam Miller <admiller@redhat.com> 0.94.7-1
- Merge pull request #68 from J5/master (ccoleman@redhat.com)
- [bug 831771] require highline 1.5.1 (johnp@redhat.com)
- Merge pull request #66 from smarterclayton/handle_interrupts_gracefully
(johnp@redhat.com)
- Bug 825766 - Catch any interrupts that have escaped all command execution
(ccoleman@redhat.com)
- [bug 826472] namespace isn't in config file, don't update when altering
namespace (johnp@redhat.com)
- update wizard spec tests (johnp@redhat.com)
- [bug 828324]exit 0 on success for rhc app cartridge list (johnp@redhat.com)
* Tue Jun 19 2012 Adam Miller <admiller@redhat.com> 0.94.6-1
- Fixup RHC requires so that only one module is requiring Rubygems, also ensure
requires are not circular (ccoleman@redhat.com)
* Mon Jun 18 2012 Adam Miller <admiller@redhat.com> 0.94.5-1
- Merge pull request #65 from J5/master (ccoleman@redhat.com)
- add missing parseconfig.rb (johnp@redhat.com)
- Merge pull request #64 from J5/master (ccoleman@redhat.com)
- vendor parseconfig and remove monkey patches (johnp@redhat.com)
- remove some more unused parseconfig code (johnp@redhat.com)
- remove some stale code that must have crept back in from a merge
(johnp@redhat.com)
- monkey patch parseconfig to remove deprication warnings (johnp@redhat.com)
- only run wizard if a valid command is issued (johnp@redhat.com)
- Improved SSH checks (fotios@redhat.com)
- Bug 831459 - Use the correct RbConfig version depending on Ruby version
(ccoleman@redhat.com)
* Fri Jun 15 2012 Adam Miller <admiller@redhat.com> 0.94.4-1
- parseconfig 1.0.2 breaks our config module so specify < 1.0
(johnp@redhat.com)
- fix traceback when checking for git and it is not installed
(johnp@redhat.com)
- Do fast check for git (path) before slow check (package_kit)
(ccoleman@redhat.com)
- Bug 831682 - Remove rake from core dependencies (ccoleman@redhat.com)
- add an accessor to config for default_rhlogin (johnp@redhat.com)
- Provide rubygem-rhc so we don't clash with f17 packages (johnp@redhat.com)
- [fix bug 830260] defaults to previously entered username in setup
(johnp@redhat.com)
* Fri Jun 08 2012 Adam Miller <admiller@redhat.com> 0.94.3-1
- Merge pull request #61 from J5/master (ccoleman@redhat.com)
- fix traceback when checking for git and it is not installed
(johnp@redhat.com)
- Bug fixes for 790459 and 808440 (abhgupta@redhat.com)
- change wordage for key read warning (johnp@redhat.com)
- Fix dealing with invalid ssh keys (indicate the key can not be read)
(johnp@redhat.com)
- use the vendor version of SSHKey (johnp@redhat.com)
- fix typo s/message/display (johnp@redhat.com)
- [fix bug 829858] we don't need to check for a .ssh/config file
(johnp@redhat.com)
- [fix bug 829903] Don't run setup when --help is specified (johnp@redhat.com)
* Fri Jun 08 2012 Adam Miller <admiller@redhat.com> 0.94.2-1
- fix another merge issue (johnp@redhat.com)
- fix merge issue by adding back Requires: rubygem-test-unit (johnp@redhat.com)
- move sshkey into the vendor module (johnp@redhat.com)
- use FileUtils as it works for all versions of ruby >= 1.8.7
(johnp@redhat.com)
- Pull sshkey module into the source tree since it is small (johnp@redhat.com)
- Update client spec to require rubygem-test-unit, and relax version
requirements (ccoleman@redhat.com)
- Off by one bug in simplecov, temporarily reduce percentage by 1 because
coverage report is 100%% green (ccoleman@redhat.com)
- Allow users with bigdecimal as a system gem to run tests (crack requires
bigdecimal implicitly) (ccoleman@redhat.com)
- Fix to_a bugs in Ruby 1.9 (behavior change, code was not forward compatible)
(ccoleman@redhat.com)
- Bug 829764 - Add test-unit 1.2.3 as a firm dependency by the gem
(ccoleman@redhat.com)
* Fri Jun 01 2012 Adam Miller <admiller@redhat.com> 0.94.1-1
- bumping spec versions (admiller@redhat.com)
- Fixed code coverage (:nocov:) (ffranz@redhat.com)
- fix bug #827582 - Wizard's git check returns a false negitive on RHEL6
(johnp@redhat.com)
* Thu May 31 2012 Adam Miller <admiller@redhat.com> 0.93.18-1
-
* Thu May 31 2012 Adam Miller <admiller@redhat.com> 0.93.17-1
- Added a fallback for ssh keys fingerprint handling to the setup wizard
(related to BZ 824318) (ffranz@redhat.com)
- Merge pull request #53 from J5/master (contact@fabianofranz.com)
- extra space caused line continuation to fail (johnp@redhat.com)
- bug #826788, 826814 - fix wording (johnp@redhat.com)
- Merge pull request #51 from fabianofranz/master (johnp@redhat.com)
- Fixes BZ 824318, workaround for older net/ssh versions (usually Mac platform)
(ffranz@redhat.com)
- fixes bz 826853 - del old config file to make sure new one gets created
(johnp@redhat.com)
- make spec tests pass again (johnp@redhat.com)
- add ENV['LIBRA_SERVER'] to config options (johnp@redhat.com)
- bz 822833 - make commands read from correct configs (johnp@redhat.com)
- Totally reverted snapshot create and restore to native when not on windows
(ffranz@redhat.com)
* Wed May 30 2012 Adam Miller <admiller@redhat.com> 0.93.16-1
- Merge pull request #49 from fabianofranz/master (contact@fabianofranz.com)
- Removed warning on Mac platform (ffranz@redhat.com)
- use SSH::Net to load public ssh fingerprint (johnp@redhat.com)
- Fixes BZ 824741 (ffranz@redhat.com)
- Fixed coverage (ffranz@redhat.com)
- Fixed coverage tests (ffranz@redhat.com)
- Fixes BZ 824312, back to native tar if not on windows (ffranz@redhat.com)
* Tue May 29 2012 Adam Miller <admiller@redhat.com> 0.93.15-1
-
* Tue May 29 2012 Adam Miller <admiller@redhat.com> 0.93.14-1
- Merge pull request #44 from fabianofranz/master (johnp@redhat.com)
- Explanatory comment (ffranz@redhat.com)
- Fixes BZ 823854 (ffranz@redhat.com)
* Tue May 29 2012 Adam Miller <admiller@redhat.com> 0.93.13-1
- fix cmp typo (s/=/==) (johnp@redhat.com)
- make sure we check for uncaught signals if retcode is nil (johnp@redhat.com)
- remove generation of .ssh/config since we default to id_rsa now
(johnp@redhat.com)
- add the server option to the rhc manpage (johnp@redhat.com)
- autocomplete rhc server and rhc setup (johnp@redhat.com)
- Removed duplicated code for rhc app tail and rhc-tail-files
(ffranz@redhat.com)
- Fixed BZ 823448 (ffranz@redhat.com)
- Merge pull request #40 from fabianofranz/master (contact@fabianofranz.com)
- Fixes BZ 823441 (ffranz@redhat.com)
* Fri May 25 2012 Adam Miller <admiller@redhat.com> 0.93.12-1
- Removed vendored libs from coverage reports (ffranz@redhat.com)
- Merge pull request #37 from fabianofranz/master (ccoleman@redhat.com)
- workaround for bug #816338 - no longer get redefine warning
(johnp@redhat.com)
- Vendored libs reorganized (ffranz@redhat.com)
- Fixes BZ 823853 and 824312 (ffranz@redhat.com)
- catch NotImplementedError which is raised for invalid key types
(johnp@redhat.com)
- typo fix s/FileUtil/FileUtils (johnp@redhat.com)
- [wizard] some more scoping issues (johnp@redhat.com)
- 30 threads testing tar.gz file reads (ffranz@redhat.com)
- Removed pr-zlib in favour of zliby to solve pr-zlib multithreading bug, added
more rspec tests (ffranz@redhat.com)
* Thu May 24 2012 Adam Miller <admiller@redhat.com> 0.93.11-1
- Merge pull request #34 from J5/master (ccoleman@redhat.com)
- add rhc setup to help docs (johnp@redhat.com)
- [wizard] fix scoping issue uncovered in tests (johnp@redhat.com)
- [tests] add ssh_key upload stage tests (johnp@redhat.com)
- [tests] implement create ssh key tests (johnp@redhat.com)
- [tests] implement File.chmod as a noop for FakeFS (johnp@redhat.com)
- allow home_dir to be set in the configs so it can be set for tests
(johnp@redhat.com)
- use FileUtil instead of Dir so it works with FakeFS (johnp@redhat.com)
- [tests] implement the write config stage checks (johnp@redhat.com)
- [tests] stub out some http requests in wizard tests (johnp@redhat.com)
- [tests] use the more reliable terminal IO api (johnp@redhat.com)
- [tests] utilize the new mock terminal IO api (johnp@redhat.com)
- [tests] move libra_server def up (johnp@redhat.com)
- [tests] require fakefs (johnp@redhat.com)
- [tests] make it easier to read and write the mock terminal streams
(johnp@redhat.com)
- make WizardDriver a mixin and allow it to access the stages array
(johnp@redhat.com)
- [tests] stub out wizzard tests (johnp@redhat.com)
* Thu May 24 2012 Adam Miller <admiller@redhat.com> 0.93.10-1
-
* Thu May 24 2012 Adam Miller <admiller@redhat.com> 0.93.9-1
- Merge branch 'master' of github.com:openshift/os-client-tools
(ffranz@redhat.com)
- Fixed a helpers bug (ffranz@redhat.com)
* Wed May 23 2012 Adam Miller <admiller@redhat.com> 0.93.8-1
- Improved coverage (ffranz@redhat.com)
* Wed May 23 2012 Adam Miller <admiller@redhat.com> 0.93.7-1
- Improved rspec syntax (ffranz@redhat.com)
- Removed deprecated herpers, added specific .rb for json and targz helpers,
json and targz tests (ffranz@redhat.com)
- Merge pull request #29 from J5/master (ccoleman@redhat.com)
- Merge pull request #31 from bdecoste/master (contact@fabianofranz.com)
- US2307 (bdecoste@gmail.com)
- fix (johnp@redhat.com)
- Merge remote-tracking branch 'origin/master' into j5 (johnp@redhat.com)
- [tests] check for section(:bottom => -1) senario (johnp@redhat.com)
- [wizard] test coverage for formatter helpers (johnp@redhat.com)
- Add RHC::Helpers test for environment variables (ccoleman@redhat.com)
- [wizard] add formatting helpers to get rid of \n (johnp@redhat.com)
- [wizard] change git test (johnp@redhat.com)
- [wizard] use File.open do end blocks (johnp@redhat.com)
- [wizard] use @libra_server instead of hardcoding urls (johnp@redhat.com)
- [wizard] output formatting fixes (johnp@redhat.com)
- [wizard] add an application info stage (johnp@redhat.com)
- [wizard] namespace creation stage added (root@dhcp-100-2-224.bos.redhat.com)
- [wizard] fallback if using PackageKit fails (johnp@redhat.com)
- [wizard] add default name for ssh key based on fingerprint (johnp@redhat.com)
- [wizard] reformat output and add better worded prompts (johnp@redhat.com)
* Tue May 22 2012 Adam Miller <admiller@redhat.com> 0.93.6-1
- Implement simple server status command 'rhc server' and helpers to support it
(ccoleman@redhat.com)
* Tue May 22 2012 Adam Miller <admiller@redhat.com> 0.93.5-1
- Merge pull request #28 from fabianofranz/master (contact@fabianofranz.com)
- Fixed rspec tests (ffranz@redhat.com)
* Tue May 22 2012 Adam Miller <admiller@redhat.com> 0.93.4-1
- Fixes an issue related to leaving a file open when reading snapshot files
(ffranz@redhat.com)
- Merge remote-tracking branch 'upstream/master' (ffranz@redhat.com)
- Fixed tar and gzip bugs on windows, fixed port forwarding bugs on windows
(ffranz@redhat.com)
- [wizard] all stages must return true to continue processing
(johnp@redhat.com)
- [wizard] handle case where the user has no ssh keys, even 'default'
(johnp@redhat.com)
- [wizard] add ability to rerun by calling rhc setup (johnp@redhat.com)
- [wizard] fix print out of command (johnp@redhat.com)
- [wizard] add windows stage which prints out client tool info
(johnp@redhat.com)
- [wizard] add the package check and install phase (johnp@redhat.com)
* Fri May 18 2012 Adam Miller <admiller@redhat.com> 0.93.3-1
- [wizard] use highline say and ask for input and output (johnp@redhat.com)
* Thu May 17 2012 Adam Miller <admiller@redhat.com> 0.93.2-1
- [wizard] check if sshkey is uploaded and if not upload it (johnp@redhat.com)
- remove merge artifact (johnp@redhat.com)
- caught some more places to convert to the Config module (johnp@redhat.com)
- Merges Windows bug fixes (ffranz@redhat.com)
- Back to highline for user input, use * echo on password input
(ffranz@redhat.com)
- Fixes bz 816644 (ffranz@redhat.com)
- get default_proxy from the Config singlton instead of as a magic var
(johnp@redhat.com)
- break out wizard to its own module (root@dhcp-100-2-224.bos.redhat.com)
- Increased timeout when creating scaled apps (ffranz@redhat.com)
- Fixed port forwarding for scaled apps (bz 816644) (ffranz@redhat.com)
- fixed typo (johnp@redhat.com)
- use new Config module (johnp@redhat.com)
- add new config module (johnp@redhat.com)
- quick fix - add --noprompt switch to bypass first run wizard
(johnp@redhat.com)
- Temporary commit to build (johnp@redhat.com)
- Remove native extension builds and update the spec with the necessary RPMs
(ccoleman@redhat.com)
- Newer versions of rspec are loading empty specs (ccoleman@redhat.com)
- Using commander create command infrastructure for registration and a simple
'status' command With RSpec, ensure 100%% code coverage and make <100%% of
required code being covered by tests fail build Add an example 'status'
command that demonstrates registration for simple testing, and add it to
'rhc' (ccoleman@redhat.com)
- Fixes rhc.gemspec (typo during previous merge) (ffranz@redhat.com)
- Merging windows branch (ffranz@redhat.com)
- Add travis build indicator to express/README.md (ccoleman@redhat.com)
- Exclude Gemfile.lock (ccoleman@redhat.com)
- Use a core gemspec file with the appropriate content Change Rake to default
to :test over :package Add a simple RHC module Move autocomplete rhc script
out of lib directory and into autocomplete/ (ccoleman@redhat.com)
- Refactored Rakefile to pull from tasks/*.rake Added more rake test tasks
(like test:functionals) Added dependencies into Gemfile so Travis will
install them Added requirement for gem version of test-unit so we can omit
tests gracefully Added omission code to domain and application tests for now
Merge changes to remove domain name (fotios@redhat.com)
- Validates the snapshot .tar.gz file locally (ffranz@redhat.com)
- Removed native zlib requirement, added vendored pure Ruby zlib (rbzlib)
(ffranz@redhat.com)
- Removed highline gem, using our own prompt solution (ffranz@redhat.com)
- Ported rhc app snapshot to pure ruby, unified code with rhc-snapshot
(ffranz@redhat.com)
- Ported rhc-snapshot to minitar (ffranz@redhat.com)
- Ported tar command to pure ruby using minitar and zlib ruby
(ffranz@redhat.com)
- Improved error handling and capturing sigint (ffranz@redhat.com)
- Port checking and port forwarding now working with Net::SSH
(ffranz@redhat.com)
- Forwarding ports through net::ssh (todo: convert list_ports also)
(ffranz@redhat.com)
- Completely removed json gems in favour of vendored okjson.rb
(ffranz@redhat.com)
- Added highline dep :( but passwords work properly in windows now
(mmcgrath@redhat.com)
- removed s.extensions because it caused the gem to get flagged as native this
causes issues in windows (mmcgrath@redhat.com)
- Added new deps (Mike McGrath)
- replacing libra_id_rsa with standard id_rsa (Mike McGrath)
- remove openssh dep on tail-files and use Net::SSH instead (Mike McGrath)
- Wizard now supports uploading keys (among others, see full commit message)
(builder@example.com)
- Added initial wizard, still needs work (mmcgrath@redhat.com)
- Startred adding native ruby ssh bindings (mmcgrath@redhat.com)
* Thu May 10 2012 Adam Miller <admiller@redhat.com> 0.93.1-1
- Merge pull request #18 from rmillner/master (ccoleman@redhat.com)
- bumping spec versions (admiller@redhat.com)
- Let the broker dictate what valid gear sizes are for the user.
(rmillner@redhat.com)
* Wed May 09 2012 Adam Miller <admiller@redhat.com> 0.92.10-1
- Removed large gear size, only small and medium for now (ffranz@redhat.com)
* Tue May 08 2012 Adam Miller <admiller@redhat.com> 0.92.9-1
- Bug 819739 (dmcphers@redhat.com)
* Mon May 07 2012 Adam Miller <admiller@redhat.com> 0.92.8-1
- TA2025 (bdecoste@gmail.com)
* Fri May 04 2012 Dan McPherson <dmcphers@redhat.com> 0.92.7-1
- Revert "Merge pull request #12 from fotioslindiakos/config_file"
(dmcphers@redhat.com)
* Fri May 04 2012 Adam Miller <admiller@redhat.com> 0.92.6-1
- Fix for BugZ#817985. gear_profile was not being passed for scaled apps
(kraman@gmail.com)
- Added config file generation (fotios@redhat.com)
- Added tests and renamed REST tests so they don't get executed by rake since
they rely on a devenv (fotios@redhat.com)
- Fixed checking for debug flag in config file to allow command line to
override (fotios@redhat.com)
* Thu May 03 2012 Adam Miller <admiller@redhat.com> 0.92.5-1
-
* Thu May 03 2012 Adam Miller <admiller@redhat.com> 0.92.4-1
- Fix for BugZ#817985. gear_profile was not being passed for scaled apps
(kraman@gmail.com)
* Tue May 01 2012 Adam Miller <admiller@redhat.com> 0.92.3-1
- Revert "Merge pull request #10 from fotioslindiakos/config_file" - some
failing tests, will retry. Be sure to resubmit pull request.
(ccoleman@redhat.com)
- Merge pull request #10 from fotioslindiakos/config_file
(smarterclayton@gmail.com)
- remove rhc-rest removal message (dmcphers@redhat.com)
- Renamed REST based tests so they're not run via rake test (fotios@redhat.com)
- Added documentation to the new functions in rhc-common (fotios@redhat.com)
- Added tests for new config files. Also added a pseudo-fixtures file for
testing and a script to generate that YAML (fotios@redhat.com)
- Broke config file generation down into multiple functions (fotios@redhat.com)
- add rake require and rhc-rest obsolete (dmcphers@redhat.com)
- Improved ~/.openshift/express.conf generation - allows us to specify a hash
of config variables, comments, and default values - checks the users
current configuration - preserves modified settings -
restores/updates comments (in case we change something) - adds new
variables and removes deprecated ones - saves the user's old config to
~/.openshift/express.bak In response to
https://bugzilla.redhat.com/show_bug.cgi?id=816763 (fotios@redhat.com)
- Improved config file generation for
https://bugzilla.redhat.com/show_bug.cgi?id=816763 (fotios@redhat.com)
* Fri Apr 27 2012 Adam Miller <admiller@redhat.com> 0.92.2-1
- Fix for Bugz#812308 (kraman@gmail.com)
* Thu Apr 26 2012 Adam Miller <admiller@redhat.com> 0.92.1-1
- bumping spec versions (admiller@redhat.com)
* Wed Apr 25 2012 Adam Miller <admiller@redhat.com> 0.91.10-1
-
* Wed Apr 25 2012 Adam Miller <admiller@redhat.com> 0.91.9-1
- Removed finding rhc-rest before uninstalling since we can just catch the
uninstall error. This was causing problems on Ubuntu (fotios@redhat.com)
- Changed JSON library checking for only install json_pure if native json fails
(fotios@redhat.com)
* Tue Apr 24 2012 Adam Miller <admiller@redhat.com> 0.91.8-1
- Added ability to remove rhc-rest when this gem gets installed This should
prevent any conflicts between old rhc-rest and new libs/rhc-rest*
(fotios@redhat.com)
- Added rake as a dependency, so extension building will succeed Added rescue
around native json installation and fallback to json_pure (fotios@redhat.com)
* Tue Apr 24 2012 Adam Miller <admiller@redhat.com> 0.91.7-1
- update scaling entry to include jenkins-client-1.4 as embedded cartridge
(davido@redhat.com)
* Mon Apr 23 2012 Adam Miller <admiller@redhat.com> 0.91.6-1
- added --scaling details, fixed some formatting, adding path arg to --config
(davido@redhat.com)
* Fri Apr 20 2012 Adam Miller <admiller@redhat.com> 0.91.5-1
- exit with exit code 0 is --help is invoked (johnp@redhat.com)
- updated --timeout details, fixed typo, removed 'Express' (davido@redhat.com)
* Thu Apr 19 2012 Adam Miller <admiller@redhat.com> 0.91.4-1
- It was decided that the connect-timeout parameter was extraneous.
(rmillner@redhat.com)
- Mixed up variable names (rmillner@redhat.com)
- After discussions; it was decided to just have one timeout parameter and a
connect_timeout config file option which can increase both timeouts from
their defaults. (rmillner@redhat.com)
* Wed Apr 18 2012 Adam Miller <admiller@redhat.com> 0.91.3-1
- Added logic from fotios to skip gems dep installer steps
(admiller@redhat.com)
- Ignore gem dep solver, we use rpm for deps (admiller@redhat.com)
* Wed Apr 18 2012 Adam Miller <admiller@redhat.com> 0.91.2-1
- Fixed paths for new combined rhc package (fotios@redhat.com)
- Moved rhc-rest files into express (fotios@redhat.com)
- Make the timeout parameter specific to the session timeout and add a
connection timeout. (rmillner@redhat.com)
- Following request in bugzilla ticket 813110; further increase the timeout to
120s. (rmillner@redhat.com)
- The default read timeout is causing build/test failures and user-visible
bugs. Increasing the read timeout default to 90s which is 30%% higher than
our current worst-case non-scalable app creation time. (rmillner@redhat.com)
- Fixing extensions so the build will pass (fotios@redhat.com)
- Update Rakefile with move (ccoleman@redhat.com)
- Merge branch 'master' of github.com:openshift/os-client-tools
(dmcphers@redhat.com)
- Add links to the getting started guide (ccoleman@redhat.com)
- Update README.md with recent changes. (ccoleman@redhat.com)
- US2145: properly choosing json/json_pure based on installation environment
(fotios@redhat.com)
- Fixed error output for non-scalable apps (fotios@redhat.com)
* Mon Apr 16 2012 Dan McPherson <dmcphers@redhat.com> 0.91.1-1
- add read timeout (dmcphers@redhat.com)
* Thu Apr 12 2012 Mike McGrath <mmcgrath@redhat.com> 0.90.6-1
- BZ810790: Fixed app scaling payload creation (fotios@redhat.com)
* Wed Apr 11 2012 Mike McGrath <mmcgrath@redhat.com> 0.90.5-1
- Struct::Fakeresponse was not defined in a couple of instances.
(rmillner@redhat.com)
* Wed Apr 11 2012 Adam Miller <admiller@redhat.com> 0.90.4-1
- error out if archive is not found when restoring a snapshot
(johnp@redhat.com)
* Wed Apr 11 2012 Adam Miller <admiller@redhat.com> 0.90.3-1
- Merge branch 'master' of https://github.com/openshift/os-client-tools
(admiller@redhat.com)
- Fixes #807200: added a handler for FakeResponse - error messages related to
scaling apps (ffranz@redhat.com)
* Tue Apr 10 2012 Adam Miller <admiller@redhat.com> 0.90.2-1
- API change in REST api - use domain.id instead of domain.namespace
(johnp@redhat.com)
- corrected end_point in rhc client tools (lnader@redhat.com)
- add port-forward to the list of autocomplete verbs for rhc (johnp@redhat.com)
- Renaming gem extension so builder can find it (fotios@redhat.com)
- initialize global $remote_ssh_pubkeys at the very top of first test
(johnp@redhat.com)
- BZ809335: Added rhc-rest dependency to gemspec and made sure test-unit is
properly installed in 1.9 (fotios@redhat.com)
- BZ810439: Fixed dependency for client tools to require latest version of rhc-
rest (fotios@redhat.com)
- if gnutar exists use that (johnp@redhat.com)
- bug fixes (lnader@redhat.com)
* Mon Apr 09 2012 Dan McPherson <dmcphers@redhat.com> 0.90.1-1
- make sure $remote_ssh_pubkeys is an empty list, not nil (johnp@redhat.com)
- Added scaling support to cli tools (fotios@redhat.com)
- bump spec number (dmcphers@redhat.com)
* Mon Apr 02 2012 Mike McGrath <mmcgrath@redhat.com> 0.89.12-1
- create an error response instead of returning false (johnp@redhat.com)
* Sat Mar 31 2012 Dan McPherson <dmcphers@redhat.com> 0.89.11-1
- remove newlines from help text (johnp@redhat.com)
- error out on app create if domain isn't created yet (johnp@redhat.com)
* Fri Mar 30 2012 Dan McPherson <dmcphers@redhat.com> 0.89.10-1
-
* Thu Mar 29 2012 Dan McPherson <dmcphers@redhat.com> 0.89.9-1
- add Requires dep on rhc-rest (johnp@redhat.com)
- make --info work when there are no domains or multiple domains
(johnp@redhat.com)
- handle empty domains and multiple domains (johnp@redhat.com)
- Solve undefined method [] error. (rmillner@redhat.com)
* Wed Mar 28 2012 Dan McPherson <dmcphers@redhat.com> 0.89.8-1
- add scaling to rhc-app (rmillner@redhat.com)
* Tue Mar 27 2012 Dan McPherson <dmcphers@redhat.com> 0.89.7-1
- Clean up command help (rmillner@redhat.com)
- Creating scalable apps was causing a timeout. Needed to setup an exception
to propagate that back to the end-user. (rmillner@redhat.com)
* Tue Mar 27 2012 Dan McPherson <dmcphers@redhat.com> 0.89.6-1
-
* Tue Mar 27 2012 Dan McPherson <dmcphers@redhat.com> 0.89.5-1
-
* Mon Mar 26 2012 Dan McPherson <dmcphers@redhat.com> 0.89.4-1
-
* Mon Mar 26 2012 Dan McPherson <dmcphers@redhat.com> 0.89.3-1
- Merge branch 'master' of github.com:openshift/os-client-tools
(lnader@redhat.com)
- US1876 (lnader@redhat.com)
- add -g option to rhc-app man page (johnp@redhat.com)
- add rhc-port-forward to the rhc command (rhc port-forward) (johnp@redhat.com)
* Sat Mar 17 2012 Dan McPherson <dmcphers@redhat.com> 0.89.2-1
-
* Sat Mar 17 2012 Dan McPherson <dmcphers@redhat.com> 0.89.1-1
- bump spec number (dmcphers@redhat.com)
- Changed allowed scalable types (fotios@redhat.com)
* Thu Mar 15 2012 Dan McPherson <dmcphers@redhat.com> 0.88.9-1
- Bug 800742 (dmcphers@redhat.com)
* Wed Mar 14 2012 Dan McPherson <dmcphers@redhat.com> 0.88.8-1
- Merge pull request #7 from jwhonce/master (jwhonce@gmail.com)
- targeting LICENSE and COPYRIGHT (jhonce@redhat.com)
* Wed Mar 14 2012 Dan McPherson <dmcphers@redhat.com> 0.88.7-1
- Merge pull request #6 from jwhonce/master (jwhonce@gmail.com)
- named target files (jhonce@redhat.com)
* Wed Mar 14 2012 Dan McPherson <dmcphers@redhat.com> 0.88.6-1
- Merge pull request #5 from jwhonce/master (jwhonce@gmail.com)
- License and Copyright files targeted for wrong directory (jhonce@redhat.com)
* Wed Mar 14 2012 Dan McPherson <dmcphers@redhat.com> 0.88.5-1
- Updated Copyright and License files (jhonce@redhat.com)
- Add gear-size option. (rmillner@redhat.com)
* Mon Mar 12 2012 Dan McPherson <dmcphers@redhat.com> 0.88.4-1
- Modified flag for scaling (fotios@redhat.com)
- fixing bug 800586 - printing git url in case of -no-git and no-dns option
(abhgupta@redhat.com)
- The return values from expose and show-port are not being parsed by the API
and setup behind the scenes as part of scaling. These commands were exposed
for testing and aren't needed any more. (rmillner@redhat.com)
* Fri Mar 09 2012 Dan McPherson <dmcphers@redhat.com> 0.88.3-1
- bump api version (dmcphers@redhat.com)
* Thu Mar 08 2012 Dan McPherson <dmcphers@redhat.com> 0.88.2-1
- Change std size to small (rmillner@redhat.com)
- add medium gear size (rmillner@redhat.com)
- Added some new REST API features to app creation (fotios@redhat.com)
- rename raw to diy in the man pages (abhgupta@redhat.com)
* Fri Mar 02 2012 Dan McPherson <dmcphers@redhat.com> 0.88.1-1
- bumping spec version (dmcphers@redhat.com)
* Fri Mar 02 2012 Dan McPherson <dmcphers@redhat.com> 0.87.8-1
- fix case (dmcphers@redhat.com)
- fix for bug 799375 - rhc app show now returns exit code 1 if app does not
exist (abhgupta@redhat.com)
* Wed Feb 29 2012 Dan McPherson <dmcphers@redhat.com> 0.87.7-1
- fix for bug 798674 - rhc wrapper commands now return the actual exit codes
(abhgupta@redhat.com)
* Tue Feb 28 2012 Dan McPherson <dmcphers@redhat.com> 0.87.6-1
- Update w/ correct license and export doc (jim@jaguNET.com)
* Sat Feb 25 2012 Dan McPherson <dmcphers@redhat.com> 0.87.5-1
- rename jboss 7.0 to jboss 7 (dmcphers@redhat.com)
* Fri Feb 24 2012 Dan McPherson <dmcphers@redhat.com> 0.87.4-1
- print out error message if invalid gear size is passed (johnp@redhat.com)
* Tue Feb 21 2012 Dan McPherson <dmcphers@redhat.com> 0.87.3-1
- Add show-port call. (rmillner@redhat.com)
- update man page for rhc-create-app to reflect the -g option
(johnp@redhat.com)
- add a -g option to specify gear size (johnp@redhat.com)
* Mon Feb 20 2012 Dan McPherson <dmcphers@redhat.com> 0.87.2-1
- Merge branch 'master' of github.com:openshift/os-client-tools
(abhgupta@redhat.com)
- allowing underscores in ssh key names (abhgupta@redhat.com)
* Thu Feb 16 2012 Dan McPherson <dmcphers@redhat.com> 0.87.1-1
- bump spec numbers (dmcphers@redhat.com)
- Bugzilla ticket 768809: The jenkins command line option description breaks up
the flow too much and line wraps poorly. Moved to a note below the argument
description. (rmillner@redhat.com)
* Wed Feb 15 2012 Dan McPherson <dmcphers@redhat.com> 0.86.7-1
- Merge branch 'master' of github.com:openshift/os-client-tools
(abhgupta@redhat.com)
- fix for bug 790987 (abhgupta@redhat.com)
* Wed Feb 15 2012 Dan McPherson <dmcphers@redhat.com> 0.86.6-1
- Merge branch 'master' of github.com:openshift/os-client-tools
(abhgupta@redhat.com)
- fix for bug 790795 (abhgupta@redhat.com)
- Merge branch 'patch-1' of https://github.com/Qalthos/os-client-tools
(abhgupta@redhat.com)
- Fixed some SSH key issues and improved error message specification
(fotios@redhat.com)
- Fix for BZ786230 when account doesn't exist (fotios@redhat.com)
- Tell tar to use the wildcard instead of looking for a folder called '*'.
(Qalthos@gmail.com)
* Mon Feb 13 2012 Dan McPherson <dmcphers@redhat.com> 0.86.5-1
- Rolling back my changes to expose targetted proxy. Revert "Add '--target'
option for expose/conceal port options." (rmillner@redhat.com)
- Rolling back my changes to expose targetted proxy. Revert "The target option
was intended to be optional." (rmillner@redhat.com)
* Mon Feb 13 2012 Dan McPherson <dmcphers@redhat.com> 0.86.4-1
- fix for bug 789928 (abhgupta@redhat.com)
- Merge branch 'master' of github.com:openshift/os-client-tools
(abhgupta@redhat.com)
- fix for bug 789928 (abhgupta@redhat.com)
- Merge branch 'master' of github.com:openshift/os-client-tools
(mmcgrath@redhat.com)
- return the json rep so it can be used (mmcgrath@redhat.com)
* Mon Feb 13 2012 Dan McPherson <dmcphers@redhat.com> 0.86.3-1
- The target option was intended to be optional. (rmillner@redhat.com)
- Add '--target' option for expose/conceal port options. (rmillner@redhat.com)
- bug 722828 (bdecoste@gmail.com)
* Wed Feb 08 2012 Dan McPherson <dmcphers@redhat.com> 0.86.2-1
- Adding expose / conceal ports (mmcgrath@redhat.com)
- remove use of broker_version (dmcphers@redhat.com)
* Fri Feb 03 2012 Dan McPherson <dmcphers@redhat.com> 0.86.1-1
- bump spec numbers and remove combo (dmcphers@redhat.com)
* Fri Feb 03 2012 Dan McPherson <dmcphers@redhat.com> 0.85.12-1
- fix for bug 787120 (abhgupta@redhat.com)
* Wed Feb 01 2012 Dan McPherson <dmcphers@redhat.com> 0.85.11-1
- Merge branch 'master' of github.com:openshift/os-client-tools
(abhgupta@redhat.com)
- fix for bug 786339 - added option -t in the rhc-app man page
(abhgupta@redhat.com)
- Fix for BZ 690465 - Merge changes originally made by jhonce
(aboone@redhat.com)
- rhc-create-app man page: wsgi -> python and rack -> ruby (BZ 786356)
(aboone@redhat.com)
* Tue Jan 31 2012 Dan McPherson <dmcphers@redhat.com> 0.85.10-1
- Merge branch 'master' of github.com:openshift/os-client-tools
(abhgupta@redhat.com)
- fix for bug 785948 - defaulting to bash auto completion if the rhc auto
completion does not find any matches (abhgupta@redhat.com)
* Mon Jan 30 2012 Dan McPherson <dmcphers@redhat.com> 0.85.9-1
- Merge branch 'master' of github.com:openshift/os-client-tools
(dmcphers@redhat.com)
- modification to the usage description (abhgupta@redhat.com)
* Mon Jan 30 2012 Dan McPherson <dmcphers@redhat.com> 0.85.8-1
- exiting with 1 instead of 0 in case rhc-domain-info returns an exit code
other than 0 (abhgupta@redhat.com)
- fix for bug 785647 (abhgupta@redhat.com)
- Merge branch 'master' of github.com:openshift/os-client-tools
(abhgupta@redhat.com)
- fix for bug 785638 (abhgupta@redhat.com)