I am learning rails and referring to the -- Ruby on Rails Guides:
Getting Started with Rails.
I executed command: bundle install
It displayed a lot of names and among them was SQLite. I see that it is
of old version and want to install the latest version of SQLite. Should
I just replace the SQLite dll located in the path shown or is there any
other way?
I am learning rails and referring to the -- Ruby on Rails Guides:
Getting Started with Rails.
I executed command: bundle install
It displayed a lot of names and among them was SQLite.
bundle install is used to install all the gems listed in your Gemfile.
Your Gemfile is in the folder:
../your_app_name
I see that it is
of old version and want to install the latest version of SQLite. Should
I just replace the SQLite dll located in the path shown or is there any
other way?
Here's how you can specify versions in your Gemfile: