Using rbenv so the process of creating a new app is a bit convoluted:
- Create directory
- cd directory
- Set ruby version:
rbenv local 1.9.3-p125(or other version) - Set gemset:
echo project-name > .rbenv-gemsets gem install rails -v 3.2.2 --no-rdoc --no-ri(for example)rbenv rehashecho "gem 'rails', '3.2.2'" > Gemfilebundlerails new .(Enter y to overwrite)bundle
This worked before, but this time I got an error on the rails new . command:
...
...
create vendor/assets/stylesheets
create vendor/assets/stylesheets/.gitkeep
create vendor/plugins
create vendor/plugins/.gitkeep
run bundle install
b/gems/bundler-1.2.1/lib/bundler/resolver.rb:287:in `resolve': Could not find gem 'jquery-rails (>= 0) ruby' in the gems available on this machine. (Bundler::GemNotFound)
Running rails new . a second time throws
Can't initialize a new Rails application within the directory of another, please change to a non-Rails directory first.
What is the best way to initialize a new Rails app if it's not possible to do rails new app-name?
How to create just the Gemfile? If I had the correct Rails Gemfile, then bundle and rails new . should work...