You can use gem env to find the directory where gem binaries will be installed. For example, on a Mac OS X system with RVM installed in my home directory:
% gem env | grep EXECUTABLE
- RUBY EXECUTABLE: /Users/jtimberman/.rvm/rubies/ruby-1.9.3-p0/bin/ruby
- EXECUTABLE DIRECTORY: /Users/jtimberman/.rvm/gems/ruby-1.9.3-p0/bin
Generally though, deploying Ruby with RVM or similar compile-from-source strategies takes a long time, and the "shell magic" these tools use can lead to confusion.
Try the Omnibus-built Chef Full stack package. Instructions available here:
Basically, you do this on Linux/Unix platforms.
wget -O- https://opscode.com/chef/install.sh | sudo bash
The install.sh simply examines the local system's platform and architecture and uses that information to compose a URL of the directory in the S3 bucket for the full stack packages for supported platforms.
This installation includes everything above libc for the platform, including Ruby (1.9.2+), RubyGems and other assorted libraries and tools. This means you can still install Ruby in your preferred manner (by using a cookbook, of course) for your Ruby-based applications (if any) without modifying the Ruby environment that Chef needs, and you will have a Ruby version known and well tested to work with Chef.
The other installation paths (RubyGems, etc) continue to be available, but this is by far the least hassle, and will be the best supported method to install Chef on any platform Opscode supports.
Also, as of now, and version 0.10.10+, the chef-full bootstrap template will be the default for those who use knife bootstrap to automatically set up Chef client systems.
Note As of this writing, the full stack installer is in "beta". It will remain in this status until release, which will coincide with the Chef 0.10.10 version's release. It says on the install page that it is not supported, but will be soon.
sudowhen installing? What is the output ofgem which chef? – Andrew Marshall Mar 13 '12 at 18:09/usr/local/rvm/rubies/ruby-1.8.7-p302/lib/ruby/gems/1.8/gems/chef-0.10.8/lib/chef.rb– Cerin Mar 13 '12 at 18:13gem which chefshould give you a path, not a success message. – Andrew Marshall Mar 13 '12 at 18:15