I've got a problem while i try to run my app :
You have already activated rack 1.3.2, but your Gemfile requires rack 1.2.3. Consider using bundle exec.
I read a lot about this kind of error, but i did not find any solution that worked for me
bundle exec rake
trick cannot be used in my caseThank you per advance
Run bundle install --binstubs
and you'll get bin directory in your application root with all executables needed by app.
Then you need to add this dir to path and best place to do it - .rvmrc if you use RVM.
[ -d './bin' ] && export PATH=`pwd`/bin:$PATH
or just run ./bin/{rake|rails|etc} from your app root.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With