Several ideas, in fact. Since rails is actually telling you are missing a gem, by all means run the command: bundle install
Make sure you are in your app's root when you do this. If this solves your problem, great, if not continue to step below and once that is done, run bundler again. There may be a more insidious problem. No matter what environment you are in, there is gonna be some code sometime that is written in C probably for performance reasons. So you may need a compiler for that and bundle may quit if it does not find one. Go to https://github.com/oneclick/rubyinstaller/wiki/Development-Kit and install the DevKit. SC On Feb 15, 2:09 pm, Patrick Bayford <[email protected]> wrote: > I have recently installed a newer version of Rails, using the > RailsInstaller v2.0.1.0 for Windows. The installer seemed to run fine > with no errors, however, the command "$ rails new myapp" produces the > following error, and a Rails app that clearly doesn't work. > > ArgumentError: invalid byte sequence in US-ASCII > An error occured while installing jquery-rails (1.0.19), and Bundler > cannot continue. > Make sure that `gem install jquery-rails -v '1.0.19'` succeeds before > bundling. > > C:\Documents and Settings\Patrick Bayford\Desktop\myapp>rails server > [31mCould not find gem 'turn (>= 0) x86-mingw32' in any of the gem > sources listed in your Gemfile. > [0m > [33mRun `bundle install` to install missing gems. > [0m > > Any ideas what the problem may be? And more importantly, how to fix it? > > -- > Posted viahttp://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

