webmat (owner)

Revisions

gist: 27625 Download_button fork
public
Public Clone URL: git://gist.github.com/27625.git
Embed All Files: show embed
Bash #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Rubygems 1.3.1 incompatible with rbx. Missing constant EACCESS
 
# Either with the dev's bin/ in the path or rbx symlinked in the path,
# I get the following error:
 
$ rbx gem install rack --no-rdoc --no-ri
ERROR: While executing gem ... (NameError)
    Missing or uninitialized constant: EACCESS
 
# Note: Yeah, I should SUDO
 
# Blame reveals EACCESS started being used in 1.3.1
# http://github.com/evanphx/rubinius/blame/master%2Flib%2Frubygems%2Finstaller.rb
# (Just refresh if it craps out)