Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>There are too many changes are there in rails 2.X and 3.0. If you are able to do all configuration, You can..!! We had migrated one of our project recently. But make sure to migrate version wise as Abhilash explained.</p> <p><a href="http://railscasts.com/episodes/225-upgrading-to-rails-3-part-1" rel="nofollow">225-upgrading-to-rails-3-part-1</a></p> <p><a href="http://railscasts.com/episodes/226-upgrading-to-rails-3-part-2" rel="nofollow">226-upgrading-to-rails-3-part-2</a></p> <p><a href="http://railscasts.com/episodes/226-upgrading-to-rails-3-part-2" rel="nofollow">226-upgrading-to-rails-3-part-2</a></p> <p><a href="http://railscasts.com/episodes/415-upgrading-to-rails-4" rel="nofollow">415-upgrading-to-rails-4</a></p> <p>Below are the list of features.!!, you need to take care.</p> <p>(1) Introduction of bundler (New way to manage your gem dependencies)</p> <p>(2) Gemfile and Gemfile.lock (Where all your gem dependencies lies, instead of environment.rb)</p> <p>(3) A new .rb file in config/ folder, named as application.rb (Which has everything that previously environment.rb had) </p> <p>(4) Change in SQL Structure: Model.where(:activated => true) </p> <p>(5) All the mailer script will now be in app/mailers folder, earlier we kept inside app/models.</p> <p>(6) Rails3-UJS support. for links and forms to work as AJAX, instead of writing complex lines of code, we write :remote => true </p> <p>(7) HTML 5 support.</p> <p>(8) Changes in the model based validation syntax: validates :name, :presence => true </p> <p>(9) Ability to install windows/ruby/jruby/development/production specific gems to Gemfile. </p> <pre><code>group :production do gem 'will_paginate' end </code></pre> <p>All the Best.!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload