a simple version manager for Ruby, with a plugin system to modify its behaviour.

learn more… | top users | synonyms

0
votes
1answer
10 views

rbenv install is failing (telling me to install GCC, but it's already installed)

So, my client has me working on a legacy app which is running Rails 2.3.8 and Ruby 1.8.7, so I'm attempting to install the proper version of ruby using rbenv but it keeps giving me this error: → ...
-1
votes
0answers
22 views

Capistrano is throwing a NoMethodError

I've been using Ruby's Capistrano deployment tool for a few years and never had much problems with it at all. Now, after upgrading Ruby to 2.0, I started getting all kinds of errors making it ...
1
vote
3answers
95 views
+200

rbenv continually generating vagrant shim

I am using the latest vagrant with rbenv and various rubies. I am using the latest vagrant, which no longer uses a gem. When I execute a vagrant command I see the following error: rbenv: vagrant: ...
0
votes
0answers
19 views

How do I get rbenv to keep debugging symbols?

I installed the development version of Ruby 2 via rbenv on Mac OS X v10.8.3, and am using it to compile a gem I'm working on. I have a memory problem I want to debug. Unfortunately, whenever I run ...
0
votes
2answers
208 views

Installing ruby-2.0.0-p0 with rbenv BUILD FAILED

So I tried to install ruby through rbenv on my new ubuntu 12.04LTS running on VirtualBox. I got rbenv from https://github.com/sstephenson/rbenv and ruby-build from ...
0
votes
1answer
23 views

How do I get rbenv and textmate to work together?

I tried to trouble-shoot this problem, and found "Configure Textmate 2 for rbenv". However, when I try implementing the solution using multiple versions of Textmate Shell variables: version1 of ...
0
votes
1answer
50 views

Setting up env, OSX rbenv and bundle battle

So i have just swapped over to mac from ubuntu and setting up the env has not been as easy as promised. this is the process i followed. installed xcode - then went into the prefrences and ...
0
votes
1answer
42 views

Bundler error while installing factory_girl gem

HI Guys I am using bundler to install the following ruby gems in my Gemfile: group :test do gem 'capybara', '1.1.2' gem 'factory_girl_rails', '4.1.0' gem 'database_cleaner', '0.7.0' gem ...
0
votes
2answers
35 views

rbenv not showing the available ruby versions

I have installed rbenv in my vagrant machine but when I try to list all the available ruby versions rbenv versions then it gives me this output: system (set by /home/vagrant/.rbenv/version) Does ...
1
vote
1answer
42 views

Why is jeklly --server returning errors

I've noticed a couple of posts that are similar to this but don't understand how to solve the issue. I have rbenv with ruby 1.9.3-p392 installed and get the following error when I run jekyll ...
2
votes
0answers
40 views

Jruby on Mountain Lion

I have installed rbenv an am successfully running ruby 2.0.0dev (2013-02-08 trunk 39161) [x86_64-darwin12.3.0] as shown through terminal using "ruby -v" However, in trying to add any jruby-1.7.x ...
1
vote
3answers
168 views

Ruby 1.8.6 `gem install` segfaults with “abort trap 6”

I can't install any gems on my fresh rbenv-installed Ruby 1.8.6 on Mountain Lion. gem install segfaults and the shell prints "Abort trap: 6": $ RUBYLIB= RUBYOPT= bash $ gem install --verbose bundler ...
2
votes
2answers
205 views

-bash: ruby: command not found

hyperrjas@serv1:~$ rbenv global 1.9.3-p392 hyperrjas@serv1:~$ rbenv local 1.9.3-p392 hyperrjas@serv1:~$ which ruby-build /usr/local/bin/ruby-build hyperrjas@serv1:~$ rbenv versions * 1.9.3-p392 (set ...
0
votes
1answer
83 views

“spawn.h not found” while installing octopress on Cygwin

I have been trying to install octopress on cygwin. I have googled but no avail. I hope that someone can suggest a hack (no matter how complicated) to resolve this. I followed the octopress ...
0
votes
1answer
86 views

What's the difference between rbx-2.0.0-rc1 and rbx-2.0.0-dev?

On rbenv (ruby-build), what's the difference between rbx-2.0.0-rc1 and rbx-2.0.0-dev? I came across https://twitter.com/veganstraightedge/status/315641493245267969 , but that made me more, rather ...
0
votes
1answer
197 views

Rails production environment with rbenv and ruby-build [closed]

I wanted to know if anyone is using rbenv with ruby-build in production, and if people can shed some light on any gotchas or insights on their experience. Many thanks.
0
votes
1answer
76 views

uninitialized constant RUBY_ENGINE

I've just installed Ruby 1.9.3-p374 into rbenv and am bundling for an application I am working on. However, when the bundle gets to binding_of_caller I see the following error: ...
1
vote
1answer
283 views

Rbenv not working

I installed ruby 2.0 into ~/.rbenv/versions last and now nothing but that is available $ rbenv versions system *ruby-1.9.3-p392 (set by /apps/test_app/.ruby-version) ruby-2.0.0-p0 $ ruby -v ruby ...
2
votes
1answer
297 views

rbenv: command not found in Jenkins execute shell after moving rbenv from rvm

I moved to rbenv from rvm on Ubuntu Server. When I use rvm, there is no trouble bundle. After moving rbenv I got "command not found" error in Jenkins execute shell. I imploded and removed rvm. removed ...
2
votes
2answers
136 views

reinstall every gem for each ruby version?

I just installed Ruby 2.0.0 using rbenv and set it to the global ruby version for my system. Since 2.0 is compatible with 1.9.3, I tried to start up a Rails project with it, but got the following ...
0
votes
1answer
59 views

Middleman installed but binary cannot be found

I just installed Middleman on my Mac (OS 10.8.2) but am unable to generate a new project. I have Xcode installed. Can anyone tell me what I might have done wrong? $ middleman init moi -bash: ...
1
vote
1answer
222 views

gem check errors (registered but missing gems) after installing ruby 2.0.0-p0 with rbenv install

Everything works fine with my installation of ruby 1.9.3. $ rbenv global 1.9.3-p385 $ gem list *** LOCAL GEMS *** bigdecimal (1.1.0) io-console (0.3) json (1.5.4) minitest (2.5.1) rake (0.9.2.2) ...
1
vote
1answer
129 views

LoadError: dlopen(digest/sha1.bundle): Symbol not found: _rb_Digest_SHA1_Finish

Ruby stopped working on my brother's machine recently. gem commands rails server rails console All failed with the following error: $ irb irb(main):001:0> require 'digest/sha1' LoadError: ...
0
votes
1answer
112 views

bundle fails with rake error on vagrant

I've been following the railscast on setting up Vagrant with rails found here: http://railscasts.com/episodes/292-virtual-machines-with-vagrant I have rbenv running on vagrant with a slightly more ...
2
votes
1answer
146 views

rbenv installing ruby checksum mismatch osx

I have successfully installed rbenv and ruby build on mountain lion. Running rbenv install 1.9.3-p392 ends with: checksum mismatch: ruby-1.9.3-p392.tar.gz (file is corrupt) expected ...
1
vote
1answer
56 views

Capistrano Ruby Security Error

Capistrano is erroring out on this command * executing "cd -- /home/root/apps/case/releases/20130221234114 && bundle exec rake RAILS_ENV=production RAILS_GROUPS=assets assets:precompile ...
2
votes
1answer
115 views

How to stop making tmux auto setting RBENV_VERSION

tmux is auto setting RBENV_VERSION when I start tmux... Anyone know how to stop it? Because it auto sets it, I need to do $ export RBENV_VERSION to unset it and make .ruby-version work. Thx.
0
votes
1answer
355 views

Trying to install ruby 1.9.3 with rbenv but keep getting ruby 1.8

Here is a list of commands that I have run to try and install ruby 1.9.3-p0 with rbenv but every time I run ruby --version I get 1.8.23. I'm not sure why this is? Anderss-MacBook-Pro:anchor ...
0
votes
2answers
158 views

Error installing localtunnel

I run sudo gem install localtunnel and I get the following output. Now I am used homebrew to instal rbenv to install ruby and when i run brew doctor it says xcode is out of date but when i open up ...
2
votes
1answer
116 views

Bundle error when deploy with capistrano(rbenv)

I use capistrano to deploy my rails app to my vps. And i have problem when cap deploy update. The error message is like this: ** [out :: 1] Gem::Installer::ExtensionBuildError: ERROR: Failed to ...
2
votes
1answer
118 views

rbenv clobbering my gem INSTALLATION DIRECTORY when using system

I want to use rbenv for setting ruby versions on a project per project basis. Otherwise, I want to use my default system ruby setup for everything else. The problem I am having is the even though ...
0
votes
0answers
136 views

Capistrano RBENV path production error: failed: "env PATH=/home/user_with_rbenv/.rben

I have 2 SSH users. 1 which have rbenv installed. I have watched the railscast about deploying to a VPS and some users have solved the problem with added the rbenv path. set :default_environment, ...
4
votes
1answer
292 views

Why is no Ruby script found in input (LoadError)?

Ruby is installed by rbenv. $ ruby -v ruby 1.9.3p327 (2012-11-10 revision 37606) [i686-linux] $ which ruby /home/user/.rbenv/shims/ruby $ which sass /home/user/.rbenv/shims/sass $ gem list ...
0
votes
0answers
134 views

bundle install seems to use the Wrong postgres

so here is what it looks like when i try to run bundle install: Installing pg (0.14.1) with native extensions Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native ...
0
votes
1answer
189 views

Trying to install ruby 1.9.3 with rbenv

I have just reformatted mt machine, so I am starting from scratch here. I installed home brew than brew update than brew doctor than i ran the following before for rbenv $ brew update $ brew install ...
1
vote
1answer
226 views

RubyMine with rbenv gemset

RubyMine deals with rvm gemset feature but after some research looks like it does not work with rbenv gemset plugin. Should I use the same ~/.gemrc file to specify the GEM PATH to indicate rbenv ...
1
vote
1answer
166 views

ruby installation with rbenv

I installed Ruby with rbenv. When trying to install Rails using gem install rails I get: ERROR: Failed to build gem native extension. I suspect that there is a conflict with my Ruby versions. ...
0
votes
3answers
198 views

rails console not working

I'm trying to open rails console and getting deployer@microv:~$ rails console -bash: rails: command not found My environment ubuntu 12.10 postgresql rbenv-installer unicorn
1
vote
2answers
93 views

deploying to a vps

I'm trying to deploy my app and getting this error with capistrano deploy:cold. Any ideas? My environment includes ubuntu 12.10, postgresql, rbenv-installer, unicorn. * executing "cd ...
0
votes
1answer
94 views

Unable to use bourbon functions with sass (sass -r bourbon.rb fails)

I am having trouble compiling sass files with functions such as linear-gradient or box-shadow. I am getting exactly the same issue as here https://github.com/thoughtbot/bourbon/issues/68 where the ...
1
vote
1answer
188 views

Unable to install gems or RVM

I'm trying to install Foundation with Sass and Compass but am having a difficult time getting this, or any gem installed through terminal. I'm on a Macbook Pro running the latest version of OS X. ...
0
votes
2answers
1k views

OpenSSL error got when install Ruby 2.0.0 via RVM and Rbenv

I am trying to install Ruby 2.0.0-rc1, but got error of OpenSSL. System Env: OS:MacOS 10.8.2 Mountain Lion Compile ENV:Xcode CommandTools 4.6 xcode46cltools_10_86938131a.dmg RVM Installment: rvm ...
1
vote
3answers
658 views

Using $ sudo bundle exec … raises 'bundle: command not found' error

I have installed rbenv on am Ubuntu sever. I can cd into my application directory and run $ bundle without issue, however I need to run $ sudo bundle exec ... and this gets me an error: bundle: ...
1
vote
3answers
211 views

rbenv version display in zsh right-prompt not refreshing

I have the following code in my .zshrc: local ruby_version='' if which rvm-prompt &> /dev/null; then ruby_version="$(rvm-prompt i v g)" else if which rbenv &> /dev/null; then ...
0
votes
1answer
177 views

where are my gems installed with rbenv?

I use rbenv and bunlder, I want open the installed rails gem and insert some debug codes. So I run 'bundle show rails' in a rails project, I get ...
1
vote
1answer
176 views

Ruby version with rbenv keeps slipping back to 1.8.7

I installed rbenv and Ruby 1.9.3-p362 following all the caveats in the installation, then set rbenv global 1.9.3-p362 and can see 1.9.3 when running ruby -v. But, everytime I quit terminal and reopen ...
0
votes
1answer
87 views

RBENV resolve duplicate directories for ruby-build

I recently updated my ruby version for the first time since installing rbenv. On my development machine I discovered that I needed to reinstall bundler and all my gems again for each application using ...
1
vote
1answer
307 views

Rails 3.2 not using bundled gems, Capistrano needs sudo gem install and rbenv not finding rails

I have 2 Rails 3.2.11 apps running on an Ubuntu 12.04 server with Nginx, Unicorn and Postgresql. Deployment is by git and capistrano. After I installed the second app I found that Capistrano would ...
0
votes
1answer
30 views

rbenv with hook

I'm a totally new to ruby and rbenv, but I'm trying to get this 'bwoken' app working with rbenv. This is bwoken, it's for iOS UIAutomation testing: https://github.com/bendyworks/bwoken My question ...
2
votes
1answer
260 views

rbenv not using the shims Ubuntu 12.10

I am using Ubuntu 12.10 and I am trying to get my project up and running using rbenv and bundler. I have successfully installed rbenv from the apt repository and installed the required version of ...

1 2 3 4