I am going through the rails tutorial at the below link, i have a few questions.
http://ruby.railstutorial.org/ruby-on-rails-tutorial-book#sec:bundler
What is equivalent command for this in windows, subl is not recognized in windows. What is a GemFile and What is a Gem?
$ cd first_app/
$ subl Gemfile
What does bundle mean?
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem
is installed.
subl : subl is the command-line command to launch Sublime Text on OS X.
gem : is a packaged Ruby application or library(third-party code as you just installed) .
Gemfile : It is files allow you to specify what gem dependencies are needed for your Rails application.
Bundler manages an application’s dependencies.
Refer Bundler, Sublime