IT Nursery
After running the bundle install command, ‘Gemfile.lock‘ is created in the working directory. What do the directives inside that file mean? For example, let’s take the following file: PATH...
  • May 31, 2022
  • 0 Comments
I use bundler to manage dependencies in my rails app, and I have a gem hosted in a git repository included as followed: gem 'gem-name', :git => 'path/to/my/gem.git' To...
  • May 19, 2022
  • 0 Comments
What does bundle exec rake db:migrate mean? Or just bundle exec rake <command> in general? I understand that bundle takes care of maintaining things in the Gemfile. I know...
  • May 9, 2022
  • 0 Comments