Ruby On Rails Classroom image

Pooja  Negi / Student / Web Technology

 
To post your Question Join Classroom
 
Lesson Topics's No:-  First|1 | 2 | 3 | 4 | 5 | 6|Last
Lessons:- The First Application

Listing 1.5 changes the line for jQuery, the default JavaScript library used by Rails, from

gem  'jquery-rails'

to

gem 'jquery-rails', '2.0.0'

 

We’ve also changed

gem  'sqlite3'

to

group :development do
    gem  'sqlite3','1.3.5'
end

which forces Bundler to install version 1.3.5 of the sqlite3 gem. Note that we’ve also taken this opportunity to arrange for SQLite to be included only in a development environment (Section 7.1.1), which prevents potential conflicts with the database used by Heroku (Section 1.4).

Listing 1.5 also changes a few other lines,

group   :assets  do
   gem    'sass-rails' , ' ̃> 3.2.3'
   gem    'coffee-rails' , ' ̃> 3.2.2'
   gem    'uglifier', '>= 1.2.3'
end

 

to

group   :assets  do
   gem    'sass-rails', '3.2.4'
   gem    'coffee-rails', '3.2.2'
   gem    'uglifier', '1.2.3'
end
 
 
 
image
Pooja   Negi

Skills    Ruby On Rails

Qualifications :- High School - SSN high school, College/University - HNBGU, College/University - SRHU,
Location :-Ranipokhari,Rishikesh,Uttarakhand,India
Description:- Student
Explore
 

  Students (0)