0

I am executing a command rails new sample_app. After creating a project sample_app, I executed bundle show command but it Could not locate Gemfile. enter image description here I Google and found stackoverflow solutions 1 2 3 in which they didn't find gemfile whereas in my case i have. Suggest some solutions.

Community
  • 1
  • 1
Dipendra Singh
  • 542
  • 1
  • 6
  • 23
  • try bundle list. "show=Show the source location of a particular gem in the bundle". make sure it is Gemfile. Also, run it within the app folder – Sully Jul 11 '12 at 08:14
  • What version of bundler have you got installed? bundle --version? – Aditya Sanghi Jul 11 '12 at 08:28

1 Answers1

1

I think you should be in sample_app directory. For this run on command prompt
cd sample_app
then execute
bundle install
then
bundle show

Ganesh Kunwar
  • 2,643
  • 2
  • 20
  • 36