-
Notifications
You must be signed in to change notification settings - Fork 0
/
History.txt
4163 lines (3978 loc) · 192 KB
/
History.txt
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
= RVM History, thanks be to Git.
== Release 1.7.1
* Remove playful jab.
* Merge pull request #369 from thinkerbot/vbox-test
* added vm test scaffold
* Merge pull request #368 from benmoss/patch-1
* Fix some typos
* I have to stop doing so many things at once. ... Nah... who am I fooling? :)
== Release 1.7.1
* Merge branch 'master' of git.overnothing.com:rvm
* Rake is now stable at 0.9.2, good default there.
* Perhaps this will help solidus-river.
* Merge pull request #366 from deryldoucette/master
* Made NOTE: part green as well just to ensure people see it.
* Fixed and color coded per-project rvmrc example.
* Added information to 'rvm notes' about the >= 1.7.0 per-project .rvmrc toggle.
* Account for Lion default clang in packages also.
* Bugfix for zsh, array indexing differences are always good for a certain kind of chuckle.
* Turns out we already had a History.txt file :)
* Merge pull request #365 from burningTyger/rdoc
* rdoc instead of markdown
* space cadet.
* The redundency bothered me.
* On long reflection, 90% of the issues I have seen are to do with rvm_path setting. If you are root, /usr/local/rvm If you are a user, $HOME/.rvm
== Release 1.7.0
* Since this is not read anyway, I might as well have some fun with it!
* Default rvm_project_rvmrc to off, set rvm_project_rvmrc=1 in ~/.rvmrc to enable. Oh wow, you mean you could toggle it??? Yes. Always could. Wow I should have asked!! Yes... yes you should have... Amazing how much you learn by simply asking a question...
* Added missing example.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* RVM History, thanks be to Git.
* Merge pull request #364 from jfredett/master
* fix typo (doubled 'bison') in arch bootstrap script and in script/notes
* Merge pull request #363 from aghecht/master
* Adding missing shell functions
* Merge pull request #362 from ognevsky/fix-typo-in-implode
* Fixed typo in implode
* Correcting install messages.
* fix local arrays in trusting
* fix trusting on zsh
* Merge pull request #361 from zaadjis/master
* Fixed untrusting rvmrcs.
* Copy paste can get you into trouble sometimes ;)
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Swiped md5 code from BDSM
* Merge pull request #359 from agibralter/master
* Allow hooks directory or hooks to be symlinked.
* Merge pull request #358 from chrismealy/master
* Added automake (to get aclocal) to dependencies for Ubuntu.
* Merge pull request #357 from tabletcorry/master
* Merge branch 'master' of github.com:wayneeseguin/rvm
* prevent duplicate suffixing
* cleanup.
* Cleanly return in case of not in a git repository tree.
* Add a check to FQ rvm_path
* Merge pull request #356 from dsedivec/master
* Allow irb switches to set the prompt mode
* Merge pull request #354 from lribeiro/master
* Merge pull request #355 from ncreuschling/master
* removed duplicate dependency from installation notes
* we dont need to depend ant dist to build jruby, ant jar is enough and a lot faster
* Merge pull request #353 from MagLev/MagLev-26355
* do not require double -- after --name
* do not pass args before --
* Merge branch 'master' of github.com:wayneeseguin/rvm
* do not pass args before --
* Updated to MagLev-26355
* Merge pull request #352 from meqif/master
* Fixed zsh bug when glob_subst is set.
* use a local for the file looping over.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Added popd hijack.
* Merge pull request #351 from goncalossilva/master
* added gcdata patch for 1.9.3-preview1
* added gcdata patch for 1.9.2-p290
* Merge branch 'master' of github.com:wayneeseguin/rvm
* cleaning mri detection for other rubies
* Merge pull request #349 from deryldoucette/master
* remove test output
* manual printf as find not allways supports it
* fix detection mri rubies
* Some cli cleanup.
* Fixed errant help message. Was displaying 'rvm package' rather than 'rvm pkg' as it should.
* flipNzBit!
* Merge pull request #347 from mblair/master
* so it's like the others
* tyop.
* Really? Homebrew? Have another...
== Release 1.6.32
* Ruby 1.9.3-preview1 is now default 1.9.3
* Merge pull request #346 from amarshall/rbx-1.2.4
* Rubinius 1.2.4
* Merge branch 'master' of github.com:wayneeseguin/rvm
* fix --no-tcmalloc on OSX when user provided options
* Initial groundwork for "rvm group" feature, untested
* Merge pull request #345 from tricknotes/master
* Changed package to pkg on README
* make rbx work
* Merge pull request #344 from tsykoduk/master
* Merge branch 'master' of github.com:wayneeseguin/rvm
* fix bunzip2 error
* changed package to pkg on help text to correctly reflect real command
== Release 1.6.31
* git it done man, git it done.
* NO Effin Comment. I am with @joedamato on this one.
* Allow 1.9 in dependency check for Rubinius, requiring MRI.
== Release 1.6.30
* RubyGems 1.8.6 as default, w00t!!!
== Release 1.6.29
* claening
* restore jruby hook code, it is already disabled by default
* Merge branch 'master' of github.com:wayneeseguin/rvm
* no default jruby/ng on install, persist hooks x flag on install
* make 1.9.3-head working
* fix reading db
* Dismount.
== Release 1.6.28
* "rvm refresh ..." => "rvm reinstall" as suggested by v0n
* Feature: rvm refresh 1.9.2 ~ equivalent to rvm remove 1.9.2 ; rvm install 1.9.2
== Release 1.6.27
* Removed ebuilds.
* Also set CC on Darwin for 1.9 Rubies, for now.
* Updated ebuild for latest release.
== Release 1.6.26
* export CC="/usr/bin/gcc-4.2" if darwin11
* Merge pull request #343 from telemachus/lion
* Add a note/warning about gcc vs llvm on Lion
* Merge branch 'master' of github.com:wayneeseguin/rvm
* fix installer to not make jruby hook +x when it was -x once
* No comment.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* improved jruby support, allow to set per project options (in .rvmrc)
* Merge pull request #342 from MagLev/MagLev-26231
* Updated to MagLev-26231
* update support for ubuntu
* Merge pull request #341 from anl/master
* Merge remote-tracking branch 'rvm/master'
* Adjusted logic.
* Merge pull request #340 from joshuacronemeyer/master
* Merge remote branch 'upstream/master'
* change fetch script to account for the fact that curl wasn't giving an error when it got a 404. fetch should fail in that case use -f switch to ensure it.
* Merge pull request #339 from psanford/fix_global_rvm_path
* Fix "grep: Invalid range end" messages on FreeBSD.
* Fixed rvm.sh setting path for global installs.
* Fix FreeBSD "pw groupadd" syntax.
* Merge pull request #337 from MagLev/MagLev-26197
* Wrestling the ZSH beastiality beast.
* Updated to MagLev-26197
* Fixed incorrect formatting and inconsistency.
* Adjusted testing for teardown.
* Merge pull request #321 from darren-fhf/master
* Bugfix in rvmrc generator.
* Updated ebuild for latest release.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* fix after
== Release 1.6.25
* Merge branch 'master' of github.com:wayneeseguin/rvm
* fix removing jruby functions
* jruby hook enabled by default
* note about after_use hooks
* fix hooks installation
* Let us not forget about zsh :)
* after_use hooks must be executable to be turned on now.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Added rubygems diretory.
* Fixing unsets.
* Merge pull request #336 from jzacsh/master
* Merge branches 'master' and 'master' of git://github.com/wayneeseguin/rvm
* Fixing bug introduced in 203257a by pull request #333, case-modification is a bash4ism [1].
* More .gitignore files.
* pkg
* pkg!!!
* hooksssssssssssssssss
* Minor tweaking of awesome work by mpapis.
* Merge pull request #335 from mpapis/ng
* fix after_use hooks, add jruby --ngserver support
* Good cop. Bad cop.
* Why... whatever could I be up to?
* Merge branch 'master' of github.com:wayneeseguin/rvm
* package :)
* Merge branch 'master' of github.com:wayneeseguin/rvm
* pkg :)
* Merge pull request #333 from jzacsh/master
* Missed one.
* Bombs away!!!
* pull #333: implified logic for user simply hitting [enter] key.
* using case in place of if for possible "yes" or "no" in user-response.
* taking advantage of the printf that was already there; a whee-bit nicer.
* making sure that the while condition actually make sense. utilizing boolean-ish~ness with bash arithmetic, ease of reasdability. lower-casing response immediately.
* Merge branch 'master' of git://github.com/wayneeseguin/rvm
* Merge pull request #334 from t-nagamatsu/patch-1
* Updated ebuild for latest release.
* Hook code cleanup.
* Updated ebuild for latest release.
== Release 1.6.24
* Merge pull request #331 from jrep/master
* Always store project .rvmrc trust keyed by the full, only slightly munged, path Prune old-style md5-keyed entries during install Mention all this in notes
* changed each option sequence. unexpected error won't occur to run 'package install zlib' on Mac OS X 10.6. "ERROR: Error running '/*/make install', please read /*/make.install.log"
* Merge pull request #330 from griff/master
* simplified prompt for rvmrc trust, infinate loop not a threat, as user can interrupt script at any time.
* updated copy to no longer reference `less` pager, as it seems cat is used now for security purposes.
* simplified checking of params.
* yoda~ish logic from [not, else] to [if, then]
* Updated ebuild for latest release.
== Release 1.6.23
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Ruby 1.9.2 p290 is now default.
* Recall the checksum of a trusted project .rvmrc.
* Added code to set rvm_user_install_flag in scripts/initialize
* Merge pull request #328 from gabemc/master
* Merge pull request #329 from biow0lf/master
* Merge branch 'master' of github.com:wayneeseguin/rvm
* rvmsudo: fix vairable values with spaces
* Add ruby-1.9.3-head
* Making md5sum the default executable, to fix an issue on Cygwin, which doesn't have a correctly formatted MACHTYPE.
* Merge pull request #327 from nibrahim/master
* Escape grep
* update instructions for reload
* fix variable values containing spaces
* yaml v0.1.4
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Installer adjustment.
* Merge pull request #326 from arunagw/jruby163_test
* Tests added for JRuby-1.6.3
* Merge pull request #325 from terabyte/master
* Fixed error message when you 'gemset create' before 'use ruby'.
* Updated ebuild for latest release.
== Release 1.6.22
* JRuby 1.6.3
* Merge pull request #323 from andrew/master
* Merge pull request #324 from mhorbul/master
* use TMPDIR value or /tmp by default. This will allow to update rvm when /tmp is mounted with noexec flag
* Updated rails bootstrap script to install rails 3.0.9
* Merge branch 'master' of github.com:wayneeseguin/rvm
* inform user about reload\!
* reworked rvmsudo: forward all rvm variables (and possibly more)
* fix loading/reloading rvm
* Merge pull request #322 from MagLev/maglev-newMac
* Handle pre-installed gems for MagLev
* add libxslt for yum: needed in CentOS 5.6
* Merge branch 'master' of github.com:wayneeseguin/rvm
* fix capistrano :system for rvm 1.6.21
* Updated ebuild for latest release.
== Release 1.6.21
* Merge pull request #320 from koraktor/ruby-1.8.7-p352
* Merge branch 'master' of github.com:wayneeseguin/rvm
* make rvm ruby lib work properly with 1.9.2
* Ruby 1.8.7 has been updated to patch level 352
* Merge pull request #319 from kbrock/master
* rvm wrapper now properly symlinks to a command with an absolute path
* fix zsh installation (process env persistance)
* always export rvm_path (sourced from .rvmrc)
* silence pushd/popd
* Merge pull request #318 from danhealy/master
* rvm_prefix does not have a trailing slash
* Merge pull request #317 from dplummer/patch-1
* Fix skipping extract step for REE
* fix root 'user' installation
* Merge pull request #316 from tylerhunt/patch-1
* Fixed a typo in the gemset_empty() warning.
* Merge pull request #314 from griff/master
* Merge branch 'master' of https://github.com/wayneeseguin/rvm
* Restructured how the - separator gets inserted in rvm-prompt to remove the need for sed editing at the end
* fix defaults to root
* fix rvm self contained feature
* Merge pull request #313 from griff/master
* Found a few log calls that was missed when logging was pulled internal
* Merge pull request #312 from cobracmder/master
* made minor grammar changes
* Merge pull request #311 from cobracmder/patch-1
* Minor grammar changes
* Merge pull request #310 from MagLev/MagLev-26063
* Updated to MagLev-26063
* Merge pull request #307 from threedaymonk/master
* Merge pull request #309 from MagLev/maglev-newMac
* Merge pull request #308 from justinko/master
* Fix problem causing selector to download/compile curl
* Merge pull request #306 from MagLev/maglev-newMac
* spellcheck
* Correct spelling of possessive its
* Fix up GemStone version for "rvm install maglev-head"
* rvm_gemstone_version
* Merge pull request #305 from MagLev/maglev-newMac
* Fix bad location for uncompressed GemStone directory
* Array! Yay!
* Merge pull request #304 from iangreenleaf/master
* Missed a spot! Spot! There you are lil guy!!!
* Anyone else hear circus musik?
* Cleanup, aisle MagLev.
* scripts/base in maglev.
* Only add users to group if thy aren't members
* Check users against passwd file
* Merge pull request #303 from MagLev/maglev-newMac
* Change so RVM doesn't override preinstalled RubyGems for MagLev
* Merge branch 'master' of github.com:wayneeseguin/rvm
* bashrc
* Merge pull request #302 from szTheory/master
* fixed issue where Result#initialize would blow up if status was false, giving (NoMethodError: undefined method '[]' for false:FalseClass) on result.rb:14
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Try exporting rvm_path.
* Merge pull request #301 from Spaceghost/master
* Merge pull request #300 from MagLev/maglev-newMac
* Made rvm always create a hooks directory.
* Handled case where MagLev arch was x86-64 but file is i386
* Merge pull request #298 from mpapis/master
* Merge pull request #299 from MagLev/MagLev-25987
* Updated to MagLev-25987
* fix macport manage script
* Merge pull request #296 from buysse/improve_rvmsudo
* Merge pull request #295 from geemus/master
* Merge pull request #294 from gstark/fix_logging_output_tput_styling
* Merge pull request #293 from HeSYINUvSBZfxqA/master
* Merge pull request #297 from remear/master
* Added strings option to gemset listings. rvm gemset list strings
* Added support for sudo flags (such as -H) to the rvmsudo script
* [help] add use docs
* [help] add uninstall docs
* [help] add remove docs
* Removed the unset for rbxopt, allow it for all rbx installs.
* Detect interactive shell by looking at STDOUT for colorized logging.
* quote --no-same-owner option with tar command for ree/maglev
* 2.0.0pre @tmorini :)
* Merge pull request #292 from mblair/master
* typo fix
* Use RVM path.
* Updated ebuild for latest release.
== Release 1.6.20
* Updated ebuild for latest release.
* Truncate logs so that logs reflect last run.
* A tweaking we will go, a tweaking we will go...
* rvm_install_args
* rbx is not compatible with rbx :-p
* For rbx allow args to be passed through directly to configure.
* Account for name case.
* rbx counts too ;)
* rvm install rbx-2.0.0pre will work tomorrow ;)
* Updated ebuild for latest release.
== Release 1.6.19
* Bugfix, we have ruby at this point, might as well use it to generate a yaml output of the env ;).
* Try that rboyd...
* Move --no-same-owner inside.
* Put back an empty file.
* Merge pull request #291 from indirect/master
* Only track the latest of each point release in known.
* Stop forcibly setting BUNDLE_GEMFILE for now, because it stays set forever.
* Remove bundle shell function for now
* Added missing sources.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Cleaning up manage script by breaking it out into files.
* Merge pull request #290 from swhitt/master
* Running "bundle" by itself is the same thing as running "bundle install".
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Bugfix in installer thanks to yonahw.
* Merge pull request #289 from mpapis/master
* fix BUNDLE-INSTALL(1) BUNDLE-INSTALL(1)
* Merge branch 'master' of github.com:wayneeseguin/rvm
* ignore RybMine configuration
* handle BUNDLE_GEMFILE, added default for projects that do not provide it
* Merge pull request #288 from shtirlic/patch-1
* Fix for zsh.
* ensure not finding the function.
* Altered rvm loading.
* better handling bundler, do not generatecomments for PATH
* do not create separate bin dir for bundler, let it overwrite gem
* "life" is the better word than "work" ;)
* Some manage cleanup.
* Merge!
* stars.
* Acting on comment suggestion from githuh.
* Merge pull request #287 from mpapis/master
* fix bundle binstubs
* Merge pull request #286 from mpapis/master
* improved bundle commnad
* Helps to actually git add the file.
* Account for bundler in rvm itself now.
* Merge pull request #284 from docwhat/master
* Merge pull request #285 from mattalbright/master
* This fixes the bug where system-installed RVM on Mac doesn't properly add the users to the rvm group. To properly add Mac users to the rvm group, list all users that are in the "staff" group, which seems to mean can login.
* Typo in example rvmrc
* Merge pull request #283 from ncreuschling/master
* Escape! Escape!
* Merge branch 'master' of github.com:wayneeseguin/rvm
* bump version defaults in bootstrap script.
* fixed typo
* Merge pull request #282 from MagLev/MagLev-25913
* Updated ebuild for latest release.
== Release 1.6.18
* Added lines for bundler users to generated rvmrc (rvm --create --rvmrc use X@Y)
* Added a comment.
* Updated ebuild for latest release.
== Release 1.6.17
* More robust generated rvmrc files, better error handling.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* The proper thing to do is to use autoreconf, not autoconf. Learning autotools proper usage is highly recommended.
* Updated to MagLev-25913
* Merge pull request #281 from nwjsmith/master
* Fix typo
* Merge pull request #280 from mpapis/master
* Merge branch 'master' of github.com:wayneeseguin/rvm
* memory note for Rubinius
* added instructions for opensuse
* Merge pull request #279 from ajburton/md5_fix
* fixes test syntax
* vbatts is correct.
* Properly denote the default version of JRuby.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Updated ebuild for latest release.
== Release 1.6.16
* Source packages at the top.
* Such tender love went into the making of this feature :)
* Merge pull request #277 from arunagw/jruby_tests
* Tests added for jruby-1.6.2 #jruby
* Minor cleaning.
* Do not switch rubygems on JRuby.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* JRuby 1.6.2, w00t!
* Updated ebuild for latest release.
== Release 1.6.15
* Merge pull request #276 from ilikepi/fix_missing_then
* Add missing "then" to scripts/rubygems
* Added DESTDIR
* rubygems script cleanup.
* Updated ebuild for latest release.
== Release 1.6.14
* More installer fixes.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* I see stars!
* Merge pull request #275 from mpapis/master
* fix compilation with openssl 1.8.6
* I never thought that I would be doing this :)
* Updated ebuild for latest release.
== Release 1.6.13
* WHY was that not executable???
* More progress cleaning up installer.
* Look, the cure for stupidity consists of space!
* Gotcha you lil buggar!
* More installer refactorings, trying to get to the bottom of that annoying issue.
* Some cleanup of the rvm-installer.
* Only append to profile file if it exists.
* Array start bugfix and gemset script cleanup.
* Somehow it managed to elude me.
* Ensure that scripts that should be executable are.
* Bugfix?
* Bugfix?
* If not connected to an interactive session, return.
* Updated ebuild for latest release.
== Release 1.6.12
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Updated ebuild for latest release.
== Release 1.6.11
* Merge pull request #271 from adevadeh/patch-1
* Merge pull request #272 from yonahw/bad_taste_in_branch_naming_accepted_NOT_encouraged
* Merge pull request #273 from MagLev/MagLev-25876
* Merge pull request #274 from thomasjachmann/master
* fixes installer bug introduced in 10.6.10
* I blame gitflow for this atrocity
* split bunzip into 2 lines, the one-liner fails in RHEL4 for some reason. 2 lines works for RHEL4, RHEL5, Ubuntu, and MacOS, have not tested anything else
* Updated to MagLev-25876
* Updated ebuild for latest release.
* 1.6.10
* Merge branch 'master' of github.com:wayneeseguin/rvm into rbx
* Bugfix: unbound variable in cli.
* Merge pull request #270 from ahamid/master
* add switch for explicit user install setting; helpful with root
* Merge branch 'master' of github.com:wayneeseguin/rvm
* More housecleaning.
* Merge pull request #269 from pvande/master
* Fixed postinstall note output.
* More cleanup.
* only call the command if it is loaded, first install should not error.
* Low hanging fruit plucking.
* Adjusted __rvm_18_compat_ruby to exclude rbx, since we do not want rbx to build rbx.
* Always load the .rvmrc if in an interactive shell (open new tab in same dir).
* Clean up some RubyGems-related duplication.
* Merge pull request #268 from CraigCottingham/rvmselect
* Merge branch 'master' into rvmselect
* Merge branch 'rvmselect'
* Add scripts/functions/developer, from https://gist.github.com/984bd56424be200532d0
* Merge pull request #267 from CraigCottingham/cleanup-bin
* Fix call to match() in __rvm_remove_binaries()
* Began cleaning up the installer.
* Cleaned up wrapper code some.
* Thank yøu bhenderson.
* Updated ebuild for latest release.
== Release 1.6.9
* Fixed an assinine bug thanks to stepheneb.
* Properly test for interactive mode.
* Removed no longer necessary code.
* Updated ebuild for latest release.
* The LOFL I am sick of this shit release!
* Merge branch 'master' of github.com:wayneeseguin/rvm
* LOFL!
* Merge pull request #266 from MagLev/MagLev-25838
* Switch to antialias.
* Corrected ordering.
* Updated ebuild for latest release.
== Release 1.6.7
* Synchronizing the code repetition blocks.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Level the playing field.
* Merge pull request #265 from gabebw/dollar-dollar
* Use cp -f and rm -f when dealing with /tmp/$$
* Updated ebuild for latest release.
== Release 1.6.6
* Updated to MagLev-25838
* Only if prefix is nonempty.
* Adjusted __rvm_project_rvmrc()
* Merge pull request #264 from derekprior/help-updates
* Works with 1.9.* as well. Added bit about 'rvm rubygems remove' from the rvm website.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* set -fu
* Merge pull request #263 from meineerde/setup_rvm_group_users-with-no-users
* Fix setup_rvm_group_users for the case when there are no additional users.
* Tweaked recursive copy.
* Add a reset --hard HEAD on rbx build.
* handle get specially.
* resolution
* s/aptitude/apt-get/g Many users of Debian certainly and probably other Debian-derived distros prefer 'apt-get' to 'aptitude'. For whatever reasons [Ubuntu has actually stopped shipping with 'aptitude' by default](http://www.webupd8.org/2010/06/aptitude-removed-from-ubuntu-1010.html). Without debating the technical merits of either tool, I would say this:
* Merge pull request #259 from matschaffer/patch-1
* More set -u fun.
* set -u should be outlawed :-p
* Bugfix: scripts/functions.
* Removeperpetual d call to display_osx_hint.
* Adjusted rvm path setting.
* Merge pull request #260 from rosenfeld/master.
* Merge pull request #261 from alec-c4/master.
* Added hint for OSX users
* Add example for tweaking Gem options
* Loading cleanup, adjusting more for zsh.
* Bugfix: ZSH random declare. Adjusted rvm_user_install with _flag postfix as that is what it is. Corrected usage of rvm_user_install_flag.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Bugfix: do not allow missetting of rvm pretty print flag to blow up.
* Merged pull request #258 from pweldon/fix_config_user_mv.
* Ensure aptitude is installed.
* fix logic for moving config/user -> user/db
* Merge branch 'master' of github.com:wayneeseguin/rvm
* --no-same-owner is back!!! :)
* Merged pull request #256 from ConradIrwin/sha1-simplification.
* Merged pull request #257 from utkarshkukreti/patch-1.
* Add newline after the error message on running `rvm update`.
* Further simplify SHA1 extraction.
* Merged pull request #253 from bergalath/master.
* Merged pull request #254 from pweldon/fix_user_db.
* Merged pull request #255 from ConradIrwin/master.
* Tidy up, and comment option setting.
* Yeah... I see you too zsh...
* extglobbing fun :)
* Merge branch 'master' of git.overnothing.com:rvm
* Ying, meet Yang.
* Fix user db overrides to use $rvm_user_path/db consistently.
* Updated ebuild for latest release.
== Release 1.6.5
* Using `git rev-parse` instead of `git log --no-color -1` to get the last sha1 commit on current branch so we can remove some treatment.
* Ubuntu sucks arse through a straw.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Merged pull request #251 from ConradIrwin/fix-nonomatch.
* --no-same-owner thanks to ngan.
* Merged pull request #252 from kaerast/master.
* Return on error.
* Removed duplicated flags, thnk you very much arrix.
* added missing dependencies for Centos
* Updated install line in readme, thanks to crankharder for pointing it out.
* -o...
* Correct and clarify resetting of zsh options.
* Updated ebuild for latest release.
== Release 1.6.4
* Wow... that was a brainfart.
* Merge branch 'master' of github.com:wayneeseguin/rvm
* Select if not selected.
* More cleanup prompted by last pull request.
* fixed my brain
* We found you, you little snot
* Trying to do too many things at once :/
* Added rvm_rbx_opts to example rvmrc with comments.
* This part needs more thought.
* More cleanup.
* ...
* ...
* Merge branch 'master' of git.overnothing.com:rvm
* Syntactical Cleanup.
* Added RBXOPT to environment file recording. Cleaned up environment files and code some.
* Defaut RBXOPT to -Xrbc.db and -Xagent.start, overrides by setting rvm_rbx_opt in rvmrc.
* Merge branch 'add_jruby_161_to_known' of https://github.com/sferik/rvm into sferik-add_jruby_161_to_known
* Missed a q.
* Add JRuby 1.6.1 to the list of known rubies
* Merge branch 'fix-install-errors' of https://github.com/chrislwade/rvm into chrislwade-fix-install-errors
* Default to Jruby-1.6.1
* Fix typos.
* Fix errors reported during install.
* Updated ebuild for latest release.
* People define "stable" by version numbers, so here I give them another #daft.
* Added rvm-exec to binscripts installation thanks to arrix.
* Removed eval from end of rvm-exec.
* Stick with builtin.
* Some cleanup.
* Merge branch 'issues/fix-missing-escape' of https://github.com/meineerde/rvm into meineerde-issues/fix-missing-escape
* Merge branch 'MagLev-25716' of https://github.com/MagLev/rvm into MagLev-MagLev-25716
* rvm-installer: fix typo in "--version latest" switch
* Added rvm-exec as per suggestion by Arrix Zhou.
* Updated to MagLev-25716
* Fix another typo
* Fix missing escape
* Slight cleanup of new function.
* Feature: rvm gemset search <gem name> strings
* Feature: rvm gemset search <gemname>
* Updated ebuild for latest release.
== Release 1.6.2
* Adjusted ps1_titlebar as recommended by @chrislwade.
* Merge branch 'MagLev-25681' of https://github.com/MagLev/rvm into MagLev-MagLev-25681
* F'n Solaris.
* already gone!
* Bugfix: rvm_make_flags_flag
* Adjusted ps1_titlebar
* Updated to MagLev-25681
* Merge branch 'master' of https://github.com/skaes/rvm into skaes-master
* Take rubygems to 1.6.2 until I can complete the new feature.
* Fixes bug with calling shopt with ZSH
* run autoconf if the configure script is older than configure.in
* Updated ebuild for latest release.
== Release 1.6.1
* Merge branch 'master' of https://github.com/MagLev/rvm into MagLev-master
* Merge branch 'ps1_titlebar' of https://github.com/thecatwasnot/rvm into thecatwasnot-ps1_titlebar
* Merge branch 'codegnome/issue-001' of https://github.com/CodeGnome/rvm into CodeGnome-codegnome/issue-001
* Merge branch 'codegnome/issue-002' of https://github.com/CodeGnome/rvm into CodeGnome-codegnome/issue-002
* Defaulting Rubygems version to 1.4.2 based on Evan Phoenix's recommendation.
== Release MagLev-25665
* Merge branch 'master' of git://github.com/wayneeseguin/rvm
* Updated ebuild for latest release.
== Release 1.6.0 - https only.
* https AAAAARRRRRGGGGGGHHHHHHHHHHHHHHH
* __rvm_ask_to_trust(): Aligned 'yes or no' prompt.
* Better user messages for __rvm_ask_to_trust().
* Bumped minor version for HEAD.
* Updated ebuild for latest release.
== Release 1.5.4
* rvm use 1.2.3 => rbx-1.2.3
* Ensure extglob is on for r()
* Updated ebuild for latest release.
== Release 1.5.3
* Adding titlebar back for xterm in contrib/ps1_functions
* Altered new git status ps1 feature to minimize external calls.
* Merge branch 'git_status' of https://github.com/carlosgaldino/rvm into carlosgaldino-git_status
* Update to MagLev-25646
* Merge branch 'master' of git://github.com/wayneeseguin/rvm
* Bugfix: adjusted printf.
* Adjusted rm_rf
* nn
* Fixed regression in 'require'
* Update to MagLev-25568. Fixes SEGV in MagLev FFI code on Linux
* show git status
* Removed extra escape.
* Updated branching logic thanks to prompting by hiroshi.
* Merge branch 'fix_branch_select_patterns' of https://github.com/hiroshi/rvm into hiroshi-fix_branch_select_patterns
* Fix patterns for $(git branch)
* Merge branch 'master' of https://github.com/wayneeseguin/rvm into macruby_repo_url_github
* Changed macruby_repo_url to github
* Merge branch 'master' of https://github.com/ashgti/rvm into ashgti-master
* Bugfix: call gemset_import in import(), thanks to hedge-hog.
* Update the ps1_set to escape all of the coloring parts so you can use a separator that is not a new line and not mess up your prompt. See contrib/ps1_functions for more detail.
* Create and add $rvm_bin_path if necessary
* Removed extra fi from removed test.
* Alter calculation of user_install detection.
* Go through full RVM path initialization in rvm-shell.
* Merge branch 'untar-ownership' of https://github.com/meineerde/rvm into meineerde-untar-ownership
* Merge branch 'cleanup_192_pre' of https://github.com/sferik/rvm into sferik-cleanup_192_pre
* Remove all 1.9.2 pre-releases now that 1.9.2 is final and stable
* Add -o parameter to all tar extractions to not use existing users and groups when running as root
* Set $rvm_prefix to actually allow to override the target $rvm_path
* Allow to actually set an install path other than /usr/local/rvm
* Add missing shift to allow '--version latest'
* if exec is called bypass loading libs.
* Merge https://github.com/arunagw/rvm into arunagw-56b6e97
* Merge branch 'master' of https://github.com/goncalossilva/rvm into goncalossilva-master
* Sanity check for the case we are not in a git branch.
* Merge remote-tracking branch 'upstream/master'
* Initialize the variables to make sure they are set.
* Updated ruby186gc for the latest patchlevels. RVM applies patches with -p1, changed patch headings accordingly.
* added the "ruby186gc" and "ruby187gc" patches
* Bugfix: remove symlink if it exists.
* Updated ps1_functions based on discussion with @0x44
* Fixed gems to gemset
* Only chown as root.
* Bugfix: if the hooks files are the same, only run once.
* More replacement of 'gems" to "gemset"
* Replacing gems to gemset in test/unit/gemset_test
* Modified PS4 again.
* Test for jruby 1.6.0. Default is jruby-1.6.0
* added working gcdata patch for mri 1.9.2-p180
* removed non-functional 1.9.3 gcdata patch
* Updated PS4 to a more readable version.
* s/exec/eval/:(
* I am so insanely daft that I make my pet rock look smart :/
* Adjusting rvmsudo for debugging.
* Bugfix: Globbing now works properly in zsh.
* Bugfix: Preserve arguments to rvmsudo.
* Bugfix: Keep bin path default scripts in sync. Copy instead of symlink.
* Bugfix: account for multiple digits and up to three.
* LOFL
* Adjusted binscripts methods.
* Bugfix: version detecting for macruby.
* Adjust for possibility that path is nil?
* Adjust cap integration for the removal of system-wide.
* Updated ebuild for latest release.
== Release 1.5.2
* Ensure etc_profile_file is assigned.
* Empty check.
* Missed gems, environments and wrappers.
* Ensure rvm path dirs exist.
* Explicit instead of implicit.
* vra tyop.
* Rebuild instead of migrate.
* Close if, silly!
* s/rvm_selfcontained/rvm_user_install/g
* More work on profiles.
* tyop
* Are we there yet?
* Automatic user profile setup, Yehuda might yell at me for putting this back ;)
* Always call setup_rvmrc
* Improved default rvmrc logic.
* Respect --path.
* More fine tweaking.
* New tactic, only load the associated rvmrc file :)
* Forcable AND direct!
* be more direct with setting rvm_path.
* dassinine - verb - daft and assinine
* Ahhh it is the token!
* Allow for rvm-installer x.y.z
* chmod +x !
* Determining install path comes first.
* More work on the installer.
* Turn on extended globbing.
* Added new rvm-installer script which combines all functionality of the install-latest install-head and get API.
* Merge branch 'master' of https://github.com/nerdyc/rvm into nerdyc-master
* profile.d scripts must be executable.
* LOL!
* Working on better profile.d logic.
* Update rvm ruby selector script to support MacRuby 0.10.
* .sh :(, thanks bradland !
* Symlink to prefix path bin, not hardcoded to /usr/local/bin
* Use /etc/profile.d if it exists, otherwise fall back on /etc/profile.
* Bugfix: I was a bit overzealous when escaping things :)
* Use the rubygems API as part of manage.
* Give the user more information during root installation.
* Merge branch 'master' of https://github.com/zendesk/rvm into zendesk-master
* Loading rvmrc fits better in install_setup.
== Release 1.5.1 - rvmrc files are now respected during installs.
* Respect main rvmrc files.
== Release 1.5.0, anything less is UNSUPPORTED :)
* Sneeky buggars!
* Updated update head script.
* FI fi fo fum!
* Fun with function names, w00t!
* So how about we actually append to the file, yes? :)
* What is in a name?
* Keep on drillin!
* Move parse args for clarity.
* More root canal work.
* RVM built in installer now handles root installation.
== Release 1.3.2
* MacRuby 0.10, w00t!
* Fixed an insanely daft bug.
== Release 1.3.1
* Fuck you system wide, fuck you.
* Explicitly do not load rvm.
* Determine paths separately from loading RVM.
* Use printf, rvm_error has not yet been loaded yet at this point.
* Lock and load.
* fixing rvm get x.y.z
* Merge branch 'purple-directory' of https://github.com/carlosgaldino/rvm into carlosgaldino-purple-directory
* Merge branch 'master' of https://github.com/zendesk/rvm into zendesk-master
* Refactored Install script, it is now much more readable and maintainable.
* turn off die on error in tmp cleanup trap for shell scripts that enable set -e
* Missed a spot :/
== Release 1.3.0
* Switching to a far superior rubygems download url, w00t!!! Thanks kotique!
* directory is now purple
* Escape as we do not mean a unicode sequence :)
* Added contrib to installer.
* Added ps1_functions to contrib/
* More trailing slash guards.
* Account for odd trailing slashes in install script.
* Remove i386 CPU_TYPE check since new macs return x86_64 Update to version 25506
* Switched from external calls to using $UID as suggested by methods.
* Finishing touches for kiji interpreter thanks to initiative by Blue Box Group.
* Merge branch 'master' of https://github.com/blueboxgroup/rvm into bbg
* Merge branch 'master' of https://github.com/yura/rvm into yura-master
* Merge branch 'master' of https://github.com/erikh/rvm into erikh-master
* Completely removed rvm_interactive_flag, checking directly each time as per recommendation by e2 for zsh.
* Autodetect rvm_interactive_flag every time
* Found a few more places...
* First flushout to add kiji.
* Fix ri generation
* don't need to emerge libxml since it's ruby package in gentoo and required ruby 1.8.7 to be emerged
== Release 1.2.9
* JRuby 1.6.0 is now default.
* Added rbx-1.2.3
* Update to MagLev-25439. Seaside works again.
* Added a project specific hook check.
* Bugfix: hooks :)
* Default to user install.
* Rubygems 1.6.2.
* Bugfix: Ensure we are in the correct directory during git operations for macruby-head
* 1.2.8
* JRuby 1.6.0.RC3
* Added default value for rvm_path.
* Merge branch 'master' of https://github.com/anl/rvm into anl-master
* Fix zsh completion
* correcting the man files installation locations
* ignoring .DS_Store files
* Merge branch 'mkdir_usr_local_lib' of https://github.com/hiroshi/rvm into hiroshi-mkdir_usr_local_lib
* Merge branch 'master' of https://github.com/re5et/rvm into re5et-master
* packages script was broken, typo fixed.
* in case of missing /usr/local/lib directory
* Updated docs for get.
* Added rvm get master which does the same as rvm get head for sensitive people. Moved packaging script functions into functions dir.
* Updated MagLev to 25375 after fixing C-extension problems
* Merge branch 'master' of git://github.com/wayneeseguin/rvm
* Added RubyGems 1.6.1 URL and md5.
* Update to MagLev 25370
* Remove hard-coded /usr/local.
* More progress on expanding the rails_routes script, r() also.
* Added scripts/extras.
* Moved rails CLI helper functions script from contrib to scripts/extras.
* Added rails_routes to rails helper function r() script.
* Added screen test when sourcing rvm .
* Bugfix: zsh cd loading.
* Remove warning from gemset copy.
* Added a comment.
* More cleanup in gemsets.
* Ensure that rvm_gemset_name is unset for gemset copy.
* Unset gemset name.
* Respect PAGER while still protecting from .rvmrc based attacks.
* ZSH auto_name_dirs feature is troublesome :)
* Added comments and a sanity check to the trap.
* Shut your trap!
* Merge branch 'disk_usage_symlink' of https://github.com/ilikepi/rvm into ilikepi-disk_usage_symlink
* fixed gemset completion function .
* Explicit match.
* Directory check on ruby gem home.
* Set current to 1.6.0
* Added md5 and URL for RubyGems 1.6.0.
* Adjust __rvm_fetch_ruby based on suggestions by brixen.
* Add trailing '/' so disk-usage can handle symlinks
* --disable-install-doc flag set by default.
* Merge branch 'master' of https://github.com/pedz/rvm into pedz-master
* Load __rvm_db as part of base.
* Bugfix: The patchlevel tried to run away!!!
* Remove GEM_HOME and GEM_PATH from initialize export.
* Bugfix: load rvm reset where used.
* Merged back in all my previous changes
* Export rvm_ruby_repo_branch
* Silence silly messages.
* Removed no longer necessary n* case from selector.
* Install 1.8.7 dep with a clean env
* Ruby name now propigates in selector.
* te hee!!! You see nothing!
* Remove empty extract target directory.
* Feature: Named rubies can now be any alphanumeric sequence at the end of the ruby string, no more -n necessary. In fact -n will be removed "soon".
* Feature: -n/--name [name] to name a ruby, in addition to -n in ruby string.
* Removed leftover function call.
* Cleanup setup & initialize some more.
* Take that ye variable leech!
* Bugfix: keep exports in cd until the last second.
* Ensuring all vars are set for project rvmrc loading.
* Reorganization and cleanup. scripts/utility => scripts/functions/*
* Missed an exit.
* Added help for install
* Bugfix: hard exit when error occurs during ruby install.
* Bugfix: Proper globbing for rvm gemset import.
* Seperate returned list from rubies list.
* Check for matches first.
* Added ncurses-dev to ruby dependencies on apt based systems.
* Alter __rvm_18_compat_ruby to explicitely exclude macruby,goruby,jruby,anything not matching.
* Added ~amd64 to KEYWORDS in ebuild templates.
* Missed a flag for unset, simplified match()
* Missed a variable for env cleanup.
* Type based removal.
* Removed a bit of redundancy.
* Adjusted installer script sourcing.
* Install check should not be quoted.
* Only install 1.3.7 for Ruby 1.8.6.
* Be far more precise when copying install files and directories over.
* Merge branch 'rbx-1.2.2' of https://github.com/sferik/rvm into sferik-rbx-1.2.2
* Add rubygems 1.5.3
* Add rubinius 1.2.2
* Cleanup unused checksums
* Merge branch 'master' of git.overnothing.com:rvm
* Rename $path to $target in __rvm_rm_rf
* Add in a patch level for rubinius 1.2.2
* Bugfix: stupididity.
* Rebase when pulling.
* Tyop.
* Missed a ;
* All rm -rf calls now use a _slightly_ safer __rvm_rm_rf with some sanity checks in place. Thanks Sven!
* Adding some sanity checks around rms
* Added sanity check to rm for tmp cleanup, suggested by sven schwyn.
* Merge branch 'master' of https://github.com/caius/rvm
* Bugfix: Manage script variable truncation.
* Stop ZSH warning about unmatched globs by setting an option.
* Revert "Supress a warning when cleaning up ./tmp under ZSH"
* Merge branch 'master' of https://github.com/ferrous26/rvm
* Supress a warning when cleaning up ./tmp under ZSH
* Began revising get to be able to specify a specific revision.
* cd will need some work to be configurable for scripts.
* MacRuby latest release is now version 0.9
* More cleanup.
* Bugfix: missing variable name. Thanks tilthouse.
* arg*v!
* rvm tmp path.
* Properly cleanse rvm environment.
* Ignore .rvmrc :)
* Add pkg/ to gitignore.
* Added functions.
* Rollback cd.
* Wrappers and environments.
* Temp path configurable.
* Cleanup, aisle _
* Config path configurable.
* gemsets & hooks.
* rvm_scripts_path configuration variables.
* Added in rvm_archives_path config.
* Missed a "
* Initialize variables.
* Where did they go?!
* Consistently use rvm_rubies_path for ruby installation path setting.
* Merge branch 'master' of https://github.com/MagLev/rvm into MagLev-master
* Removed VERSION.yml symlink.
* Merge branch 'master' of git://github.com/wayneeseguin/rvm
* Added comment to leave the eval.
* Call__rvm_rvmrc_tools for escaping
* Bump head version to 1.2.8
* Updated manifest.
* Merge branch 'master' of git.overnothing.com:rvm
* Updated manifest for only the gem release files.
* Make scripts/migrate deal correctly with the base gemset
* use -eq insetad of = for an integer test
* New release - MagLev 25239
* Merge branch 'system-installer-rev-fix' of https://github.com/fnichol/rvm into fnichol-system-installer-rev-fix
* Fetch more history in install-system-wide when called with --revision.
* Use correct gemset file name.
* Merge branch 'gemsets-import' of https://github.com/docwhat/rvm into docwhat-gemsets-import
* Merge branch 'master' of https://github.com/ferrous26/rvm into ferrous26-master
* Merge branch 'master' of https://github.com/sferik/rvm into sferik-master
* Merge branch 'master' of https://github.com/sikachu/rvm into sikachu-master
* Merge branch 'master' of https://github.com/xing/rvm into xing-master
* Merge branch 'master' of https://github.com/wt/rvm into wt-master
* Update for MagLev 23515
* REE 2011.03 now default for ree.
* fixed typo that prevents cloning ruby via https
* Update installation procedure in README
* Swap find args so that find doesn't complain.
* Unset rvm_ruby_name when cleaning up.
* MacRuby nightly builds are now on version 0.10
* Add 1.9.1-p431 as default 1.9.1
* Non-awk way to import configuration files for gems.
* No grep for you sed I!
* Act on Christian's suggestion to use new current_gemset function in info script.
* Added Christian's function to utility.