Juby, do yourself a favor, and install RVM https://rvm.beginrescueend.com/
You would then do something like $ rvm install 1.8.7 $ rvm use 1.8.7 $ gem install bundler $ bundle install This will provide you with a Ruby install completely separate from Apple's, and it makes it real easy to try out other Ruby implementations/versions as well. Regards, John Lynch Rigel Group, LLC [email protected] On Sat, Jul 30, 2011 at 1:50 PM, jvictor <[email protected]> wrote: > I am trying to setup and run rails on my mac (10.6) following the > instructions at rubyonrails.org, but when i try to start the server it > fails complaining about some broken sqlite3 gem ? Has anyone else seen > this happen ? > > jvictors-MacBook-Pro:hellorails jvictor$ rails server > Could not find gem 'sqlite3 (>= 0)' in any of the gem sources listed > in your Gemfile. > Run `bundle install` to install missing gems. > > > > so I go an try to run bundle install and see this > > jvictor$ sudo bundle install > Password: > Fetching source index for http://rubygems.org/ > Using rake (0.9.2) > Using abstract (1.0.0) > Using activesupport (3.0.9) > Using builder (2.1.2) > Using i18n (0.5.0) > Using activemodel (3.0.9) > Using erubis (2.6.6) > Using rack (1.2.3) > Using rack-mount (0.6.14) > Using rack-test (0.5.7) > Using tzinfo (0.3.29) > Using actionpack (3.0.9) > Using mime-types (1.16) > Using polyglot (0.3.2) > Using treetop (1.4.10) > Using mail (2.2.19) > Using actionmailer (3.0.9) > Using arel (2.0.10) > Using activerecord (3.0.9) > Using activeresource (3.0.9) > Using bundler (1.0.15) > Using rdoc (3.8) > Using thor (0.14.6) > Using railties (3.0.9) > Using rails (3.0.9) > Installing sqlite3 (1.3.4) with native extensions /Library/Ruby/Site/ > 1.8/rubygems/installer.rb:551:in `build_extensions': ERROR: Failed to > build gem native extension. (Gem::Installer::ExtensionBuildError) > > /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ > ruby extconf.rb > mkmf.rb can't find header files for ruby at /System/Library/Frameworks/ > Ruby.framework/Versions/1.8/usr/lib/ruby/ruby.h > > > Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/ > sqlite3-1.3.4 for inspection. > Results logged to /Library/Ruby/Gems/1.8/gems/sqlite3-1.3.4/ext/ > sqlite3/gem_make.out > from /Library/Ruby/Site/1.8/rubygems/installer.rb:504:in `each' > from /Library/Ruby/Site/1.8/rubygems/installer.rb:504:in > `build_extensions' > from /Library/Ruby/Site/1.8/rubygems/installer.rb:180:in `install' > from > /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/source.rb: > 101:in `install' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/ > rubygems_integration.rb:78:in `preserve_paths' > from > /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/source.rb: > 91:in `install' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/ > installer.rb:58:in `run' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/ > rubygems_integration.rb:93:in `with_build_args' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/ > installer.rb:57:in `run' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/ > spec_set.rb:12:in `each' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/ > spec_set.rb:12:in `each' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/ > installer.rb:49:in `run' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/ > installer.rb:8:in `install' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/cli.rb: > 222:in `install' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/vendor/ > thor/task.rb:22:in `send' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/vendor/ > thor/task.rb:22:in `run' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/vendor/ > thor/invocation.rb:118:in `invoke_task' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/vendor/ > thor.rb:246:in `dispatch' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/lib/bundler/vendor/ > thor/base.rb:389:in `start' > from /Library/Ruby/Gems/1.8/gems/bundler-1.0.15/bin/bundle:13 > from /usr/bin/bundle:19:in `load' > from /usr/bin/bundle:19 > > > > > > > Thx > -jv > > -- > SD Ruby mailing list > [email protected] > http://groups.google.com/group/sdruby -- SD Ruby mailing list [email protected] http://groups.google.com/group/sdruby
