What is the purpose of "Gemfile.lock" in Rails? I have been searching around for but could not find a satisfactory answer.
相关问题
- Eager-loading association count with Arel (Rails 3
- rails/heroku migrating from gem to toolbelt
- Rails simple model attributes not saved to databas
- jquery-ui progressbar not showing
- PDF attachment in email is called 'Noname'
相关文章
- “No explicit conversion of Symbol into String” for
- Rspec controller error expecting <“index”> but
- Factory_girl has_one relation with validates_prese
- Rails: Twitter Bootstrap Buttons when visited get
- is there a “rails” way to redirect if mobile brows
- Got ActiveRecord::AssociationTypeMismatch on model
- superclass mismatch for class CommentsController (
- rails 3, how add a simple confirmation dialog when
Gemfile.lock
ensures that other developers on your app, as well as your deployment environment, use exactly the same third-party code as you just installed.You should read all the documentation from the
bundler
gem: http://gembundler.com/