How can I create a Rails application from my local branch?
I can create the application, but cannot run script/console, for instance...
In the past I had to create some symbolic links, but I'm lost now...
Any light?
`rails newapp --dev` will generate newapp with a Gemfile pointing at
your local Rails git clone.
Best,
jeremy
Thank you Jeremy, but it still not works.
This option is indeed documented and Gemfile is actually pointing at my local Rails branch.
script/console yields this error:
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- rails (LoadError)
I tried to 'gem bundle' but I needed to 'gem install treetop' first.
Even after 'gem bundle' succeeded, the error persists... Any idea?
How can I create a Rails application from my local branch?
I can create the application, but cannot run script/console, for instance...
In the past I had to create some symbolic links, but I'm lost now...
Any light?
`rails newapp --dev` will generate newapp with a Gemfile pointing at
your local Rails git clone.
Best,
jeremy
Thank you Jeremy, but it still not works.
This option is indeed documented and Gemfile is actually pointing at my local Rails branch.
script/console yields this error:
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- rails (LoadError)
I tried to 'gem bundle' but I needed to 'gem install treetop' first.
Even after 'gem bundle' succeeded, the error persists... Any idea?