Ruby On Rails Classroom image

Neeraj  Amoli / Professional / 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
Neeraj  Amoli

Skills    Ruby On Rails

Qualifications :-
Location :-Dehradun,Dehradun,Uttrakhand,India
Description:-

I have 3 year experience as a Software Engineer. My Skilled are Android Development (Java), ROR Development .   


Explore
 

  Students (0)