You can work around the issue with running bundle install multiple times with the --skip-bundle-option for the rails-command and calling bundle_command('install') from the leftovers-method:
It isn't the most elegant solution, but it saves a little time by calling bundler only once. It would be nice if you could modify the options-variable in the AppBase-class
I've looked into the
at_exit
callback, and thought of this:This way, you have a single method for postprocessing which is called after bundler.
You can work around the issue with running
bundle install
multiple times with the--skip-bundle
-option for therails
-command and callingbundle_command('install')
from theleftovers
-method:It isn't the most elegant solution, but it saves a little time by calling bundler only once. It would be nice if you could modify the
options
-variable in theAppBase
-classNevermind, accidentally had two bootstrap gems included (one based on 1.4 and one based on 2.0) and the wrong version was included.
I'm having trouble getting the navbar working. I'm using bootstrap-sass, haml and simple_form. What could be wrong?
Here is a screenshot of what is happening
It's like some of the CSS is not applied.