I have imported a Rails Application from "GitHub", https://github.com/farra/goo.git
While trying to do bundle install
in that it shows "Could not locate Gemfile".
That repository actually don't have the below listed files with it.
Gemfile, Gemfile.lock & config.ru
I would like some assistance to proceed with that application.
Is there any way to create a Gemfile for that application with its necessary Gems?
Thank You In Advance...
This is a very legacy codebase and bundler is not initialized. So in order to install its gem files you need to run the following command:
checkout their environment file: config/environment.rb
And they have defined some possible steps to run that project I think you should read them carefully. For your reference, I am sharing here again:
I hope my answer could give you enough info now to move forward. Thanks