Yamashita, Yuu
c920eaa9be
Merge pull request #49 from yyuu/fish-support
Fish support (#32 )
il y a 13 ans
Yamashita Yuu
d2f210d70d
Implement sub-command completion for fish shell
il y a 13 ans
Yamashita Yuu
683036298e
fish doesn't have builtin command equivalent to bash's `hash -r`.
il y a 13 ans
Yamashita Yuu
93b536863f
Support fish shell
il y a 13 ans
Yamashita Yuu
403f4eb7a7
Preserve original IFSs
il y a 13 ans
Yamashita Yuu
4c71f3c5cd
Apply `--with-pydebug` configure option only for Python
il y a 13 ans
Aaron Stone
1cc75362d6
Clarify the search precedence for .ruby-version files.
Closes #432 [ci skip]
il y a 13 ans
Yamashita Yuu
106e4cae90
Homebrew homepage location changed
il y a 13 ans
Yamashita Yuu
10221d51f1
Add 2.4, 2.4.1, 2.4.3, 2.4.4 and 2.4.5
il y a 13 ans
Yamashita Yuu
aff87c3cb3
Rename; pypy-py3k-dev -> pypy3-dev
il y a 13 ans
Yamashita Yuu
b0f640db61
Add pypy3-2.1-beta1
il y a 13 ans
Yamashita Yuu
af0fed2e34
Add pypy-2.1
il y a 13 ans
Yamashita Yuu
e996f2f51a
Merge branch 'py24-multiarch-patch'
il y a 13 ans
Yamashita, Yuu
0fe18d0dc1
Merge pull request #45 from Domon/fix-formatting-in-readme
Fix formatting in the Homebrew section of README
il y a 13 ans
Chun-wei Kuo
cc6c45d7fb
Fix formatting in the Homebrew section of README
il y a 13 ans
Yamashita Yuu
2646c6c159
Add _multiarch_ patch to fix build of CPython 2.4.x
il y a 13 ans
Yamashita Yuu
ce66352f6d
v0.4.0-20130726
il y a 13 ans
Yamashita Yuu
9e133adf99
Merge branch 'ruby-build-20130628'
il y a 13 ans
Yamashita Yuu
b1851f2aff
Update README
il y a 13 ans
Yamashita Yuu
b943e0abff
Import changes from ruby-build v20130628
il y a 13 ans
Ryan Bigg
a2adc61c6f
Merge pull request #428 from almog/master
Homebrew homepage moved to a new location
il y a 13 ans
Almog Kurtser
c7208bf1ff
Homebrew homepage location changed
il y a 13 ans
Yamashita Yuu
d6d556911b
Merge branch 'fix-build-on-suse' ( fixes #36 )
il y a 13 ans
Yamashita Yuu
b8ecd2d6dd
Specify `--libdir` on configure to fix build on openSUSE ( #36 )
il y a 13 ans
Yamashita Yuu
1e5ef005fb
Update setuptools (0.9.5 -> 0.9.7)
il y a 13 ans
Yamashita Yuu
d11db0f0f2
Update pip for Python 2.6+ (1.3 -> 1.4)
il y a 13 ans
Yamashita, Yuu
8e43e72082
Merge pull request #37 from flavio/build_python_2_4
Allow installation of python 2.4.2
il y a 13 ans
Flavio Castelli
ae86a253e2
Allow installation of python 2.4 series
Make possible to install python 2.4.2 and 2.4.6.
il y a 13 ans
Yamashita Yuu
0c38147fcb
Fix build of native modules of Carbon/ncurses on OS X 10.7
il y a 13 ans
Yamashita Yuu
e1ea64b0b9
Merge branch 'issue33'
il y a 13 ans
Yamashita Yuu
fa35e792c1
Backport `libffi-osx` from 2.7.5 to build `ctypes` on OS X ( #33 )
il y a 13 ans
Yamashita Yuu
f5807424c2
Add patches for 2.5 to fix biuld on OS X 10.7/10.8 ( #33 )
il y a 13 ans
Yamashita Yuu
4c006959fa
fix broken string match in `has_broken_mac_llvm_gcc()`
il y a 13 ans
Yamashita Yuu
f9a19e3f24
s/gcc_llvm/llvm_gcc/g
il y a 13 ans
Yamashita Yuu
d5c24f5122
Update setuptools (0.8 -> 0.9.5)
il y a 13 ans
Yamashita Yuu
392e404cc6
Use https instead of http when downloading from pypi
il y a 13 ans
Yamashita Yuu
b04e067c83
update setuptools (0.7.7 -> 0.8)
il y a 13 ans
Yamashita Yuu
ed2937f4d1
update setuptools (0.7.4 -> 0.7.7)
il y a 13 ans
Yamashita Yuu
8848006540
remove meaningless `break` ( fixes #26 )
il y a 13 ans
Yamashita Yuu
7a4fe458b8
Merge branch 'llvm-gcc-4.2-on-osx'
il y a 13 ans
Yamashita Yuu
f76faa88b8
add has_broken_mac_gcc_llvm and use clang if true
il y a 13 ans
Yamashita Yuu
9ce760c798
add `require_cc()` to test existence of CC other than GCC
il y a 13 ans
Yamashita Yuu
152ebe6e61
Download GNU Readline from mirror site of GNU
il y a 13 ans
Yamashita Yuu
1a6eb80bcd
should not declare IFS in toplevel
il y a 13 ans
Mislav Marohnić
db143bb654
rbenv exec: avoid mutating PATH
Enables shelling out from a ruby process started with rbenv to a ruby
process with a different RBENV_VERSION. Fixes #121
This removes the workaround created for #15 and solves `ruby -S` support
by setting RUBYPATH. PATH is never changed.
To illustrate how RUBYPATH changes in various configurations:
PATH=~/bin:~/.rbenv/shims:/usr/bin:/bin
RBENV_VERSION=1.8 ruby -S rake
#=> executes ~/.rbenv/versions/1.8/bin/rake
#=> RUBYPATH=~/bin:~/.rbenv/versions/1.8/bin:/usr/bin:/bin
RBENV_VERSION=2.0 ruby -S rake
#=> executes ~/.rbenv/versions/2.0/bin/rake
#=> RUBYPATH=~/bin:~/.rbenv/versions/2.0/bin:/usr/bin:/bin
RBENV_VERSION=system ruby -S rake
#=> executes /usr/bin/rake
#=> RUBYPATH=~/bin:/rbenv_shims_were_here:/usr/bin:/bin
RBENV_VERSION=1.8 ruby -S rake
#=> executes ~/.rbenv/versions/1.8/bin/rake
#=> RUBYPATH=~/bin:~/.rbenv/versions/1.8/bin:/usr/bin:/bin
il y a 13 ans
Mislav Marohnić
8b043038b8
ensure cleaner PATH in test environment
il y a 13 ans
Yamashita Yuu
745bceac22
update setuptools (0.7.2 -> 0.7.4)
il y a 13 ans
Yamashita Yuu
583f3b0e21
fix build of 3.4-dev. append existing 3.4 at the last.
this is because `hg` (which is a dependency of *-dev build) might be
installed in existing pyenv versions.
il y a 13 ans
Yamashita Yuu
cc9c72747a
v0.4.0-20130613
il y a 13 ans
Yamashita Yuu
b473f7a271
add CHANGELOG.md
il y a 13 ans