Ruby On Rails Classroom image

Anil  Bist / 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
Anil  Bist

Skills    Ruby On Rails

Qualifications :- High School - SLV, College/University - Graphic Era Deemed Univ University,
Location :-Dehradun,Dehradun,Uttarakhand,India
Description:-

I started my Professional Journey in 2006 with one of the Web Development Company in Bangalore and my 1st framework was "Ruby on Rail" as Web development and delivered around 5+ Projects using this platform. Then came another dimension as JEE/Sturst framework, Gradually I realized that I want to build something on my own and give my passion and energy on creating something different a
Explore

 

  Students (0)