Skip to main content

What is gemfile.lock in rails?

What is gemfile.lock in rails?

What is Gemfile.lock? or What is the difference between Gemfile and Gemfile.lock? these are the common questions that you come across while starting development with Rails project.


What is Gemfile?

    Gemfile is the file in which you can mention which gems (kind of Third Party libraries) that you want to use for your Rails application
    Gemfile lists the gems that you want to use for your development
    Syntax:
        gem ‘rails'
            This mentions that gem with name ‘rails’ has to be used in Project context
    Whenever you bundle install, then bundler finds the gems listed in the Gemfile and it installs latest stable version for the gems listed in the Gemfile
    You can specify which version to be used for the rails development:
        gem 'rails', ‘3.0.5'
        This will install the specific version of the rails i.e. version 3.0.5
    You can read more regarding Gemfile here


What is Gemfile.lock?

    Gemfile.lock is created when bundler installs the specific version for the gems that are listed in Gemfile
    It records the version of the gem and name of the gem in file Gemfile.lock
    Thus, Gemfile.lock contains actual gem name with version with which your application was configured by the bundler
    Thus, Gemfile.lock is the file with actual gem version configuration
    Thus answer to what is gemfile.lock is - File with gems configured for your Rails applications along with the exact versions
    This file can be updated when you change gems listed in the Gemfile and also updating it using the bundler

Comments

Popular posts from this blog

Create dynamic sitemap on ruby on rails

Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL (when it was last updated, how often it usually changes, and how important it is, relative to other URLs in the site) so that search engines can more intelligently crawl the site. It’s basically a XML file describing all URLs in your page: The following example shows a Sitemap that contains just one URL and uses all optional tags. The optional tags are in italics. <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">    <url>       <loc>http://www.example.com/</loc>       <lastmod>2005-01-01</lastmod>       <changefreq>monthly</changefreq>     ...

Omniauth Linked in Ruby On Rails

def get_linkedin_user_data      omniauth = request.env["omniauth.auth"]      dat=omniauth.extra.raw_info      linked_app_key = "xxxxxxx"      linkedin_secret_key = "yyyyyyy"      client = LinkedIn::Client.new(linked_app_key,linkedin_secret_key)      client.authorize_from_access(omniauth['credentials']['token'],omniauth['credentials']['secret'])      connections=client.connections(:fields => ["id", "first-name", "last-name","picture-url"])      uid=omniauth['uid']      token=omniauth["credentials"]["token"]      secret=omniauth["credentials"]["secret"]   #linked user data     omniauth = request.env["omniauth.auth"]      data             = omniauth.info      user_name...

Install Rvm on ubuntu

sudo apt-get install libgdbm-dev libncurses5-dev automake libtool bison libffi-dev curl -L https://get.rvm.io | bash -s stable source ~/.rvm/scripts/rvm rvm install 2.0.0-p645 rvm use 2.0.0-p645 --default ruby -v rvm gemset create rails3.2.8 rvm gemset use rails3.2.8 gem install rails -v 3.2.8