rails 4.1.16 → 4.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -10
  3. data/guides/CHANGELOG.md +15 -100
  4. data/guides/Rakefile +5 -3
  5. data/guides/assets/javascripts/guides.js +6 -0
  6. data/guides/assets/stylesheets/main.css +4 -1
  7. data/guides/bug_report_templates/action_controller_master.rb +1 -0
  8. data/guides/rails_guides/helpers.rb +1 -1
  9. data/guides/rails_guides/levenshtein.rb +29 -21
  10. data/guides/rails_guides/markdown/renderer.rb +1 -1
  11. data/guides/rails_guides/markdown.rb +11 -7
  12. data/guides/rails_guides.rb +2 -2
  13. data/guides/source/2_2_release_notes.md +1 -1
  14. data/guides/source/2_3_release_notes.md +4 -4
  15. data/guides/source/3_0_release_notes.md +8 -8
  16. data/guides/source/3_1_release_notes.md +6 -3
  17. data/guides/source/3_2_release_notes.md +6 -3
  18. data/guides/source/4_0_release_notes.md +6 -3
  19. data/guides/source/4_1_release_notes.md +5 -6
  20. data/guides/source/4_2_release_notes.md +850 -0
  21. data/guides/source/_license.html.erb +1 -1
  22. data/guides/source/_welcome.html.erb +2 -8
  23. data/guides/source/action_controller_overview.md +81 -7
  24. data/guides/source/action_mailer_basics.md +91 -28
  25. data/guides/source/action_view_overview.md +148 -130
  26. data/guides/source/active_job_basics.md +318 -0
  27. data/guides/source/active_model_basics.md +371 -17
  28. data/guides/source/active_record_basics.md +19 -18
  29. data/guides/source/active_record_callbacks.md +12 -9
  30. data/guides/source/{migrations.md → active_record_migrations.md} +95 -220
  31. data/guides/source/active_record_postgresql.md +433 -0
  32. data/guides/source/active_record_querying.md +263 -265
  33. data/guides/source/active_record_validations.md +20 -11
  34. data/guides/source/active_support_core_extensions.md +159 -72
  35. data/guides/source/active_support_instrumentation.md +10 -7
  36. data/guides/source/api_documentation_guidelines.md +62 -16
  37. data/guides/source/asset_pipeline.md +258 -63
  38. data/guides/source/association_basics.md +81 -74
  39. data/guides/source/caching_with_rails.md +32 -7
  40. data/guides/source/command_line.md +52 -30
  41. data/guides/source/configuring.md +132 -29
  42. data/guides/source/constant_autoloading_and_reloading.md +1297 -0
  43. data/guides/source/contributing_to_ruby_on_rails.md +192 -112
  44. data/guides/source/credits.html.erb +2 -2
  45. data/guides/source/debugging_rails_applications.md +440 -286
  46. data/guides/source/development_dependencies_install.md +47 -36
  47. data/guides/source/documents.yaml +19 -7
  48. data/guides/source/engines.md +182 -182
  49. data/guides/source/form_helpers.md +79 -56
  50. data/guides/source/generators.md +24 -11
  51. data/guides/source/getting_started.md +337 -198
  52. data/guides/source/i18n.md +108 -65
  53. data/guides/source/index.html.erb +1 -0
  54. data/guides/source/initialization.md +108 -61
  55. data/guides/source/layout.html.erb +1 -4
  56. data/guides/source/layouts_and_rendering.md +27 -25
  57. data/guides/source/maintenance_policy.md +6 -3
  58. data/guides/source/nested_model_forms.md +7 -4
  59. data/guides/source/plugins.md +27 -27
  60. data/guides/source/rails_application_templates.md +21 -3
  61. data/guides/source/rails_on_rack.md +8 -4
  62. data/guides/source/routing.md +98 -72
  63. data/guides/source/ruby_on_rails_guides_guidelines.md +11 -12
  64. data/guides/source/security.md +38 -32
  65. data/guides/source/testing.md +188 -117
  66. data/guides/source/upgrading_ruby_on_rails.md +254 -28
  67. data/guides/source/working_with_javascript_in_rails.md +18 -16
  68. data/guides/w3c_validator.rb +2 -0
  69. metadata +40 -96
  70. data/guides/bug_report_templates/generic_gem.rb +0 -15
  71. data/guides/bug_report_templates/generic_master.rb +0 -26
  72. data/guides/code/getting_started/Gemfile +0 -40
  73. data/guides/code/getting_started/Gemfile.lock +0 -125
  74. data/guides/code/getting_started/README.rdoc +0 -28
  75. data/guides/code/getting_started/Rakefile +0 -6
  76. data/guides/code/getting_started/app/assets/javascripts/application.js +0 -15
  77. data/guides/code/getting_started/app/assets/javascripts/comments.js.coffee +0 -3
  78. data/guides/code/getting_started/app/assets/javascripts/posts.js.coffee +0 -3
  79. data/guides/code/getting_started/app/assets/javascripts/welcome.js.coffee +0 -3
  80. data/guides/code/getting_started/app/assets/stylesheets/application.css +0 -13
  81. data/guides/code/getting_started/app/assets/stylesheets/comments.css.scss +0 -3
  82. data/guides/code/getting_started/app/assets/stylesheets/posts.css.scss +0 -3
  83. data/guides/code/getting_started/app/assets/stylesheets/welcome.css.scss +0 -3
  84. data/guides/code/getting_started/app/controllers/application_controller.rb +0 -5
  85. data/guides/code/getting_started/app/controllers/comments_controller.rb +0 -23
  86. data/guides/code/getting_started/app/controllers/posts_controller.rb +0 -53
  87. data/guides/code/getting_started/app/controllers/welcome_controller.rb +0 -4
  88. data/guides/code/getting_started/app/helpers/application_helper.rb +0 -2
  89. data/guides/code/getting_started/app/helpers/comments_helper.rb +0 -2
  90. data/guides/code/getting_started/app/helpers/posts_helper.rb +0 -2
  91. data/guides/code/getting_started/app/helpers/welcome_helper.rb +0 -2
  92. data/guides/code/getting_started/app/models/comment.rb +0 -3
  93. data/guides/code/getting_started/app/models/post.rb +0 -7
  94. data/guides/code/getting_started/app/views/comments/_comment.html.erb +0 -15
  95. data/guides/code/getting_started/app/views/comments/_form.html.erb +0 -13
  96. data/guides/code/getting_started/app/views/layouts/application.html.erb +0 -14
  97. data/guides/code/getting_started/app/views/posts/_form.html.erb +0 -27
  98. data/guides/code/getting_started/app/views/posts/edit.html.erb +0 -5
  99. data/guides/code/getting_started/app/views/posts/index.html.erb +0 -21
  100. data/guides/code/getting_started/app/views/posts/new.html.erb +0 -5
  101. data/guides/code/getting_started/app/views/posts/show.html.erb +0 -18
  102. data/guides/code/getting_started/app/views/welcome/index.html.erb +0 -4
  103. data/guides/code/getting_started/bin/bundle +0 -4
  104. data/guides/code/getting_started/bin/rails +0 -4
  105. data/guides/code/getting_started/bin/rake +0 -4
  106. data/guides/code/getting_started/config/application.rb +0 -18
  107. data/guides/code/getting_started/config/boot.rb +0 -4
  108. data/guides/code/getting_started/config/database.yml +0 -25
  109. data/guides/code/getting_started/config/environment.rb +0 -5
  110. data/guides/code/getting_started/config/environments/development.rb +0 -30
  111. data/guides/code/getting_started/config/environments/production.rb +0 -80
  112. data/guides/code/getting_started/config/environments/test.rb +0 -36
  113. data/guides/code/getting_started/config/initializers/backtrace_silencers.rb +0 -7
  114. data/guides/code/getting_started/config/initializers/filter_parameter_logging.rb +0 -4
  115. data/guides/code/getting_started/config/initializers/inflections.rb +0 -16
  116. data/guides/code/getting_started/config/initializers/locale.rb +0 -9
  117. data/guides/code/getting_started/config/initializers/mime_types.rb +0 -5
  118. data/guides/code/getting_started/config/initializers/secret_token.rb +0 -12
  119. data/guides/code/getting_started/config/initializers/session_store.rb +0 -3
  120. data/guides/code/getting_started/config/initializers/wrap_parameters.rb +0 -14
  121. data/guides/code/getting_started/config/locales/en.yml +0 -23
  122. data/guides/code/getting_started/config/routes.rb +0 -7
  123. data/guides/code/getting_started/config.ru +0 -4
  124. data/guides/code/getting_started/db/migrate/20130122042648_create_posts.rb +0 -10
  125. data/guides/code/getting_started/db/migrate/20130122045842_create_comments.rb +0 -11
  126. data/guides/code/getting_started/db/schema.rb +0 -33
  127. data/guides/code/getting_started/db/seeds.rb +0 -7
  128. data/guides/code/getting_started/public/404.html +0 -60
  129. data/guides/code/getting_started/public/422.html +0 -60
  130. data/guides/code/getting_started/public/500.html +0 -59
  131. data/guides/code/getting_started/public/favicon.ico +0 -0
  132. data/guides/code/getting_started/public/robots.txt +0 -5
  133. data/guides/code/getting_started/test/controllers/comments_controller_test.rb +0 -7
  134. data/guides/code/getting_started/test/controllers/posts_controller_test.rb +0 -7
  135. data/guides/code/getting_started/test/controllers/welcome_controller_test.rb +0 -9
  136. data/guides/code/getting_started/test/fixtures/comments.yml +0 -11
  137. data/guides/code/getting_started/test/fixtures/posts.yml +0 -9
  138. data/guides/code/getting_started/test/helpers/comments_helper_test.rb +0 -4
  139. data/guides/code/getting_started/test/helpers/posts_helper_test.rb +0 -4
  140. data/guides/code/getting_started/test/helpers/welcome_helper_test.rb +0 -4
  141. data/guides/code/getting_started/test/models/comment_test.rb +0 -7
  142. data/guides/code/getting_started/test/models/post_test.rb +0 -7
  143. data/guides/code/getting_started/test/test_helper.rb +0 -12
@@ -8,7 +8,7 @@ This guide provides steps to be followed when you upgrade your applications to a
8
8
  General Advice
9
9
  --------------
10
10
 
11
- 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.
11
+ Before attempting to upgrade an existing application, you should be sure you have a good reason to upgrade. You need to balance 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.
12
12
 
13
13
  ### Test Coverage
14
14
 
@@ -24,6 +24,230 @@ Rails generally stays close to the latest released Ruby version when it's releas
24
24
 
25
25
  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 straight to 1.9.3 for smooth sailing.
26
26
 
27
+ ### The Rake Task
28
+
29
+ Rails provides the `rails:update` rake task. After updating the Rails version
30
+ in the Gemfile, run this rake task.
31
+ This will help you with the creation of new files and changes of old files in an
32
+ interactive session.
33
+
34
+ ```bash
35
+ $ rake rails:update
36
+ identical config/boot.rb
37
+ exist config
38
+ conflict config/routes.rb
39
+ Overwrite /myapp/config/routes.rb? (enter "h" for help) [Ynaqdh]
40
+ force config/routes.rb
41
+ conflict config/application.rb
42
+ Overwrite /myapp/config/application.rb? (enter "h" for help) [Ynaqdh]
43
+ force config/application.rb
44
+ conflict config/environment.rb
45
+ ...
46
+ ```
47
+
48
+ Don't forget to review the difference, to see if there were any unexpected changes.
49
+
50
+ Upgrading from Rails 4.1 to Rails 4.2
51
+ -------------------------------------
52
+
53
+ ### Web Console
54
+
55
+ First, add `gem 'web-console', '~> 2.0'` to the `:development` group in your Gemfile and run `bundle install` (it won't have been included when you upgraded Rails). Once it's been installed, you can simply drop a reference to the console helper (i.e., `<%= console %>`) into any view you want to enable it for. A console will also be provided on any error page you view in your development environment.
56
+
57
+ ### Responders
58
+
59
+ `respond_with` and the class-level `respond_to` methods have been extracted to the `responders` gem. To use them, simply add `gem 'responders', '~> 2.0'` to your Gemfile. Calls to `respond_with` and `respond_to` (again, at the class level) will no longer work without having included the `responders` gem in your dependencies:
60
+
61
+ ```ruby
62
+ # app/controllers/users_controller.rb
63
+
64
+ class UsersController < ApplicationController
65
+ respond_to :html, :json
66
+
67
+ def show
68
+ @user = User.find(params[:id])
69
+ respond_with @user
70
+ end
71
+ end
72
+ ```
73
+
74
+ Instance-level `respond_to` is unaffected and does not require the additional gem:
75
+
76
+ ```ruby
77
+ # app/controllers/users_controller.rb
78
+
79
+ class UsersController < ApplicationController
80
+ def show
81
+ @user = User.find(params[:id])
82
+ respond_to do |format|
83
+ format.html
84
+ format.json { render json: @user }
85
+ end
86
+ end
87
+ end
88
+ ```
89
+
90
+ See [#16526](https://github.com/rails/rails/pull/16526) for more details.
91
+
92
+ ### Error handling in transaction callbacks
93
+
94
+ Currently, Active Record suppresses errors raised
95
+ within `after_rollback` or `after_commit` callbacks and only prints them to
96
+ the logs. In the next version, these errors will no longer be suppressed.
97
+ Instead, the errors will propagate normally just like in other Active
98
+ Record callbacks.
99
+
100
+ When you define a `after_rollback` or `after_commit` callback, you
101
+ will receive a deprecation warning about this upcoming change. When
102
+ you are ready, you can opt into the new behavior and remove the
103
+ deprecation warning by adding following configuration to your
104
+ `config/application.rb`:
105
+
106
+ config.active_record.raise_in_transactional_callbacks = true
107
+
108
+ See [#14488](https://github.com/rails/rails/pull/14488) and
109
+ [#16537](https://github.com/rails/rails/pull/16537) for more details.
110
+
111
+ ### Ordering of test cases
112
+
113
+ In Rails 5.0, test cases will be executed in random order by default. In
114
+ anticipation of this change, Rails 4.2 introduced a new configuration option
115
+ `active_support.test_order` for explicitly specifying the test ordering. This
116
+ allows you to either lock down the current behavior by setting the option to
117
+ `:sorted`, or opt into the future behavior by setting the option to `:random`.
118
+
119
+ If you do not specify a value for this option, a deprecation warning will be
120
+ emitted. To avoid this, add the following line to your test environment:
121
+
122
+ ```ruby
123
+ # config/environments/test.rb
124
+ Rails.application.configure do
125
+ config.active_support.test_order = :sorted # or `:random` if you prefer
126
+ end
127
+ ```
128
+
129
+ ### Serialized attributes
130
+
131
+ When using a custom coder (e.g. `serialize :metadata, JSON`),
132
+ assigning `nil` to a serialized attribute will save it to the database
133
+ as `NULL` instead of passing the `nil` value through the coder (e.g. `"null"`
134
+ when using the `JSON` coder).
135
+
136
+ ### Production log level
137
+
138
+ In Rails 5, the default log level for the production environment will be changed
139
+ to `:debug` (from `:info`). To preserve the current default, add the following
140
+ line to your `production.rb`:
141
+
142
+ ```ruby
143
+ # Set to `:info` to match the current default, or set to `:debug` to opt-into
144
+ # the future default.
145
+ config.log_level = :info
146
+ ```
147
+
148
+ ### `after_bundle` in Rails templates
149
+
150
+ If you have a Rails template that adds all the files in version control, it
151
+ fails to add the generated binstubs because it gets executed before Bundler:
152
+
153
+ ```ruby
154
+ # template.rb
155
+ generate(:scaffold, "person name:string")
156
+ route "root to: 'people#index'"
157
+ rake("db:migrate")
158
+
159
+ git :init
160
+ git add: "."
161
+ git commit: %Q{ -m 'Initial commit' }
162
+ ```
163
+
164
+ You can now wrap the `git` calls in an `after_bundle` block. It will be run
165
+ after the binstubs have been generated.
166
+
167
+ ```ruby
168
+ # template.rb
169
+ generate(:scaffold, "person name:string")
170
+ route "root to: 'people#index'"
171
+ rake("db:migrate")
172
+
173
+ after_bundle do
174
+ git :init
175
+ git add: "."
176
+ git commit: %Q{ -m 'Initial commit' }
177
+ end
178
+ ```
179
+
180
+ ### Rails HTML Sanitizer
181
+
182
+ There's a new choice for sanitizing HTML fragments in your applications. The
183
+ venerable html-scanner approach is now officially being deprecated in favor of
184
+ [`Rails HTML Sanitizer`](https://github.com/rails/rails-html-sanitizer).
185
+
186
+ This means the methods `sanitize`, `sanitize_css`, `strip_tags` and
187
+ `strip_links` are backed by a new implementation.
188
+
189
+ This new sanitizer uses [Loofah](https://github.com/flavorjones/loofah) internally. Loofah in turn uses Nokogiri, which
190
+ wraps XML parsers written in both C and Java, so sanitization should be faster
191
+ no matter which Ruby version you run.
192
+
193
+ The new version updates `sanitize`, so it can take a `Loofah::Scrubber` for
194
+ powerful scrubbing.
195
+ [See some examples of scrubbers here](https://github.com/flavorjones/loofah#loofahscrubber).
196
+
197
+ Two new scrubbers have also been added: `PermitScrubber` and `TargetScrubber`.
198
+ Read the [gem's readme](https://github.com/rails/rails-html-sanitizer) for more information.
199
+
200
+ The documentation for `PermitScrubber` and `TargetScrubber` explains how you
201
+ can gain complete control over when and how elements should be stripped.
202
+
203
+ If your application needs to use the old sanitizer implementation, include `rails-deprecated_sanitizer` in your Gemfile:
204
+
205
+ ```ruby
206
+ gem 'rails-deprecated_sanitizer'
207
+ ```
208
+
209
+ ### Rails DOM Testing
210
+
211
+ The [`TagAssertions` module](http://api.rubyonrails.org/classes/ActionDispatch/Assertions/TagAssertions.html) (containing methods such as `assert_tag`), [has been deprecated](https://github.com/rails/rails/blob/6061472b8c310158a2a2e8e9a6b81a1aef6b60fe/actionpack/lib/action_dispatch/testing/assertions/dom.rb) in favor of the `assert_select` methods from the `SelectorAssertions` module, which has been extracted into the [rails-dom-testing gem](https://github.com/rails/rails-dom-testing).
212
+
213
+
214
+ ### Masked Authenticity Tokens
215
+
216
+ In order to mitigate SSL attacks, `form_authenticity_token` is now masked so that it varies with each request. Thus, tokens are validated by unmasking and then decrypting. As a result, any strategies for verifying requests from non-rails forms that relied on a static session CSRF token have to take this into account.
217
+
218
+ ### Action Mailer
219
+
220
+ Previously, calling a mailer method on a mailer class will result in the
221
+ corresponding instance method being executed directly. With the introduction of
222
+ Active Job and `#deliver_later`, this is no longer true. In Rails 4.2, the
223
+ invocation of the instance methods are deferred until either `deliver_now` or
224
+ `deliver_later` is called. For example:
225
+
226
+ ```ruby
227
+ class Notifier < ActionMailer::Base
228
+ def notify(user, ...)
229
+ puts "Called"
230
+ mail(to: user.email, ...)
231
+ end
232
+ end
233
+
234
+ mail = Notifier.notify(user, ...) # Notifier#welcome is not yet called at this point
235
+ mail = mail.deliver_now # Prints "Called"
236
+ ```
237
+
238
+ This should not result in any noticible differnces for most applications.
239
+ However, if you need some non-mailer methods to be exectuted synchronously, and
240
+ you were previously relying on the synchronous proxying behavior, you should
241
+ define them as class methods on the mailer class directly:
242
+
243
+ ```ruby
244
+ class Notifier < ActionMailer::Base
245
+ def self.broadcast_notifications(users, ...)
246
+ users.each { |user| Notifier.notify(user, ...) }
247
+ end
248
+ end
249
+ ```
250
+
27
251
  Upgrading from Rails 4.0 to Rails 4.1
28
252
  -------------------------------------
29
253
 
@@ -32,7 +256,7 @@ Upgrading from Rails 4.0 to Rails 4.1
32
256
  Or, "whaaat my tests are failing!!!?"
33
257
 
34
258
  Cross-site request forgery (CSRF) protection now covers GET requests with
35
- JavaScript responses, too. That prevents a third-party site from referencing
259
+ JavaScript responses, too. This prevents a third-party site from referencing
36
260
  your JavaScript URL and attempting to run it to extract sensitive data.
37
261
 
38
262
  This means that your functional and integration tests that use
@@ -47,7 +271,7 @@ will now trigger CSRF protection. Switch to
47
271
  xhr :get, :index, format: :js
48
272
  ```
49
273
 
50
- to explicitly test an XmlHttpRequest.
274
+ to explicitly test an `XmlHttpRequest`.
51
275
 
52
276
  If you really mean to load JavaScript from remote `<script>` tags, skip CSRF
53
277
  protection on that action.
@@ -83,11 +307,11 @@ secrets, you need to:
83
307
  ```
84
308
 
85
309
  2. Use your existing `secret_key_base` from the `secret_token.rb` initializer to
86
- set the SECRET_KEY_BASE environment variable for whichever users run the Rails
87
- app in production mode. Alternately, you can simply copy the existing
88
- `secret_key_base` from the `secret_token.rb` initializer to `secrets.yml`
310
+ set the SECRET_KEY_BASE environment variable for whichever users running the
311
+ Rails application in production mode. Alternatively, you can simply copy the existing
312
+ `secret_key_base` from the `secret_token.rb` initializer to `secrets.yml`
89
313
  under the `production` section, replacing '<%= ENV["SECRET_KEY_BASE"] %>'.
90
-
314
+
91
315
  3. Remove the `secret_token.rb` initializer.
92
316
 
93
317
  4. Use `rake secret` to generate new keys for the `development` and `test` sections.
@@ -98,7 +322,7 @@ secrets, you need to:
98
322
 
99
323
  If your test helper contains a call to
100
324
  `ActiveRecord::Migration.check_pending!` this can be removed. The check
101
- is now done automatically when you `require 'test_help'`, although
325
+ is now done automatically when you `require 'rails/test_help'`, although
102
326
  leaving this line in your helper is not harmful in any way.
103
327
 
104
328
  ### Cookies serializer
@@ -142,7 +366,7 @@ If you use the cookie session store, this would apply to the `session` and
142
366
 
143
367
  Flash message keys are
144
368
  [normalized to strings](https://github.com/rails/rails/commit/a668beffd64106a1e1fedb71cc25eaaa11baf0c1). They
145
- can still be accessed using either symbols or strings. Lopping through the flash
369
+ can still be accessed using either symbols or strings. Looping through the flash
146
370
  will always yield string keys:
147
371
 
148
372
  ```ruby
@@ -232,7 +456,7 @@ class ReadOnlyModel < ActiveRecord::Base
232
456
  end
233
457
  ```
234
458
 
235
- This behaviour was never intentionally supported. Due to a change in the internals
459
+ This behavior was never intentionally supported. Due to a change in the internals
236
460
  of `ActiveSupport::Callbacks`, this is no longer allowed in Rails 4.1. Using a
237
461
  `return` statement in an inline callback block causes a `LocalJumpError` to
238
462
  be raised when the callback is executed.
@@ -287,8 +511,8 @@ ActiveRecord::FixtureSet.context_class.send :include, FixtureFileHelpers
287
511
 
288
512
  ### I18n enforcing available locales
289
513
 
290
- Rails 4.1 now defaults the I18n option `enforce_available_locales` to `true`,
291
- meaning that it will make sure that all locales passed to it must be declared in
514
+ Rails 4.1 now defaults the I18n option `enforce_available_locales` to `true`. This
515
+ means that it will make sure that all locales passed to it must be declared in
292
516
  the `available_locales` list.
293
517
 
294
518
  To disable it (and allow I18n to accept *any* locale option) add the following
@@ -298,9 +522,10 @@ configuration to your application:
298
522
  config.i18n.enforce_available_locales = false
299
523
  ```
300
524
 
301
- Note that this option was added as a security measure, to ensure user input could
302
- not be used as locale information unless previously known, so it's recommended not
303
- to disable this option unless you have a strong reason for doing so.
525
+ Note that this option was added as a security measure, to ensure user input
526
+ cannot be used as locale information unless it is previously known. Therefore,
527
+ it's recommended not to disable this option unless you have a strong reason for
528
+ doing so.
304
529
 
305
530
  ### Mutator methods called on Relation
306
531
 
@@ -321,10 +546,10 @@ authors.compact!
321
546
 
322
547
  ### Changes on Default Scopes
323
548
 
324
- Default scopes are no longer overriden by chained conditions.
549
+ Default scopes are no longer overridden by chained conditions.
325
550
 
326
551
  In previous versions when you defined a `default_scope` in a model
327
- it was overriden by chained conditions in the same field. Now it
552
+ it was overridden by chained conditions in the same field. Now it
328
553
  is merged like any other scope.
329
554
 
330
555
  Before:
@@ -401,14 +626,14 @@ response body, you should be using `render :plain` as most browsers will escape
401
626
  unsafe content in the response for you.
402
627
 
403
628
  We will be deprecating the use of `render :text` in a future version. So please
404
- start using the more precise `:plain:`, `:html`, and `:body` options instead.
629
+ start using the more precise `:plain`, `:html`, and `:body` options instead.
405
630
  Using `render :text` may pose a security risk, as the content is sent as
406
631
  `text/html`.
407
632
 
408
633
  ### PostgreSQL json and hstore datatypes
409
634
 
410
635
  Rails 4.1 will map `json` and `hstore` columns to a string-keyed Ruby `Hash`.
411
- In earlier versions a `HashWithIndifferentAccess` was used. This means that
636
+ In earlier versions, a `HashWithIndifferentAccess` was used. This means that
412
637
  symbol access is no longer supported. This is also the case for
413
638
  `store_accessors` based on top of `json` or `hstore` columns. Make sure to use
414
639
  string keys consistently.
@@ -514,7 +739,7 @@ def update
514
739
  respond_to do |format|
515
740
  format.json do
516
741
  # perform a partial update
517
- @post.update params[:post]
742
+ @article.update params[:article]
518
743
  end
519
744
 
520
745
  format.json_patch do
@@ -541,7 +766,7 @@ file (in `config/application.rb`):
541
766
  ```ruby
542
767
  # Require the gems listed in Gemfile, including any gems
543
768
  # you've limited to :test, :development, or :production.
544
- Bundler.require(*Rails.groups)
769
+ Bundler.require(:default, Rails.env)
545
770
  ```
546
771
 
547
772
  ### vendor/plugins
@@ -580,7 +805,7 @@ this gem such as `whitelist_attributes` or `mass_assignment_sanitizer` options.
580
805
  * Rails 4.0 has deprecated `ActiveRecord::TestCase` in favor of `ActiveSupport::TestCase`.
581
806
 
582
807
  * Rails 4.0 has deprecated the old-style hash based finder API. This means that
583
- methods which previously accepted "finder options" no longer do.
808
+ methods which previously accepted "finder options" no longer do. For example, `Book.find(:all, conditions: { name: '1984' })` has been deprecated in favor of `Book.where(name: '1984')`
584
809
 
585
810
  * All dynamic methods except for `find_by_...` and `find_by_...!` are deprecated.
586
811
  Here's how you can handle the changes:
@@ -605,7 +830,7 @@ Rails 4.0 extracted Active Resource to its own gem. If you still need the featur
605
830
 
606
831
  * 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`.
607
832
 
608
- * 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:
833
+ * 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 behavior. This means that you can comment or remove the following option in the `config/initializers/wrap_parameters.rb` file:
609
834
 
610
835
  ```ruby
611
836
  # Disable root element in JSON by default.
@@ -731,7 +956,7 @@ The order in which helpers from more than one directory are loaded has changed i
731
956
 
732
957
  ### Active Record Observer and Action Controller Sweeper
733
958
 
734
- Active Record Observer and Action Controller Sweeper have been extracted to the `rails-observers` gem. You will need to add the `rails-observers` gem if you require these features.
959
+ `ActiveRecord::Observer` and `ActionController::Caching::Sweeper` have been extracted to the `rails-observers` gem. You will need to add the `rails-observers` gem if you require these features.
735
960
 
736
961
  ### sprockets-rails
737
962
 
@@ -749,17 +974,18 @@ config.assets.js_compressor = :uglifier
749
974
  Upgrading from Rails 3.1 to Rails 3.2
750
975
  -------------------------------------
751
976
 
752
- 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.
977
+ If your application is currently on any version of Rails older than 3.1.x, you
978
+ should upgrade to Rails 3.1 before attempting an update to Rails 3.2.
753
979
 
754
- The following changes are meant for upgrading your application to Rails 3.2.17,
755
- the last 3.2.x version of Rails.
980
+ The following changes are meant for upgrading your application to the latest
981
+ 3.2.x version of Rails.
756
982
 
757
983
  ### Gemfile
758
984
 
759
985
  Make the following changes to your `Gemfile`.
760
986
 
761
987
  ```ruby
762
- gem 'rails', '3.2.17'
988
+ gem 'rails', '3.2.18'
763
989
 
764
990
  group :assets do
765
991
  gem 'sass-rails', '~> 3.2.6'
@@ -111,7 +111,9 @@ paintIt = (element, backgroundColor, textColor) ->
111
111
  element.style.color = textColor
112
112
 
113
113
  $ ->
114
- $("a[data-background-color]").click ->
114
+ $("a[data-background-color]").click (e) ->
115
+ e.preventDefault()
116
+
115
117
  backgroundColor = $(this).data("background-color")
116
118
  textColor = $(this).data("text-color")
117
119
  paintIt(this, backgroundColor, textColor)
@@ -156,7 +158,7 @@ is a helper that assists with writing forms. `form_for` takes a `:remote`
156
158
  option. It works like this:
157
159
 
158
160
  ```erb
159
- <%= form_for(@post, remote: true) do |f| %>
161
+ <%= form_for(@article, remote: true) do |f| %>
160
162
  ...
161
163
  <% end %>
162
164
  ```
@@ -164,7 +166,7 @@ option. It works like this:
164
166
  This will generate the following HTML:
165
167
 
166
168
  ```html
167
- <form accept-charset="UTF-8" action="/posts" class="new_post" data-remote="true" id="new_post" method="post">
169
+ <form accept-charset="UTF-8" action="/articles" class="new_article" data-remote="true" id="new_article" method="post">
168
170
  ...
169
171
  </form>
170
172
  ```
@@ -178,10 +180,10 @@ bind to the `ajax:success` event. On failure, use `ajax:error`. Check it out:
178
180
 
179
181
  ```coffeescript
180
182
  $(document).ready ->
181
- $("#new_post").on("ajax:success", (e, data, status, xhr) ->
182
- $("#new_post").append xhr.responseText
183
+ $("#new_article").on("ajax:success", (e, data, status, xhr) ->
184
+ $("#new_article").append xhr.responseText
183
185
  ).on "ajax:error", (e, xhr, status, error) ->
184
- $("#new_post").append "<p>ERROR</p>"
186
+ $("#new_article").append "<p>ERROR</p>"
185
187
  ```
186
188
 
187
189
  Obviously, you'll want to be a bit more sophisticated than that, but it's a
@@ -194,7 +196,7 @@ is very similar to `form_for`. It has a `:remote` option that you can use like
194
196
  this:
195
197
 
196
198
  ```erb
197
- <%= form_tag('/posts', remote: true) do %>
199
+ <%= form_tag('/articles', remote: true) do %>
198
200
  ...
199
201
  <% end %>
200
202
  ```
@@ -202,7 +204,7 @@ this:
202
204
  This will generate the following HTML:
203
205
 
204
206
  ```html
205
- <form accept-charset="UTF-8" action="/posts" data-remote="true" method="post">
207
+ <form accept-charset="UTF-8" action="/articles" data-remote="true" method="post">
206
208
  ...
207
209
  </form>
208
210
  ```
@@ -217,21 +219,21 @@ is a helper that assists with generating links. It has a `:remote` option you
217
219
  can use like this:
218
220
 
219
221
  ```erb
220
- <%= link_to "a post", @post, remote: true %>
222
+ <%= link_to "an article", @article, remote: true %>
221
223
  ```
222
224
 
223
225
  which generates
224
226
 
225
227
  ```html
226
- <a href="/posts/1" data-remote="true">a post</a>
228
+ <a href="/articles/1" data-remote="true">an article</a>
227
229
  ```
228
230
 
229
231
  You can bind to the same Ajax events as `form_for`. Here's an example. Let's
230
- assume that we have a list of posts that can be deleted with just one
232
+ assume that we have a list of articles that can be deleted with just one
231
233
  click. We would generate some HTML like this:
232
234
 
233
235
  ```erb
234
- <%= link_to "Delete post", @post, remote: true, method: :delete %>
236
+ <%= link_to "Delete article", @article, remote: true, method: :delete %>
235
237
  ```
236
238
 
237
239
  and write some CoffeeScript like this:
@@ -239,7 +241,7 @@ and write some CoffeeScript like this:
239
241
  ```coffeescript
240
242
  $ ->
241
243
  $("a[data-remote]").on "ajax:success", (e, data, status, xhr) ->
242
- alert "The post was deleted."
244
+ alert "The article was deleted."
243
245
  ```
244
246
 
245
247
  ### button_to
@@ -247,14 +249,14 @@ $ ->
247
249
  [`button_to`](http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-button_to) is a helper that helps you create buttons. It has a `:remote` option that you can call like this:
248
250
 
249
251
  ```erb
250
- <%= button_to "A post", @post, remote: true %>
252
+ <%= button_to "An article", @article, remote: true %>
251
253
  ```
252
254
 
253
255
  this generates
254
256
 
255
257
  ```html
256
- <form action="/posts/1" class="button_to" data-remote="true" method="post">
257
- <div><input type="submit" value="A post"></div>
258
+ <form action="/articles/1" class="button_to" data-remote="true" method="post">
259
+ <div><input type="submit" value="An article"></div>
258
260
  </form>
259
261
  ```
260
262
 
@@ -60,6 +60,8 @@ module RailsGuides
60
60
  def guides_to_validate
61
61
  guides = Dir["./output/*.html"]
62
62
  guides.delete("./output/layout.html")
63
+ guides.delete("./output/_license.html")
64
+ guides.delete("./output/_welcome.html")
63
65
  ENV.key?('ONLY') ? select_only(guides) : guides
64
66
  end
65
67