rubygems - Missing Gemfile.lock on creation of rails application -
while creating rails application:
user$ rails new app all other files created, i.e. app, config, db, doc, script, test, gemfile, etc find gemfile.lock fails created. particular reason why happening? facing errors in bundling gems, though not know whether absence of gemfile.lock file causing this. please help!
you dont lock until after bundle, , whenever there form group of gems built (with dependancies available..)
if run:
bundle install
i think 1 should created you.
or
bundle update
if have lock file , have updated gemset
Comments
Post a Comment