upgrading_ruby_on_rails.md 12.1 KB
Newer Older
1 2
A Guide for Upgrading Ruby on Rails
===================================
3 4 5

This guide provides steps to be followed when you upgrade your applications to a newer version of Ruby on Rails. These steps are also available in individual release guides.

6 7
After reading this guide, you will know:

8
--------------------------------------------------------------------------------
9

10 11
General Advice
--------------
12

13
Before attempting to upgrade an existing application, you should be sure you have a good reason to upgrade. You need to balance out several factors: the need for new features, the increasing difficulty of finding support for old code, and your available time and skills, to name a few.
14

15
### Test Coverage
16 17 18

The best way to be sure that your application still works after upgrading is to have good test coverage before you start the process. If you don't have automated tests that exercise the bulk of your application, you'll need to spend time manually exercising all the parts that have changed. In the case of a Rails upgrade, that will mean every single piece of functionality in the application. Do yourself a favor and make sure your test coverage is good _before_ you start an upgrade.

19
### Ruby Versions
20 21 22 23 24 25 26 27 28

Rails generally stays close to the latest released Ruby version when it's released:

* Rails 3 and above requires Ruby 1.8.7 or higher. Support for all of the previous Ruby versions has been dropped officially and you should upgrade as early as possible.
* Rails 3.2.x will be the last branch to support Ruby 1.8.7.
* Rails 4 will support only Ruby 1.9.3.

TIP: Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails. Ruby Enterprise Edition has these fixed since the release of 1.8.7-2010.02. On the 1.9 front, Ruby 1.9.1 is not usable because it outright segfaults, so if you want to use 1.9.x, jump on to 1.9.2 or 1.9.3 for smooth sailing.

29 30
Upgrading from Rails 3.2 to Rails 4.0
-------------------------------------
31 32 33 34 35 36 37

NOTE: This section is a work in progress.

If your application is currently on any version of Rails older than 3.2.x, you should upgrade to Rails 3.2 before attempting an update to Rails 4.0.

The following changes are meant for upgrading your application to Rails 4.0.

38
### vendor/plugins
39

40
Rails 4.0 no longer supports loading plugins from `vendor/plugins`. You must replace any plugins by extracting them to gems and adding them to your Gemfile. If you choose not to make them gems, you can move them into, say, `lib/my_plugin/*` and add an appropriate initializer in `config/initializers/my_plugin.rb`.
41

42
### Identity Map
43

44
Rails 4.0 has removed the identity map from Active Record, due to [some inconsistencies with associations](https://github.com/rails/rails/commit/302c912bf6bcd0fa200d964ec2dc4a44abe328a6). If you have manually enabled it in your application, you will have to remove the following config that has no effect anymore: `config.active_record.identity_map`.
45

46
### Active Record
47

48
The `delete` method in collection associations can now receive `Fixnum` or `String` arguments as record ids, besides records, pretty much like the `destroy` method does. Previously it raised `ActiveRecord::AssociationTypeMismatch` for such arguments. From Rails 4.0 on `delete` automatically tries to find the records matching the given ids before deleting them.
49

S
Steve Klabnik 已提交
50
Rails 4.0 has changed how orders get stacked in `ActiveRecord::Relation`. In previous versions of rails new order was applied after previous defined order. But this is no long true. Check [Active Record Query guide](active_record_querying.html#ordering) for more information.
51

52
Rails 4.0 has changed `serialized_attributes` and `attr_readonly` to class methods only. Now you shouldn't use instance methods, it's deprecated. You must change them, e.g. `self.serialized_attributes` to `self.class.serialized_attributes`.
53

54
### Active Model
55

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
Rails 4.0 has changed how errors attach with the `ActiveModel::Validations::ConfirmationValidator`.
Now when confirmation validations fail the error will be attached to
`:#{attribute}_confirmation` instead of `attribute`.

Rails 4.0 has changed `ActiveModel::Serializers::JSON.include_root_in_json` default
value to `false`. Now, Active Model Serializers and Active Record objects have the
same default behaviour. This means that you can comment or remove the following option
in the `config/initializers/wrap_parameters.rb` file:

```ruby
# Disable root element in JSON by default.
# ActiveSupport.on_load(:active_record) do
#   self.include_root_in_json = false
# end
```
71

72
### Action Pack
73

74
There is an upgrading cookie store `UpgradeSignatureToEncryptionCookieStore` which helps you upgrading apps that use `CookieStore` to the new default `EncryptedCookieStore`. To use this CookieStore set `Myapp::Application.config.session_store :upgrade_signature_to_encryption_cookie_store, key: '_myapp_session'` in `config/initializers/session_store.rb`. Additionally, add `Myapp::Application.config.secret_key_base = 'some secret'` in config/initializers/secret_token.rb (use `rake secret` to generate a value). Do not remove `Myapp::Application.config.secret_token = 'some secret'`.
75

76 77
Rails 4.0 removed the `ActionController::Base.asset_path` option. Use the assets pipeline feature.

78 79 80
Rails 4.0 has deprecated `ActionController::Base.page_cache_extension` option. Use
`ActionController::Base.default_static_extension` instead.

S
Steve Klabnik 已提交
81
Rails 4.0 has removed Action and Page caching from Action Pack. You will need to
82 83 84
add the `actionpack-action_caching` gem in order to use `caches_action` and
the `actionpack-page_caching` to use `caches_pages` in your controllers.

85
Rails 4.0 changed how `assert_generates`, `assert_recognizes`, and `assert_routing` work. Now all these assertions raise `Assertion` instead of `ActionController::RoutingError`.
86

87 88
Rails 4.0 also changed the way unicode character routes are drawn. Now you can draw unicode character routes directly. If you already draw such routes, you must change them, for example:

89
```ruby
90
get Rack::Utils.escape('こんにちは'), controller: 'welcome', action: 'index'
91
```
92 93 94

becomes

95
```ruby
96
get 'こんにちは', controller: 'welcome', action: 'index'
97
```
98

99
### Active Support
100

101
Rails 4.0 Removed the `j` alias for `ERB::Util#json_escape` since `j` is already used for `ActionView::Helpers::JavaScriptHelper#escape_javascript`.
102

103
### Helpers Loading Order
104

105
The loading order of helpers from more than one directory has changed in Rails 4.0. Previously, helpers from all directories were gathered and then sorted alphabetically. After upgrade to Rails 4.0 helpers will preserve the order of loaded directories and will be sorted alphabetically only within each directory. Unless you explicitly use `helpers_path` parameter, this change will only impact the way of loading helpers from engines. If you rely on the fact that particular helper from engine loads before or after another helper from application or another engine, you should check if correct methods are available after upgrade. If you would like to change order in which engines are loaded, you can use `config.railties_order=` method.
106

107 108
Upgrading from Rails 3.1 to Rails 3.2
-------------------------------------
109

110
If your application is currently on any version of Rails older than 3.1.x, you should upgrade to Rails 3.1 before attempting an update to Rails 3.2.
111

112
The following changes are meant for upgrading your application to Rails 3.2.2, the latest 3.2.x version of Rails.
113

114
### Gemfile
115

116
Make the following changes to your `Gemfile`.
117

118
```ruby
119
gem 'rails', '= 3.2.2'
120 121 122 123 124 125

group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'
  gem 'uglifier',     '>= 1.0.3'
end
126
```
127

128
### config/environments/development.rb
129

130
There are a couple of new configuration settings that you should add to your development environment:
131

132
```ruby
133 134 135 136 137 138
# Raise exception on mass assignment protection for Active Record models
config.active_record.mass_assignment_sanitizer = :strict

# Log the query plan for queries taking more than this (works
# with SQLite, MySQL, and PostgreSQL)
config.active_record.auto_explain_threshold_in_seconds = 0.5
139
```
140

141
### config/environments/test.rb
142

143
The `mass_assignment_sanitizer` configuration setting should also be be added to `config/environments/test.rb`:
144

145
```ruby
146 147
# Raise exception on mass assignment protection for Active Record models
config.active_record.mass_assignment_sanitizer = :strict
148
```
149

150
### vendor/plugins
151

152
Rails 3.2 deprecates `vendor/plugins` and Rails 4.0 will remove them completely. While it's not strictly necessary as part of a Rails 3.2 upgrade, you can start replacing any plugins by extracting them to gems and adding them to your Gemfile. If you choose not to make them gems, you can move them into, say, `lib/my_plugin/*` and add an appropriate initializer in `config/initializers/my_plugin.rb`.
153

154 155
Upgrading from Rails 3.0 to Rails 3.1
-------------------------------------
156

157
If your application is currently on any version of Rails older than 3.0.x, you should upgrade to Rails 3.0 before attempting an update to Rails 3.1.
158 159 160

The following changes are meant for upgrading your application to Rails 3.1.3, the latest 3.1.x version of Rails.

161
### Gemfile
162

163
Make the following changes to your `Gemfile`.
164

165
```ruby
166 167 168 169 170 171 172 173 174 175 176 177
gem 'rails', '= 3.1.3'
gem 'mysql2'

# Needed for the new asset pipeline
group :assets do
  gem 'sass-rails',   "~> 3.1.5"
  gem 'coffee-rails', "~> 3.1.1"
  gem 'uglifier',     ">= 1.0.3"
end

# jQuery is the default JavaScript library in Rails 3.1
gem 'jquery-rails'
178
```
179

180
### config/application.rb
181

182
The asset pipeline requires the following additions:
183

184
```ruby
185 186
config.assets.enabled = true
config.assets.version = '1.0'
187
```
188

189
If your application is using an "/assets" route for a resource you may want change the prefix used for assets to avoid conflicts:
190

191
```ruby
192 193
# Defaults to '/assets'
config.assets.prefix = '/asset-files'
194
```
195

196
### config/environments/development.rb
197

198
Remove the RJS setting `config.action_view.debug_rjs = true`.
199

200
Add these settings if you enable the asset pipeline:
201

202
```ruby
203 204 205 206 207
# Do not compress assets
config.assets.compress = false

# Expands the lines which load the assets
config.assets.debug = true
208
```
209

210
### config/environments/production.rb
211

212
Again, most of the changes below are for the asset pipeline. You can read more about these in the [Asset Pipeline](asset_pipeline.html) guide.
213

214
```ruby
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
# Compress JavaScripts and CSS
config.assets.compress = true

# Don't fallback to assets pipeline if a precompiled asset is missed
config.assets.compile = false

# Generate digests for assets URLs
config.assets.digest = true

# Defaults to Rails.root.join("public/assets")
# config.assets.manifest = YOUR_PATH

# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
# config.assets.precompile += %w( search.js )

# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# config.force_ssl = true
232
```
233

234
### config/environments/test.rb
235

236 237
You can help test performance with these additions to your test environment:

238
```ruby
239 240 241
# Configure static asset server for tests with Cache-Control for performance
config.serve_static_assets = true
config.static_cache_control = "public, max-age=3600"
242
```
243

244
### config/initializers/wrap_parameters.rb
245

246
Add this file with the following contents, if you wish to wrap parameters into a nested hash. This is on by default in new applications.
247

248
```ruby
249 250 251 252 253 254
# Be sure to restart your server when you modify this file.
# This file contains settings for ActionController::ParamsWrapper which
# is enabled by default.

# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
ActiveSupport.on_load(:action_controller) do
255
  wrap_parameters format: [:json]
256 257 258 259 260 261
end

# Disable root element in JSON by default.
ActiveSupport.on_load(:active_record) do
  self.include_root_in_json = false
end
262
```
263

264
### config/initializers/session_store.rb
265 266 267

You need to change your session key to something new, or remove all sessions:

268
```ruby
269
# in config/initializers/session_store.rb
270
AppName::Application.config.session_store :cookie_store, key: 'SOMETHINGNEW'
271
```
272 273 274

or

275 276 277
```bash
$ rake db:sessions:clear
```
278 279 280 281

### Remove :cache and :concat options in asset helpers references in views

* With the Asset Pipeline the :cache and :concat options aren't used anymore, delete these options from your views.