Sqlite3-ruby-1.2.5 is cached?

I had Rails --version 3.0.0.beta3 installed. When I try to start the
server I get a message, "sqlite3-ruby-1.2.5 is cached, but not
installed. Try running ‘bundle install’. When I run the bundle install
the following message below appears:

#######
Installing sqlite3-ruby (1.2.5) from .gem files at
/Users/john.ranaudo/.bundle/ruby/1.8/cache
with native extensions
/Library/Ruby/Site/1.8/rubygems/installer.rb:482: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
/Users/john.ranaudo/.bundle/ruby/1.8/gems/sqlite3-ruby-1.2.5 for
inspection.
Results logged to
/Users/john.ranaudo/.bundle/ruby/1.8/gems/sqlite3-ruby-1.2.5/ext/sqlite3_api/gem_make.out
#######

Any thoughts on how to resolve this?

Thanks,
John

It appears it isn’t finding the header file it’s looking for. If your
system’s configured like mine you’ll find it elsewhere.

I think if you skip all that and just (remote) install the gem sqlite3-
ruby you should be good to go.

Are you running Snow Leopard?

If so, maybe dig into some of the comments here:

hi,

i have a “notes” model which i include in various other views via
partial. how can i tell / what do i need to do in order to redirect the
user back to the view where he was instead to the index-view of the
notes?

thx

@mike I tried (sudo gem install sqlite3-ruby) but I’m still getting
header file issues?

On 11 May 2010 16:48, tom [email protected] wrote:

hi,

i have a “notes” model which i include in various other views via
partial. how can i tell / what do i need to do in order to redirect the
user back to the view where he was instead to the index-view of the
notes?

Have a look at the docs for redirect_to and you will see that there is
a :back option to go back to where you were.

Colin

thank u!
must have overseen that

tom

Mike wrote:

Are you running Snow Leopard?

If so, maybe dig into some of the comments here:

macos - Snow Leopard & Ruby on Rails - SQLite3 issue - Stack Overflow

Thanks Mike! This article resolved my issue.