From 2d98f7888009439cd82a15ec29562ac43b728ade Mon Sep 17 00:00:00 2001 From: Prathamesh Sonpatki Date: Thu, 18 Apr 2013 17:03:07 +0530 Subject: stdlib -> standard library --- guides/source/4_0_release_notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides/source/4_0_release_notes.md') diff --git a/guides/source/4_0_release_notes.md b/guides/source/4_0_release_notes.md index 2793d9025f..d71e07053c 100644 --- a/guides/source/4_0_release_notes.md +++ b/guides/source/4_0_release_notes.md @@ -142,7 +142,7 @@ Please refer to the [Changelog](https://github.com/rails/rails/blob/master/activ * Deprecates the compatibility method Module#local_constant_names, use Module#local_constants instead (which returns symbols). -* BufferedLogger is deprecated. Use ActiveSupport::Logger, or the logger from Ruby stdlib. +* BufferedLogger is deprecated. Use ActiveSupport::Logger, or the logger from Ruby standard library. * Deprecate `assert_present` and `assert_blank` in favor of `assert object.blank?` and `assert object.present?` -- cgit v1.2.3 From ab819e5b10b121bd8b6eb2e04eb2c79c5b7f432a Mon Sep 17 00:00:00 2001 From: Prathamesh Sonpatki Date: Fri, 19 Apr 2013 08:26:42 +0530 Subject: rubygem -> RubyGem * Reference -> http://guides.rubygems.org/what-is-a-gem/ --- guides/source/4_0_release_notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides/source/4_0_release_notes.md') diff --git a/guides/source/4_0_release_notes.md b/guides/source/4_0_release_notes.md index d71e07053c..5d8d1f93ff 100644 --- a/guides/source/4_0_release_notes.md +++ b/guides/source/4_0_release_notes.md @@ -22,7 +22,7 @@ Creating a Rails 4.0 application -------------------------------- ``` - You should have the 'rails' rubygem installed + You should have the 'rails' RubyGem installed $ rails new myapp $ cd myapp ``` -- cgit v1.2.3 From 6cc1b4280e06e2f6f9447d408d2d5ddd7f469e44 Mon Sep 17 00:00:00 2001 From: Yves Senn Date: Tue, 30 Apr 2013 18:06:23 +0200 Subject: more naming fixes. * it's Action Mailer not ActionMailer * it's Action Pack not ActionPack * it's Active Support not ActiveSupport /cc @fxn --- guides/source/4_0_release_notes.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'guides/source/4_0_release_notes.md') diff --git a/guides/source/4_0_release_notes.md b/guides/source/4_0_release_notes.md index 5d8d1f93ff..50a3c6fabc 100644 --- a/guides/source/4_0_release_notes.md +++ b/guides/source/4_0_release_notes.md @@ -113,7 +113,8 @@ Please refer to the [Changelog](https://github.com/rails/rails/blob/master/activ * Add `ActiveModel::ForbiddenAttributesProtection`, a simple module to protect attributes from mass assignment when non-permitted attributes are passed. -* Added `ActiveModel::Model`, a mixin to make Ruby objects work with ActionPack out of box. +* Added `ActiveModel::Model`, a mixin to make Ruby objects work with + Action Pack out of box. ### Deprecations -- cgit v1.2.3