Skip to content

Instantly share code, notes, and snippets.

@ahe
Created February 1, 2010 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahe/291685 to your computer and use it in GitHub Desktop.
Save ahe/291685 to your computer and use it in GitHub Desktop.

Ruby on Rails 3.0 Release Notes

Rails 3.0 is a landmark release as it delivers on the Merb/Rails merge promise made in December 2008. Rails 3.0 provides many major upgrades to all of the major components of Rails, including a major overhaul of the router and query APIs.

One of the major achievements of this release, is that while there are loads of new features, old APIs have been deprecated with warnings wherever possible, so that you can implement the new features and conventions at your own pace. There is a backwards compatibility layer that will be supported during 3.0.x and removed in 3.1.

Rails 3.0 adds Active Model ORM abstraction, Abstract Controller generic controller abstraction as well as a consistent Plugin API giving developers full access to all the Rails internals that make Action Mailer, Action Controller, Action View, Active Record and Active Resource work.

These release notes cover the major upgrades, but don’t include every little bug fix and change. If you want to see everything, check out the list of commits in the main Rails repository on GitHub.

endprologue.

Upgrading from Rails 2.3.5 to Rails 3.0

As always, having a high coverage, passing test suite is your friend when upgrading. You should also first upgrade to Rails 2.3.5 and make sure your application still runs as expected before attempting to update to Rails 3.0. In general, the upgrade from Rails 2.x to 3.0 centers around three big changes:

New Ruby Version Requirement

WARNING: Rails only runs on version 1.8.7 of Ruby or later. Support for previous versions of Ruby has been dropped and Rails 3.0 will no longer boot on any of these versions.

The new boot process

As part of the shift to treating Rails apps as Rack endpoints, you are now required to have a config/application.rb file, which takes over much of the work config/environment.rb used to handle. Along with that comes a lot of internal change to the boot process (most of which you as a consumer of the framework don’t care about!).

Gems and gems and gems

The config.gem method is gone and has been replaced by using bundler and a Gemfile, see Vendoring Gems below.

New API’s

Both the router and query interface have seen significant, breaking changes. There is a backwards compatibility layer that is in place and will be supported until the 3.1 release.

Upgrade Process

To help with the upgrade process, a plugin named Rails Upgrade has been created to automate part of the process.

Simply install the plugin, then run rake rails:upgrade:check to check your app for pieces that need to be updated (with links to information on how to update them). It also offers a task to generate a Gemfile based on your current config.gem calls and a task to generate a new routes file from your current one. To get the plugin, simply run the following:

script/plugin install git://github.com/rails/rails_upgrade.git

You can see an example of how that works at Rails Upgrade is now an Official Plugin

Aside from Rails Upgrade tool, if you need more help, there are people on IRC and rubyonrails-talk that are probably doing the same thing, possibly hitting the same issues. Be sure to blog your own experiences when upgrading so others can benefit from your knowledge!

More information – The Path to Rails 3: Approaching the upgrade

Application Creation

As stated above, you must be on Ruby 1.8.7 or later to boot up a Rails application. Rails will no longer boot on Ruby 1.8.6 or earlier.

Rails 3.0 is designed to run on 1.8.7 and also support Ruby 1.9.

There have been a few changes to the rails script that’s used to generate Rails applications:

  • The application name, rails my_app, can now optionally be a path instead rails ~/code/my_app, your rails application will be name spaced under the application name you pass the rails command.
  • Additionally, any flags you need to generate the application now need to come after the application path, for example:

$ rails myapp —database=mysql

Vendoring Gems

Rails now uses a Gemfile in the application root to determine the gems you require for your application to start. This Gemfile is then read and acted on by the new Bundler gem, which then vendors all your gems into the vendor directory, making your Rails application isolated from system gems.

More information: – Using bundler

Living on the Edge

Due to the use of Gemfile, the concept of freezing Rails was dropped, because it’s always bundled/frozen inside your application. By default, it uses your system gems when bundling; however, if you want to bundle straight from the Git repository, you can pass the edge flag:

$ rails myapp —edge

More information:

Rails Architectural Changes

There are six major architectural changes in the architecture of Rails.

Railties Restrung

Railties was updated to provide a consistent plugin API for the entire Rails framework as well as a total rewrite of generators and the Rails bindings, the result is that developers can now hook into any significant stage of the generators and application framework in a consistent, defined manner.

All Rails core components are decoupled

With the merge of Merb and Rails, one of the big jobs was to remove the tight coupling between Rails core components. This has now been achieved, and all Rails core components are now using the same API that you can use for developing plugins. This means any plugin you make, or any core component replacement (like DataMapper or Sequel) can access all the functionality that the Rails core components have access to and extend and enhance at will.

More information: – The Great Decoupling

Active Model Abstraction

Part of decoupling the core components was extracting all ties to Active Record from Action Pack. This has now been completed. All new ORM plugins now just need to implement Active Model interfaces to work seamlessly with Action Pack.

More information: – Make Any Ruby Object Feel Like ActiveRecord

Controller Abstraction

Another big part of decoupling the core components was creating a base superclass that is separated from the notions of HTTP in order to handle rendering of views etc. This creation of AbstractController allowed ActionController and ActionMailer to be greatly simplified with common code removed from all these libraries and put into Abstract Controller.

More Information: – Rails Edge Architecture

Arel Integration

Arel (or Active Relation) has been taken on as the underpinnings of Active Record and is now required for Rails (it is installed for you when you do a gem bundle). Arel provides an SQL abstraction that simplifies out Active Record and provides the underpinnings for the relation functionality in Active Record.

More information: – Why I wrote Arel.

Mail Extraction

Action Mailer ever since it’s beginnings has had monkey patches, pre parsers and even delivery and receiver agents, all in addition to having TMail vendor’d in the source tree. Version 3 changes that with all email message related functionality abstracted out to the Mail gem. This again reduces code duplication and helps create definable boundaries between Action Mailer and the email parser.

More information: – New Action Mailer API in Rails 3

Documentation

The documentation in the Rails tree is being updated with all the API changes, additionally, the Rails Edge guides are being updated one by one to reflect the changes in Rails 3.0. The guides at guides.rubyonrails.org however will continue to contain only the stable version of Rails (at this point, version 2.3.5, until 3.0 is released).

More Information: – Rails Documentation Projects.

Railties

With the decoupling of the main Rails frameworks, Railties got a huge overhaul so as to make linking up frameworks, engines or plugins as painless and extensible as possible:

  • Each application now has it’s own name space, application is started with YourAppName.boot for example, makes interacting with other applications a lot easier.
  • You now have access to Rails.config which provides huge amount of configuration settings for your application.
  • Anything under Rails.root/app is now added to the load path, so you can make app/observers/user_observer.rb and Rails will load it without any modifications.
  • Rails 3.0 now provides a Rails.config object, which provides a central repository of all sorts of Rails wide configuration options.

Application generation has received extra flags allowing you to skip the installation of test-unit, Active Record, Prototype and Git. Also a new —dev flag has been added which sets the application up with the Gemfile pointing to your Rails checkout (which is determined by the path to the rails binary). See rails —help for more info.

Railties generators got a huge amount of attention in Rails 3.0, basically:

  • Generators were completely rewritten and are backwards incompatible.
  • Rails templates API and generators API were merged (they are the same as the former).
  • Generators are no longer loaded from special paths anymore, they are just found in the Ruby load path, so calling script/generate foo will look for generators/foo_generator.
  • new generators provide hooks, so any template engine, ORM, test framework can easily hook in.
  • new generators allow you to override the templates by placing a copy at RAILS_ROOT/lib/templates.
  • Rails::Generators::TestCase is also supplied so you can create your own generators and test them.

Also, the views generated by Railties generators had some overhaul:

  • Views now use div tags instead of p tags.
  • Scaffolds generated now make use of _form partials, instead of duplicated code in the edit and new views.
  • Scaffold forms now use f.submit which returns “Create ModelName” or “Update ModelName” depending on the state of the object passed in.

Following deprecations were done in Railties:

  • RAILS_ROOT is deprecated in favour of Rails.root.
  • RAILS_ENV is deprecated in favour of Rails.env.
  • RAILS_DEFAULT_LOGGER is deprecated in favour of Rails.logger.
  • PLUGIN/rails/tasks, PLUGIN/tasks are no longer loaded all tasks now must be in PLUGIN/lib/tasks.

More information:

Action Pack

There have been significant internal and external changes in Action Pack.

Abstract Controller

Abstract Controller pulls out the generic parts of Action Controller into a reusable module that any library can use to render templates, render partials, helpers, translations, logging, any part of the request response cycle. This abstraction allowed ActionMailer::Base to now just inherit from AbstractController and just wrap the Rails DSL onto the Mail gem.

It also provided an opportunity to clean up Action Controller, abstracting out what could to simplify the code.

Note however that Abstract Controller is not a user facing API, you will not run into it in your day to day use of Rails.

More Information: – Rails Edge Architecture

Action Controller

  • application_controller.rb now has protect_from_forgery on by default.
  • The cookie_verifier_secret has been moved to initializers/cookie_verification_secret.rb.
  • The session_store configuration has moved to initializers/session_store.rb.
  • cookies.secure allowing you to set encrypted values in cookies with cookie.secure[:key] => value.
  • cookies.permanent allowing you to set permanent values in the cookie hash cookie.permanent[:key] => value that raise exceptions on signed values if verification failures.
  • You can now pass :notice => ‘This is a flash message’ or :alert => ‘Something went wrong’ to the format call inside a respond_to block. The flash[] hash still works as previously.
  • respond_with method has now been added to your controllers simplifying the venerable format blocks.
  • ActionController::Responder added allowing you flexibility in how your responses get generated.

Deprecations:

  • filter_parameter_logging is deprecated in favour of config.filter_parameters << :password.

More Information:

Action Dispatch

Action Dispatch is new in Rails 3.0 and provides a new, cleaner implementation for routing.

  • Big clean up and re-write of the router, the Rails router is now rack_mount with a Rails DSL on top, it is a stand alone piece of software.
  • Routes defined by each application are now name spaced within your Application module, that is:
  1. Instead of:

ActionController::Routing::Routes.draw do
map.resources :posts
end

  1. You do:

AppName::Application.routes do
resources :posts
end

  • Added match method to the router, you can also pass any Rack application to the matched route.
  • Added constraints method to the router, allowing you to guard routers with defined constraints.
  • Added scope method to the router, allowing you to namespace routes for different languages or different actions, for example:

scope ‘es’ { resources :projects,
:path_names => { :edit => ‘cambiar’ },
:as => ‘projeto’ }

  1. Gives you the edit action with /es/projeto/1/cambiar
  • Added root method to the router as a short cut for match ‘/’, :to => path.
  • You can pass optional segments into the match, for example match “/:controller(/:action(/:id))(.:format)”, each parenthesized segment is optional.
  • Routes can be expressed via blocks, for example you can call controller :home { match ‘/:action’ }.

NOTE. The old style map commands still work as before with a backwards compatibility layer, however this will be removed in the 3.1 release.

Deprecations

  • The catch all route for non-REST applications (/:controller/:action/:id) is now commented out.
  • Routes :path_prefix no longer exists and :name_prefix now automatically adds “_” at the end of the given value.

More Information:

Action View

Major re-write was done in the Action View helpers, implementing Unobtrusive JavaScript (UJS) hooks and removing the old inline AJAX commands. This enables Rails to use any compliant UJS driver to implement the UJS hooks in the helpers.

What this means is that all previous remote_ helpers have been removed from Rails core and put into the Prototype Legacy Helper. To get UJS hooks into your HTML, you now pass :remote => true instead. For example:

form_for @post, :remote => true

Produces:

  • You no longer need to call h(string) to escape HTML output, it is on by default in all view templates. If you want the unescaped string, call raw(string).
  • Helpers now output HTML 5 by default.
  • Form label helper now pulls values from I18n with a single value, so f.label :name will pull the :name translation.
  • I18n select label on should now be :en.helpers.select instead of :en.support.select.
  • You no longer need to place a minus sign at the end of a ruby interpolation inside an ERb template to remove the trailing carriage return in the HTML output.

Active Model

Active Model is new in Rails 3.0. It provides an abstraction layer for any ORM libraries to use to interact with Rails by implementing an Active Model interface.

ORM Abstraction and Action Pack Interface

Part of decoupling the core components was extracting all ties to Active Record from Action Pack. This has now been completed. All new ORM plugins now just need to implement Active Model interfaces to work seamlessly with Action Pack.

More Information: – Make Any Ruby Object Feel Like ActiveRecord

Validations

Validations have been moved, in the main, from Active Record into Active Model, providing an interface to validations that works across ORM libraries in Rails 3.

  • There is now a validates :attribute, options_hash short cut method that you can call that allows you to pass options for all the validates class methods, you can pass more than one option to a validate method.
  • The validates method has the following options:
  • :acceptance => Boolean.
  • :confirmation => Boolean.
  • :exclusion => { :in => Ennumerable }.
  • :inclusion => { :in => Ennumerable }.
  • :format => { :with => Regexp, :on => :create }.
  • :length => { :maximum => Fixnum }.
  • :numericality => Boolean.
  • :presence => Boolean.
  • :uniqueness => Boolean.

NOTE: All the Rails version 2.3 style validation methods are still supported in Rails 3.0, the new validates method is designed as an additional aid in your model validations, not a replacement for the existing API.

You can also pass in a Validator object, which you can then reuse between objects that use Active Model:

class TitleValidator < ActiveModel::EachValidator
Titles = [‘Mr.’, ‘Mrs.’, ‘Dr.’]
def validate_each(record, attribute, value)
unless Titles.include?(value)
record.errors[attribute] << ‘must be a valid title’
end
end
end

class Person
include ActiveModel::Validations
attr_accessor :title
validates :title, :presence => true, :title => true
end

  1. Or for Active Record

class Person < ActiveRecord::Base
validates :title, :presence => true, :title => true
end

More Information:

Active Record

Query Interface

Active Record, through the use of Arel, now returns relations on it’s core methods. The existing API in Rails 2.3.x is still supported and will not be deprecated until Rails 3.1 and not removed until Rails 3.2, however, the new API provides the following new methods that all return relations allowing them to be chained together:

  • where – provides conditions on the relation, what gets returned.
  • select – choose what attributes of the models you wish to have returned from the database.
  • group – groups the relation on the attribute supplied.
  • having – provides an expression limiting group relations (GROUP BY constraint).
  • joins – joins the relation to another table.
  • clause – provides an expression limiting join relations (JOIN constraint).
  • includes – includes other relations pre-loaded.
  • order – orders the relation based on the expression supplied.
  • limit – limits the relation to the number of records specified.
  • lock – locks the records returned from the table.
  • readonly – returns an read only copy of the data.
  • from – provides a way to select relationships from more than one table.
  • scope – (previously named_scope) return relations and can be chained together with the other relation methods.
  • with_scope – and with_exclusive_scope now also return relations and so can be chained.
  • default_scope – also works with relations.

More Information:

Patches and Deprecations

Additionally, many fixes in the Active Record branch:

  • SQLite 2 support has been dropped in favour of SQLite 3.
  • MySQL support for column order.
  • PostgreSQL adapter has had it’s TIME ZONE support fixed so it no longer inserts incorrect values.
  • PostgreSQL support for the XML data type column.
  • table_name is now cached.

As well as the following deprecations:

  • named_scope in an Active Record class is deprecated and has been renamed to just scope.
  • In scope methods, you should move to using the relation methods, instead of a :conditions => {} finder method, for example scope :since, lambda {|time| where(“created_at > ?”, time) }.
  • save(false) is deprecated, in favour of save(:validate => false).
  • I18n error messages for ActiveRecord should be changed from :en.activerecord.errors to :en.errors.
  • model.errors.on is deprecated in favour of model.errors[]
  • validates_presence_of => validates… :presence => true
  • ActiveRecord::Base.colorize_logging and config.active_record.colorize_logging are deprecated in favour of Rails::Subscriber.colorize_logging or config.colorize_logging

Active Resource

Active Resource was also extracted out to Active Model allowing you to use Active Resource objects with Action Pack seamlessly.

  • Added validations to Active Resource through Active Model.
  • Add observing hooks to Active Resources.
  • HTTP proxy support for Active Resource.
  • Added digest authentication option for ActiveResource.
  • Move model naming into Active Model.
  • Changed Active Resource attributes to a Hash with indifferent access.
  • Added first, last and all aliases for equivalent find scopes.
  • find_every now does not return a ResourceNotFound error if nothing returned.
  • Added save! which raises ResourceInvalid unless the object is valid?.
  • update_attribute and update_attributes added to Active Resource models.
  • Added exists?.
  • Rename SchemaDefinition to Schema and define_schema to schema.
  • Use the format of Active Resources rather than the content-type of remote errors to load errors.
  • Use instance_eval for schema block.
  • Fix ActiveResource::ConnectionError#to_s when @response does not respond to #code or #message, handles Ruby 1.9 compat.
  • Add support for errors in JSON format.
  • Ensure load works with numeric arrays.
  • Recognises a 410 response from remote resource as the resource has been deleted.
  • Add ability to set SSL options on Active Resource connections.
  • Setting connection timeout also affects Net::HTTP open_timeout.

Deprecations:

  • save(false) is deprecated, in favour of save(:validate => false).
  • Ruby 1.9.2: URI.parse and .decode are deprecated and are no longer used in the library.

Active Support

A large effort was made in Active Support to make it cherry pickable, that is, you no longer have to require the entire Active Support library to get pieces of it. This allows the various core components of Rails to run slimmer.

Following changes in Active Support:

  • Large clean up of the library removing unused methods throughout.
  • Active Support no longer provides vendor’d versions of TZInfo, Memcache Client and Builder, these are all included as dependencies and installed via the gem bundle command.
  • Safe buffers are implemented in ActiveSupport::SafeBuffer.
  • Added Array.uniq_by and Array.uniq_by!.
  • Fixed bug on TimeZone.seconds_to_utc_offset returning wrong value.
  • Added ActiveSupport::Notifications middleware.
  • ActiveSupport.use_standard_json_time_format now defaults to true.
  • ActiveSupport.escape_html_entities_in_json now defaults to false.
  • Integer#multiple_of? accepts zero as an argument, returns false unless the receiver is zero.
  • string.chars has been renamed to string.mb_chars.
  • OrderedHash now can de-serialize through YAML.
  • Added SAX-based parser for XmlMini, using LibXML and Nokogiri.
  • Added Object#presence that returns the object if it’s #present? otherwise returns nil.
  • Added String#exclude? core extension that returns the inverse of #include?.
  • Added #to_i to DateTime in ActiveSupport so #to_yaml works correctly on ActiveRecord models with DateTime attributes.
  • Added Enumerable#exclude? to bring parity to Enumerable#include? and avoid if !x.include?.
  • Switch to on-by-default XSS escaping for rails.
  • Support deep-merging HashWithIndifferentAccess.
  • Enumerable#sum now works will all enumerables, even if they don’t respond to :size.
  • #inspect of a zero length duration returns ‘0 seconds’ instead of empty string.
  • Add #element and #collection to ModelName.
  • String #to_time and #to_datetime: handle fractional seconds.
  • Added support to new callbacks for around filter object that respond to :before & :after used in before and after callbacks.
  • ActiveSupport::OrderedHash#to_a method returns an ordered set of arrays. Matches Ruby 1.9’s Hash#to_a.
  • MissingSourceFile exists as a constant but it is now just equals to LoadError
  • Added Class#class_attribute, to be able to declare a class-level attribute whose value is inheritable and overwritable by subclasses.
  • Finally removed DeprecatedCallbacks in ActiveRecord::Associations.

The following methods have been removed because they are now available in Ruby 1.8.7 and 1.9.

  • Integer#even? and Integer#odd?
  • String#each_char
  • String#start_with? and String#end_with? (plural aliases still kept)
  • String#bytesize
  • Object#tap
  • Symbol#to_proc
  • Object#instance_variable_defined?
  • Enumerable#none?

The security patch for REXML remains in Active Support because early patchlevels still need it. It is only applied if needed though.

The following methods have been removed because they are no longer used in the framework:

  • Class#subclasses, Class#reachable?, Class#remove_class
  • Object#remove_subclasses_of, Object#subclasses_of, Object#extend_with_included_modules_from, Object#extended_by
  • Regexp#number_of_captures
  • Regexp.unoptionalize, Regexp.optionalize, Regexp#number_of_captures

Action Mailer

Action Mailer has been given a new API with TMail being replaced out with the new Mail as the Email library. Action Mailer itself has been given an almost complete re-write with pretty much every line of code touched. The result is that Action Mailer now simply inherits from Abstract Controller and wraps the Mail gem in a Rails DSL. This reduces the amount of code and duplication of other libraries in Action Mailer considerably.

  • All mailers are now in app/mailers by default.
  • Can now send email using new API with three methods: attachments, headers and mail.
  • ActionMailer emailing methods now return Mail::Message objects, which can then be sent the deliver message to send itself.
  • All delivery methods are now abstracted out to the Mail gem.
  • The mail delivery method can accept a hash of all valid mail header fields with their value pair.
  • The mail delivery method acts in a similar way to Action Controller’s respond_to block, and you can explicitly or implicitly render templates. Action Mailer will turn the email into a multipart email as needed.
  • You can pass a proc to the format.mime_type calls within the mail block and explicitly render specific types of text, or add layouts or different templates. The render call inside the proc is from Abstract Controller, so all the same options are available as they are in Action Controller.
  • What were mailer unit tests have been moved to functional tests.

Deprecations:

  • :charset, :content_type, :mime_version, :implicit_parts_order are all deprecated in favour of ActionMailer.default :key => value style declarations.
  • Mailer dynamic create_method_name and deliver_method_name are deprecated, just call method_name which now returns a Mail::Message object.
  • ActionMailer.deliver(message) is deprecated, just call message.deliver.
  • template_root is deprecated, pass options to a render call inside a proc from the format.mime_type method inside the mail generation block
  • The body method to define instance variables is deprecated (body {:ivar => value}), just declare instance variables in the method directly and they will be available in the view.
  • Mailers being in app/models is deprecated, use app/mailers instead.

More Information:

Credits

See the full list of contributors to Rails, many people have spent many hours making Rails 3 what it is. Kudos to all of them.

Rails 3.0 Release Notes were compiled by Mikel Lindsaar, who can be found feeding and tweeting.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment