提交 0a33fcd6 编写于 作者: V Vijay Dev

Merge branch 'master' of github.com:lifo/docrails

...@@ -775,8 +775,8 @@ def label(object_name, method, content_or_options = nil, options = nil, &block) ...@@ -775,8 +775,8 @@ def label(object_name, method, content_or_options = nil, options = nil, &block)
# text_field(:post, :title, class: "create_input") # text_field(:post, :title, class: "create_input")
# # => <input type="text" id="post_title" name="post[title]" value="#{@post.title}" class="create_input" /> # # => <input type="text" id="post_title" name="post[title]" value="#{@post.title}" class="create_input" />
# #
# text_field(:session, :user, onchange: "if $('session[user]').value == 'admin' { alert('Your login can not be admin!'); }") # text_field(:session, :user, onchange: "if $('#session_user').value == 'admin' { alert('Your login can not be admin!'); }")
# # => <input type="text" id="session_user" name="session[user]" value="#{@session.user}" onchange = "if $('session[user]').value == 'admin' { alert('Your login can not be admin!'); }"/> # # => <input type="text" id="session_user" name="session[user]" value="#{@session.user}" onchange = "if $('#session_user').value == 'admin' { alert('Your login can not be admin!'); }"/>
# #
# text_field(:snippet, :code, size: 20, class: 'code_input') # text_field(:snippet, :code, size: 20, class: 'code_input')
# # => <input type="text" id="snippet_code" name="snippet[code]" size="20" value="#{@snippet.code}" class="code_input" /> # # => <input type="text" id="snippet_code" name="snippet[code]" size="20" value="#{@snippet.code}" class="code_input" />
...@@ -830,13 +830,25 @@ def hidden_field(object_name, method, options = {}) ...@@ -830,13 +830,25 @@ def hidden_field(object_name, method, options = {})
# #
# Using this method inside a +form_for+ block will set the enclosing form's encoding to <tt>multipart/form-data</tt>. # Using this method inside a +form_for+ block will set the enclosing form's encoding to <tt>multipart/form-data</tt>.
# #
# ==== Options
# * Creates standard HTML attributes for the tag.
# * <tt>:disabled</tt> - If set to true, the user will not be able to use this input.
# * <tt>:multiple</tt> - If set to true, *in most updated browsers* the user will be allowed to select multiple files.
# * <tt>:accept</tt> - If set to one or multiple mime-types, the user will be suggested a filter when choosing a file. You still need to set up model validations.
#
# ==== Examples # ==== Examples
# file_field(:user, :avatar) # file_field(:user, :avatar)
# # => <input type="file" id="user_avatar" name="user[avatar]" /> # # => <input type="file" id="user_avatar" name="user[avatar]" />
# #
# file_field(:post, :image, :multiple => true)
# # => <input type="file" id="post_image" name="post[image]" multiple="true" />
#
# file_field(:post, :attached, accept: 'text/html') # file_field(:post, :attached, accept: 'text/html')
# # => <input accept="text/html" type="file" id="post_attached" name="post[attached]" /> # # => <input accept="text/html" type="file" id="post_attached" name="post[attached]" />
# #
# file_field(:post, :image, accept: 'image/png,image/gif,image/jpeg')
# # => <input type="file" id="post_image" name="post[image]" accept="image/png,image/gif,image/jpeg" />
#
# file_field(:attachment, :file, class: 'file_input') # file_field(:attachment, :file, class: 'file_input')
# # => <input type="file" id="attachment_file" name="attachment[file]" class="file_input" /> # # => <input type="file" id="attachment_file" name="attachment[file]" class="file_input" />
def file_field(object_name, method, options = {}) def file_field(object_name, method, options = {})
...@@ -1214,6 +1226,10 @@ def #{selector}(method, options = {}) # def text_field(method, options = {}) ...@@ -1214,6 +1226,10 @@ def #{selector}(method, options = {}) # def text_field(method, options = {})
RUBY_EVAL RUBY_EVAL
end end
# Instructions for this +method+ can be found in this documentation.
# For reusability and delegation reasons, various +methods+ have equal names.
# Please, look up the next +method+ with this name
#
def fields_for(record_name, record_object = nil, fields_options = {}, &block) def fields_for(record_name, record_object = nil, fields_options = {}, &block)
fields_options, record_object = record_object, nil if record_object.is_a?(Hash) && record_object.extractable_options? fields_options, record_object = record_object, nil if record_object.is_a?(Hash) && record_object.extractable_options?
fields_options[:builder] ||= options[:builder] fields_options[:builder] ||= options[:builder]
...@@ -1243,23 +1259,43 @@ def fields_for(record_name, record_object = nil, fields_options = {}, &block) ...@@ -1243,23 +1259,43 @@ def fields_for(record_name, record_object = nil, fields_options = {}, &block)
@template.fields_for(record_name, record_object, fields_options, &block) @template.fields_for(record_name, record_object, fields_options, &block)
end end
# Instructions for this +method+ can be found in this documentation.
# For reusability and delegation reasons, various +methods+ have equal names.
# Please, look up the next +method+ with this name
#
def label(method, text = nil, options = {}, &block) def label(method, text = nil, options = {}, &block)
@template.label(@object_name, method, text, objectify_options(options), &block) @template.label(@object_name, method, text, objectify_options(options), &block)
end end
# Instructions for this +method+ can be found in this documentation.
# For reusability and delegation reasons, various +methods+ have equal names.
# Please, look up the next +method+ with this name
#
def check_box(method, options = {}, checked_value = "1", unchecked_value = "0") def check_box(method, options = {}, checked_value = "1", unchecked_value = "0")
@template.check_box(@object_name, method, objectify_options(options), checked_value, unchecked_value) @template.check_box(@object_name, method, objectify_options(options), checked_value, unchecked_value)
end end
# Instructions for this +method+ can be found in this documentation.
# For reusability and delegation reasons, various +methods+ have equal names.
# Please, look up the next +method+ with this name
#
def radio_button(method, tag_value, options = {}) def radio_button(method, tag_value, options = {})
@template.radio_button(@object_name, method, tag_value, objectify_options(options)) @template.radio_button(@object_name, method, tag_value, objectify_options(options))
end end
# Instructions for this +method+ can be found in this documentation.
# For reusability and delegation reasons, various +methods+ have equal names.
# Please, look up the next +method+ with this name
#
def hidden_field(method, options = {}) def hidden_field(method, options = {})
@emitted_hidden_id = true if method == :id @emitted_hidden_id = true if method == :id
@template.hidden_field(@object_name, method, objectify_options(options)) @template.hidden_field(@object_name, method, objectify_options(options))
end end
# Instructions for this +method+ can be found in this documentation.
# For reusability and delegation reasons, various +methods+ have equal names.
# Please, look up the next +method+ with this name
#
def file_field(method, options = {}) def file_field(method, options = {})
self.multipart = true self.multipart = true
@template.file_field(@object_name, method, objectify_options(options)) @template.file_field(@object_name, method, objectify_options(options))
......
...@@ -233,6 +233,8 @@ def hidden_field_tag(name, value = nil, options = {}) ...@@ -233,6 +233,8 @@ def hidden_field_tag(name, value = nil, options = {})
# ==== Options # ==== Options
# * Creates standard HTML attributes for the tag. # * Creates standard HTML attributes for the tag.
# * <tt>:disabled</tt> - If set to true, the user will not be able to use this input. # * <tt>:disabled</tt> - If set to true, the user will not be able to use this input.
# * <tt>:multiple</tt> - If set to true, *in most updated browsers* the user will be allowed to select multiple files.
# * <tt>:accept</tt> - If set to one or multiple mime-types, the user will be suggested a filter when choosing a file. You still need to set up model validations.
# #
# ==== Examples # ==== Examples
# file_field_tag 'attachment' # file_field_tag 'attachment'
......
...@@ -30,7 +30,7 @@ def method_missing(called, *args, &block) ...@@ -30,7 +30,7 @@ def method_missing(called, *args, &block)
# @old_object = DeprecatedObjectProxy.new(Object.new, "Don't use this object anymore!") # @old_object = DeprecatedObjectProxy.new(Object.new, "Don't use this object anymore!")
# @old_object = DeprecatedObjectProxy.new(Object.new, "Don't use this object anymore!", deprecator_instance) # @old_object = DeprecatedObjectProxy.new(Object.new, "Don't use this object anymore!", deprecator_instance)
# #
# When someone execute any method expect +inspect+ on proxy object this will # When someone executes any method except +inspect+ on proxy object this will
# trigger +warn+ method on +deprecator_instance+. # trigger +warn+ method on +deprecator_instance+.
# #
# Default deprecator is <tt>ActiveSupport::Deprecation</tt> # Default deprecator is <tt>ActiveSupport::Deprecation</tt>
......
...@@ -5,13 +5,13 @@ In this guide you will learn how controllers work and how they fit into the requ ...@@ -5,13 +5,13 @@ In this guide you will learn how controllers work and how they fit into the requ
After reading this guide, you will know: After reading this guide, you will know:
* Follow the flow of a request through a controller. * How to follow the flow of a request through a controller.
* Understand why and how to store data in the session or cookies. * Why and how to store data in the session or cookies.
* Work with filters to execute code during request processing. * How to work with filters to execute code during request processing.
* Use Action Controller's built-in HTTP authentication. * How to use Action Controller's built-in HTTP authentication.
* Stream data directly to the user's browser. * How to stream data directly to the user's browser.
* Filter sensitive parameters so they do not appear in the application's log. * How to filter sensitive parameters so they do not appear in the application's log.
* Deal with exceptions that may be raised during request processing. * How to deal with exceptions that may be raised during request processing.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
...@@ -849,7 +849,7 @@ NOTE: Certain exceptions are only rescuable from the `ApplicationController` cla ...@@ -849,7 +849,7 @@ NOTE: Certain exceptions are only rescuable from the `ApplicationController` cla
Force HTTPS protocol Force HTTPS protocol
-------------------- --------------------
Sometime you might want to force a particular controller to only be accessible via an HTTPS protocol for security reasons. Since Rails 3.1 you can now use the `force_ssl` method in your controller to enforce that: Sometime you might want to force a particular controller to only be accessible via an HTTPS protocol for security reasons. You can use the `force_ssl` method in your controller to enforce that:
```ruby ```ruby
class DinnerController class DinnerController
...@@ -857,7 +857,7 @@ class DinnerController ...@@ -857,7 +857,7 @@ class DinnerController
end end
``` ```
Just like the filter, you could also passing `:only` and `:except` to enforce the secure connection only to specific actions: Just like the filter, you could also pass `:only` and `:except` to enforce the secure connection only to specific actions:
```ruby ```ruby
class DinnerController class DinnerController
......
...@@ -5,6 +5,10 @@ This guide should provide you with all you need to get started in sending and re ...@@ -5,6 +5,10 @@ This guide should provide you with all you need to get started in sending and re
After reading this guide, you will know: After reading this guide, you will know:
* How to send and receive email within a Rails application.
* How to generate and edit an Action Mailer class and mailer view.
* How to configure Action Mailer for your environment.
* How to test your Action Mailer classes.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
Introduction Introduction
...@@ -105,7 +109,7 @@ When you call the `mail` method now, Action Mailer will detect the two templates ...@@ -105,7 +109,7 @@ When you call the `mail` method now, Action Mailer will detect the two templates
#### Wire It Up So That the System Sends the Email When a User Signs Up #### Wire It Up So That the System Sends the Email When a User Signs Up
There are several ways to do this, some people create Rails Observers to fire off emails, others do it inside of the User Model. However, in Rails 3, mailers are really just another way to render a view. Instead of rendering a view and sending out the HTTP protocol, they are just sending it out through the Email protocols instead. Due to this, it makes sense to just have your controller tell the mailer to send an email when a user is successfully created. There are several ways to do this, some people create Rails Observers to fire off emails, others do it inside of the User Model. However, mailers are really just another way to render a view. Instead of rendering a view and sending out the HTTP protocol, they are just sending it out through the Email protocols instead. Due to this, it makes sense to just have your controller tell the mailer to send an email when a user is successfully created.
Setting this up is painfully simple. Setting this up is painfully simple.
...@@ -145,10 +149,6 @@ This provides a much simpler implementation that does not require the registerin ...@@ -145,10 +149,6 @@ This provides a much simpler implementation that does not require the registerin
The method `welcome_email` returns a `Mail::Message` object which can then just be told `deliver` to send itself out. The method `welcome_email` returns a `Mail::Message` object which can then just be told `deliver` to send itself out.
NOTE: In previous versions of Rails, you would call `deliver_welcome_email` or `create_welcome_email`. This has been deprecated in Rails 3.0 in favour of just calling the method name itself.
WARNING: Sending out an email should only take a fraction of a second. If you are planning on sending out many emails, or you have a slow domain resolution service, you might want to investigate using a background process like Delayed Job.
### Auto encoding header values ### Auto encoding header values
Action Mailer now handles the auto encoding of multibyte characters inside of headers and bodies. Action Mailer now handles the auto encoding of multibyte characters inside of headers and bodies.
......
...@@ -1263,10 +1263,8 @@ Creates a field set for grouping HTML form elements. ...@@ -1263,10 +1263,8 @@ Creates a field set for grouping HTML form elements.
Creates a file upload field. Creates a file upload field.
Prior to Rails 3.1, if you are using file uploads, then you will need to set the multipart option for the form tag. Rails 3.1+ does this automatically.
```html+erb ```html+erb
<%= form_tag {action: "post"}, {multipart: true} do %> <%= form_tag {action: "post"} do %>
<label for="file">File to Upload</label> <%= file_field_tag "file" %> <label for="file">File to Upload</label> <%= file_field_tag "file" %>
<%= submit_tag %> <%= submit_tag %>
<% end %> <% end %>
......
...@@ -4,11 +4,11 @@ Active Record Callbacks ...@@ -4,11 +4,11 @@ Active Record Callbacks
This guide teaches you how to hook into the life cycle of your Active Record This guide teaches you how to hook into the life cycle of your Active Record
objects. objects.
After reading this guide and trying out the presented concepts, we hope that you'll be able to: After reading this guide, you will know:
* Understand the life cycle of Active Record objects * The life cycle of Active Record objects.
* Create callback methods that respond to events in the object life cycle * How to create callback methods that respond to events in the object life cycle.
* Create special classes that encapsulate common behavior for your callbacks * How to create special classes that encapsulate common behavior for your callbacks.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
......
...@@ -5,13 +5,13 @@ This guide covers different ways to retrieve data from the database using Active ...@@ -5,13 +5,13 @@ This guide covers different ways to retrieve data from the database using Active
After reading this guide, you will know: After reading this guide, you will know:
* Find records using a variety of methods and conditions. * How to find records using a variety of methods and conditions.
* Specify the order, retrieved attributes, grouping, and other properties of the found records. * How to specify the order, retrieved attributes, grouping, and other properties of the found records.
* Use eager loading to reduce the number of database queries needed for data retrieval. * How to use eager loading to reduce the number of database queries needed for data retrieval.
* Use dynamic finders methods. * How to use dynamic finders methods.
* Check for the existence of particular records. * How to check for the existence of particular records.
* Perform various calculations on Active Record models. * How to perform various calculations on Active Record models.
* Run EXPLAIN on relations. * How to run EXPLAIN on relations.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
...@@ -1204,7 +1204,7 @@ class Client < ActiveRecord::Base ...@@ -1204,7 +1204,7 @@ class Client < ActiveRecord::Base
end end
``` ```
### Removing all scoping ### Removing All Scoping
If we wish to remove scoping for any reason we can use the `unscoped` method. This is If we wish to remove scoping for any reason we can use the `unscoped` method. This is
especially useful if a `default_scope` is specified in the model and should not be especially useful if a `default_scope` is specified in the model and should not be
...@@ -1236,9 +1236,7 @@ You can specify an exclamation point (`!`) on the end of the dynamic finders to ...@@ -1236,9 +1236,7 @@ You can specify an exclamation point (`!`) on the end of the dynamic finders to
If you want to find both by name and locked, you can chain these finders together by simply typing "`and`" between the fields. For example, `Client.find_by_first_name_and_locked("Ryan", true)`. If you want to find both by name and locked, you can chain these finders together by simply typing "`and`" between the fields. For example, `Client.find_by_first_name_and_locked("Ryan", true)`.
WARNING: Up to and including Rails 3.1, when the number of arguments passed to a dynamic finder method is lesser than the number of fields, say `Client.find_by_name_and_locked("Ryan")`, the behavior is to pass `nil` as the missing argument. This is **unintentional** and this behavior will be changed in Rails 3.2 to throw an `ArgumentError`. Find or Build a New Object
Find or build a new object
-------------------------- --------------------------
It's common that you need to find a record or create it if it doesn't exist. You can do that with the `find_or_create_by` and `find_or_create_by!` methods. It's common that you need to find a record or create it if it doesn't exist. You can do that with the `find_or_create_by` and `find_or_create_by!` methods.
......
...@@ -6,9 +6,9 @@ the database using Active Record's validations feature. ...@@ -6,9 +6,9 @@ the database using Active Record's validations feature.
After reading this guide, you will know: After reading this guide, you will know:
* Use the built-in Active Record validation helpers * How to use the built-in Active Record validation helpers.
* Create your own custom validation methods * How to create your own custom validation methods.
* Work with the error messages generated by the validation process * How to work with the error messages generated by the validation process.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
...@@ -779,7 +779,7 @@ class Account < ActiveRecord::Base ...@@ -779,7 +779,7 @@ class Account < ActiveRecord::Base
end end
``` ```
### Grouping conditional validations ### Grouping Conditional validations
Sometimes it is useful to have multiple validations use one condition, it can Sometimes it is useful to have multiple validations use one condition, it can
be easily achieved using `with_options`. be easily achieved using `with_options`.
...@@ -796,7 +796,7 @@ end ...@@ -796,7 +796,7 @@ end
All validations inside of `with_options` block will have automatically passed All validations inside of `with_options` block will have automatically passed
the condition `if: :is_admin?` the condition `if: :is_admin?`
### Combining validation conditions ### Combining Validation Conditions
On the other hand, when multiple conditions define whether or not a validation On the other hand, when multiple conditions define whether or not a validation
should happen, an `Array` can be used. Moreover, you can apply both `:if` and should happen, an `Array` can be used. Moreover, you can apply both `:if` and
......
...@@ -7,6 +7,11 @@ It offers a richer bottom-line at the language level, targeted both at the devel ...@@ -7,6 +7,11 @@ It offers a richer bottom-line at the language level, targeted both at the devel
After reading this guide, you will know: After reading this guide, you will know:
* What Core Extensions are.
* How to load all extensions.
* How to cherry-pick just the extensions you want.
* What extensions ActiveSupport provides.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
How to Load Core Extensions How to Load Core Extensions
...@@ -1120,8 +1125,6 @@ C.subclasses # => [B, D] ...@@ -1120,8 +1125,6 @@ C.subclasses # => [B, D]
The order in which these classes are returned is unspecified. The order in which these classes are returned is unspecified.
WARNING: This method is redefined in some Rails core classes but should be all compatible in Rails 3.1.
NOTE: Defined in `active_support/core_ext/class/subclasses.rb`. NOTE: Defined in `active_support/core_ext/class/subclasses.rb`.
#### `descendants` #### `descendants`
...@@ -1157,7 +1160,7 @@ Inserting data into HTML templates needs extra care. For example, you can't just ...@@ -1157,7 +1160,7 @@ Inserting data into HTML templates needs extra care. For example, you can't just
#### Safe Strings #### Safe Strings
Active Support has the concept of <i>(html) safe</i> strings since Rails 3. A safe string is one that is marked as being insertable into HTML as is. It is trusted, no matter whether it has been escaped or not. Active Support has the concept of <i>(html) safe</i> strings. A safe string is one that is marked as being insertable into HTML as is. It is trusted, no matter whether it has been escaped or not.
Strings are considered to be <i>unsafe</i> by default: Strings are considered to be <i>unsafe</i> by default:
...@@ -1194,10 +1197,10 @@ Safe arguments are directly appended: ...@@ -1194,10 +1197,10 @@ Safe arguments are directly appended:
"".html_safe + "<".html_safe # => "<" "".html_safe + "<".html_safe # => "<"
``` ```
These methods should not be used in ordinary views. In Rails 3 unsafe values are automatically escaped: These methods should not be used in ordinary views. Unsafe values are automatically escaped:
```erb ```erb
<%= @review.title %> <%# fine in Rails 3, escaped if needed %> <%= @review.title %> <%# fine, escaped if needed %>
``` ```
To insert something verbatim use the `raw` helper rather than calling `html_safe`: To insert something verbatim use the `raw` helper rather than calling `html_safe`:
......
...@@ -5,6 +5,9 @@ This guide documents the Ruby on Rails API documentation guidelines. ...@@ -5,6 +5,9 @@ This guide documents the Ruby on Rails API documentation guidelines.
After reading this guide, you will know: After reading this guide, you will know:
* How to write effective prose for documentation purposes.
* Style guidelines for documenting different kinds of Ruby code.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
RDoc RDoc
......
The Asset Pipeline The Asset Pipeline
================== ==================
This guide covers the asset pipeline introduced in Rails 3.1. This guide covers the asset pipeline.
After reading this guide, you will know: After reading this guide, you will know:
* Understand what the asset pipeline is and what it does. * How to understand what the asset pipeline is and what it does.
* Properly organize your application assets. * How to properly organize your application assets.
* Understand the benefits of the asset pipeline. * How to understand the benefits of the asset pipeline.
* Add a pre-processor to the pipeline. * How to add a pre-processor to the pipeline.
* Package assets with a gem. * How to package assets with a gem.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
...@@ -18,11 +18,9 @@ What is the Asset Pipeline? ...@@ -18,11 +18,9 @@ What is the Asset Pipeline?
The asset pipeline provides a framework to concatenate and minify or compress JavaScript and CSS assets. It also adds the ability to write these assets in other languages such as CoffeeScript, Sass and ERB. The asset pipeline provides a framework to concatenate and minify or compress JavaScript and CSS assets. It also adds the ability to write these assets in other languages such as CoffeeScript, Sass and ERB.
Prior to Rails 3.1 these features were added through third-party Ruby libraries such as Jammit and Sprockets. Rails 3.1 is integrated with Sprockets through Action Pack which depends on the `sprockets` gem, by default.
Making the asset pipeline a core feature of Rails means that all developers can benefit from the power of having their assets pre-processed, compressed and minified by one central library, Sprockets. This is part of Rails' "fast by default" strategy as outlined by DHH in his keynote at RailsConf 2011. Making the asset pipeline a core feature of Rails means that all developers can benefit from the power of having their assets pre-processed, compressed and minified by one central library, Sprockets. This is part of Rails' "fast by default" strategy as outlined by DHH in his keynote at RailsConf 2011.
In Rails 3.1, the asset pipeline is enabled by default. It can be disabled in `config/application.rb` by putting this line inside the application class definition: The asset pipeline is enabled by default. It can be disabled in `config/application.rb` by putting this line inside the application class definition:
```ruby ```ruby
config.assets.enabled = false config.assets.enabled = false
...@@ -100,7 +98,24 @@ In production, Rails precompiles these files to `public/assets` by default. The ...@@ -100,7 +98,24 @@ In production, Rails precompiles these files to `public/assets` by default. The
When you generate a scaffold or a controller, Rails also generates a JavaScript file (or CoffeeScript file if the `coffee-rails` gem is in the `Gemfile`) and a Cascading Style Sheet file (or SCSS file if `sass-rails` is in the `Gemfile`) for that controller. When you generate a scaffold or a controller, Rails also generates a JavaScript file (or CoffeeScript file if the `coffee-rails` gem is in the `Gemfile`) and a Cascading Style Sheet file (or SCSS file if `sass-rails` is in the `Gemfile`) for that controller.
For example, if you generate a `ProjectsController`, Rails will also add a new file at `app/assets/javascripts/projects.js.coffee` and another at `app/assets/stylesheets/projects.css.scss`. You should put any JavaScript or CSS unique to a controller inside their respective asset files, as these files can then be loaded just for these controllers with lines such as `<%= javascript_include_tag params[:controller] %>` or `<%= stylesheet_link_tag params[:controller] %>`. For example, if you generate a `ProjectsController`, Rails will also add a new file at `app/assets/javascripts/projects.js.coffee` and another at `app/assets/stylesheets/projects.css.scss`. You should put any JavaScript or CSS unique to a controller inside their respective asset files, as these files can then be loaded just for these controllers with lines such as `<%= javascript_include_tag params[:controller] %>` or `<%= stylesheet_link_tag params[:controller] %>`. Note that you have to set `config.assets.precompile` in `config/environments/production.rb` if you want to precomepile them and use in production mode. You can append them one by one or do something like this:
# config/environments/production.rb
config.assets.precompile << Proc.new { |path|
if path =~ /\.(css|js)\z/
full_path = Rails.application.assets.resolve(path).to_path
app_assets_path = Rails.root.join('app', 'assets').to_path
if full_path.starts_with? app_assets_path
puts "including asset: " + full_path
true
else
puts "excluding asset: " + full_path
false
end
else
false
end
}
NOTE: You must have an [ExecJS](https://github.com/sstephenson/execjs#readme) supported runtime in order to use CoffeeScript. If you are using Mac OS X or Windows you have a JavaScript runtime installed in your operating system. Check [ExecJS](https://github.com/sstephenson/execjs#readme) documentation to know all supported JavaScript runtimes. NOTE: You must have an [ExecJS](https://github.com/sstephenson/execjs#readme) supported runtime in order to use CoffeeScript. If you are using Mac OS X or Windows you have a JavaScript runtime installed in your operating system. Check [ExecJS](https://github.com/sstephenson/execjs#readme) documentation to know all supported JavaScript runtimes.
...@@ -114,7 +129,7 @@ Pipeline assets can be placed inside an application in one of three locations: ` ...@@ -114,7 +129,7 @@ Pipeline assets can be placed inside an application in one of three locations: `
* `vendor/assets` is for assets that are owned by outside entities, such as code for JavaScript plugins and CSS frameworks. * `vendor/assets` is for assets that are owned by outside entities, such as code for JavaScript plugins and CSS frameworks.
#### Search paths #### Search Paths
When a file is referenced from a manifest or a helper, Sprockets searches the three default asset locations for it. When a file is referenced from a manifest or a helper, Sprockets searches the three default asset locations for it.
...@@ -162,7 +177,7 @@ Paths are traversed in the order that they occur in the search path. By default, ...@@ -162,7 +177,7 @@ Paths are traversed in the order that they occur in the search path. By default,
It is important to note that files you want to reference outside a manifest must be added to the precompile array or they will not be available in the production environment. It is important to note that files you want to reference outside a manifest must be added to the precompile array or they will not be available in the production environment.
#### Using index files #### Using Index Files
Sprockets uses files named `index` (with the relevant extensions) for a special purpose. Sprockets uses files named `index` (with the relevant extensions) for a special purpose.
...@@ -270,8 +285,6 @@ For example, a new Rails application includes a default `app/assets/javascripts/ ...@@ -270,8 +285,6 @@ For example, a new Rails application includes a default `app/assets/javascripts/
In JavaScript files, the directives begin with `//=`. In this case, the file is using the `require` and the `require_tree` directives. The `require` directive is used to tell Sprockets the files that you wish to require. Here, you are requiring the files `jquery.js` and `jquery_ujs.js` that are available somewhere in the search path for Sprockets. You need not supply the extensions explicitly. Sprockets assumes you are requiring a `.js` file when done from within a `.js` file. In JavaScript files, the directives begin with `//=`. In this case, the file is using the `require` and the `require_tree` directives. The `require` directive is used to tell Sprockets the files that you wish to require. Here, you are requiring the files `jquery.js` and `jquery_ujs.js` that are available somewhere in the search path for Sprockets. You need not supply the extensions explicitly. Sprockets assumes you are requiring a `.js` file when done from within a `.js` file.
NOTE. In Rails 3.1 the `jquery-rails` gem provides the `jquery.js` and `jquery_ujs.js` files via the asset pipeline. You won't see them in the application tree.
The `require_tree` directive tells Sprockets to recursively include _all_ JavaScript files in the specified directory into the output. These paths must be specified relative to the manifest file. You can also use the `require_directory` directive which includes all JavaScript files only in the directory specified, without recursion. The `require_tree` directive tells Sprockets to recursively include _all_ JavaScript files in the specified directory into the output. These paths must be specified relative to the manifest file. You can also use the `require_directory` directive which includes all JavaScript files only in the directory specified, without recursion.
Directives are processed top to bottom, but the order in which files are included by `require_tree` is unspecified. You should not rely on any particular order among those. If you need to ensure some particular JavaScript ends up above some other in the concatenated file, require the prerequisite file first in the manifest. Note that the family of `require` directives prevents files from being included twice in the output. Directives are processed top to bottom, but the order in which files are included by `require_tree` is unspecified. You should not rely on any particular order among those. If you need to ensure some particular JavaScript ends up above some other in the concatenated file, require the prerequisite file first in the manifest. Note that the family of `require` directives prevents files from being included twice in the output.
...@@ -337,7 +350,7 @@ would generate this HTML: ...@@ -337,7 +350,7 @@ would generate this HTML:
The `body` param is required by Sprockets. The `body` param is required by Sprockets.
### Turning Debugging off ### Turning Debugging Off
You can turn off debug mode by updating `config/environments/development.rb` to include: You can turn off debug mode by updating `config/environments/development.rb` to include:
...@@ -462,7 +475,7 @@ The default location for the manifest is the root of the location specified in ` ...@@ -462,7 +475,7 @@ The default location for the manifest is the root of the location specified in `
NOTE: If there are missing precompiled files in production you will get an `Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError` exception indicating the name of the missing file(s). NOTE: If there are missing precompiled files in production you will get an `Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError` exception indicating the name of the missing file(s).
#### Far-future Expires header #### Far-future Expires Header
Precompiled assets exist on the filesystem and are served directly by your web server. They do not have far-future headers by default, so to get the benefit of fingerprinting you'll have to update your server configuration to add them. Precompiled assets exist on the filesystem and are served directly by your web server. They do not have far-future headers by default, so to get the benefit of fingerprinting you'll have to update your server configuration to add them.
...@@ -492,7 +505,7 @@ location ~ ^/assets/ { ...@@ -492,7 +505,7 @@ location ~ ^/assets/ {
} }
``` ```
#### GZip compression #### GZip Compression
When files are precompiled, Sprockets also creates a [gzipped](http://en.wikipedia.org/wiki/Gzip) (.gz) version of your assets. Web servers are typically configured to use a moderate compression ratio as a compromise, but since precompilation happens once, Sprockets uses the maximum compression ratio, thus reducing the size of the data transfer to the minimum. On the other hand, web servers can be configured to serve compressed content directly from disk, rather than deflating non-compressed files themselves. When files are precompiled, Sprockets also creates a [gzipped](http://en.wikipedia.org/wiki/Gzip) (.gz) version of your assets. Web servers are typically configured to use a moderate compression ratio as a compromise, but since precompilation happens once, Sprockets uses the maximum compression ratio, thus reducing the size of the data transfer to the minimum. On the other hand, web servers can be configured to serve compressed content directly from disk, rather than deflating non-compressed files themselves.
...@@ -648,7 +661,7 @@ This can be changed to something else: ...@@ -648,7 +661,7 @@ This can be changed to something else:
config.assets.prefix = "/some_other_path" config.assets.prefix = "/some_other_path"
``` ```
This is a handy option if you are updating an existing project (pre Rails 3.1) that already uses this path or you wish to use this path for a new resource. This is a handy option if you are updating an older project that didn't use the asset pipeline and that already uses this path or you wish to use this path for a new resource.
### X-Sendfile Headers ### X-Sendfile Headers
......
...@@ -5,9 +5,9 @@ This guide covers the association features of Active Record. ...@@ -5,9 +5,9 @@ This guide covers the association features of Active Record.
After reading this guide, you will know: After reading this guide, you will know:
* Declare associations between Active Record models. * How to declare associations between Active Record models.
* Understand the various types of Active Record associations. * How to understand the various types of Active Record associations.
* Use the methods added to your models by creating associations. * How to use the methods added to your models by creating associations.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
...@@ -452,7 +452,7 @@ class CreateAssemblyPartJoinTable < ActiveRecord::Migration ...@@ -452,7 +452,7 @@ class CreateAssemblyPartJoinTable < ActiveRecord::Migration
end end
``` ```
We pass `id: false` to `create_table` because that table does not represent a model. That's required for the association to work properly. If you observe any strange behavior in a `has_and_belongs_to_many` association like mangled models IDs, or exceptions about conflicting IDs chances are you forgot that bit. We pass `id: false` to `create_table` because that table does not represent a model. That's required for the association to work properly. If you observe any strange behavior in a `has_and_belongs_to_many` association like mangled models IDs, or exceptions about conflicting IDs, chances are you forgot that bit.
### Controlling Association Scope ### Controlling Association Scope
......
...@@ -5,11 +5,11 @@ Rails comes with every command line tool you'll need to ...@@ -5,11 +5,11 @@ Rails comes with every command line tool you'll need to
After reading this guide, you will know: After reading this guide, you will know:
* Create a Rails application. * How to create a Rails application.
* Generate models, controllers, database migrations, and unit tests. * How to generate models, controllers, database migrations, and unit tests.
* Start a development server. * How to start a development server.
* Experiment with objects through an interactive shell. * How to experiment with objects through an interactive shell.
* Profile and benchmark your new creation. * How to profile and benchmark your new creation.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
......
...@@ -5,8 +5,8 @@ This guide covers the configuration and initialization features available to Rai ...@@ -5,8 +5,8 @@ This guide covers the configuration and initialization features available to Rai
After reading this guide, you will know: After reading this guide, you will know:
* Adjust the behavior of your Rails applications. * How to adjust the behavior of your Rails applications.
* Add additional code to be run at application start time. * How to add additional code to be run at application start time.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
...@@ -135,8 +135,6 @@ These configuration methods are to be called on a `Rails::Railtie` object, such ...@@ -135,8 +135,6 @@ These configuration methods are to be called on a `Rails::Railtie` object, such
### Configuring Assets ### Configuring Assets
Rails 3.1 and up, by default, is set up to use the `sprockets` gem to manage assets within an application. This gem concatenates and compresses assets in order to make serving them much less painful.
* `config.assets.enabled` a flag that controls whether the asset pipeline is enabled. It is explicitly initialized in `config/application.rb`. * `config.assets.enabled` a flag that controls whether the asset pipeline is enabled. It is explicitly initialized in `config/application.rb`.
* `config.assets.compress` a flag that enables the compression of compiled assets. It is explicitly set to true in `config/production.rb`. * `config.assets.compress` a flag that enables the compression of compiled assets. It is explicitly set to true in `config/production.rb`.
...@@ -165,7 +163,7 @@ Rails 3.1 and up, by default, is set up to use the `sprockets` gem to manage ass ...@@ -165,7 +163,7 @@ Rails 3.1 and up, by default, is set up to use the `sprockets` gem to manage ass
### Configuring Generators ### Configuring Generators
Rails 3 allows you to alter what generators are used with the `config.generators` method. This method takes a block: Rails allows you to alter what generators are used with the `config.generators` method. This method takes a block:
```ruby ```ruby
config.generators do |g| config.generators do |g|
......
...@@ -5,11 +5,11 @@ This guide covers ways in which _you_ can become a part of the ongoing developme ...@@ -5,11 +5,11 @@ This guide covers ways in which _you_ can become a part of the ongoing developme
After reading this guide, you will know: After reading this guide, you will know:
* Using GitHub to report issues. * How to use GitHub to report issues.
* Cloning master and running the test suite. * How to clone master and run the test suite.
* Helping to resolve existing issues. * How to help resolve existing issues.
* Contributing to the Ruby on Rails documentation. * How to contribute to the Ruby on Rails documentation.
* Contributing to the Ruby on Rails code. * How to contribute to the Ruby on Rails code.
Ruby on Rails is not "someone else's framework." Over the years, hundreds of people have contributed to Ruby on Rails ranging from a single character to massive architectural changes or significant documentation — all with the goal of making Ruby on Rails better for everyone. Even if you don't feel up to writing code or documentation yet, there are a variety of other ways that you can contribute, from reporting issues to testing patches. Ruby on Rails is not "someone else's framework." Over the years, hundreds of people have contributed to Ruby on Rails ranging from a single character to massive architectural changes or significant documentation — all with the goal of making Ruby on Rails better for everyone. Even if you don't feel up to writing code or documentation yet, there are a variety of other ways that you can contribute, from reporting issues to testing patches.
...@@ -91,7 +91,7 @@ You can invoke `test_jdbcmysql`, `test_jdbcsqlite3` or `test_jdbcpostgresql` als ...@@ -91,7 +91,7 @@ You can invoke `test_jdbcmysql`, `test_jdbcsqlite3` or `test_jdbcpostgresql` als
The test suite runs with warnings enabled. Ideally, Ruby on Rails should issue no warnings, but there may be a few, as well as some from third-party libraries. Please ignore (or fix!) them, if any, and submit patches that do not issue new warnings. The test suite runs with warnings enabled. Ideally, Ruby on Rails should issue no warnings, but there may be a few, as well as some from third-party libraries. Please ignore (or fix!) them, if any, and submit patches that do not issue new warnings.
As of this writing (December, 2010) they are specially noisy with Ruby 1.9. If you are sure about what you are doing and would like to have a more clear output, there's a way to override the flag: As of this writing (December, 2010) they are especially noisy with Ruby 1.9. If you are sure about what you are doing and would like to have a more clear output, there's a way to override the flag:
```bash ```bash
$ RUBYOPT=-W0 bundle exec rake test $ RUBYOPT=-W0 bundle exec rake test
...@@ -205,7 +205,7 @@ TIP: Changes that are cosmetic in nature and do not add anything substantial to ...@@ -205,7 +205,7 @@ TIP: Changes that are cosmetic in nature and do not add anything substantial to
### Follow the Coding Conventions ### Follow the Coding Conventions
Rails follows a simple set of coding style conventions. Rails follows a simple set of coding style conventions:
* Two spaces, no tabs (for indentation). * Two spaces, no tabs (for indentation).
* No trailing whitespace. Blank lines should not have any spaces. * No trailing whitespace. Blank lines should not have any spaces.
......
...@@ -5,10 +5,10 @@ This guide introduces techniques for debugging Ruby on Rails applications. ...@@ -5,10 +5,10 @@ This guide introduces techniques for debugging Ruby on Rails applications.
After reading this guide, you will know: After reading this guide, you will know:
* Understand the purpose of debugging. * The purpose of debugging.
* Track down problems and issues in your application that your tests aren't identifying. * How to track down problems and issues in your application that your tests aren't identifying.
* Learn the different ways of debugging. * The different ways of debugging.
* Analyze the stack trace. * How to analyze the stack trace.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
......
...@@ -35,7 +35,7 @@ Finally, engines would not have been possible without the work of James Adam, Pi ...@@ -35,7 +35,7 @@ Finally, engines would not have been possible without the work of James Adam, Pi
Generating an engine Generating an engine
-------------------- --------------------
To generate an engine with Rails 3.2, you will need to run the plugin generator and pass it options as appropriate to the need. For the "blorgh" example, you will need to create a "mountable" engine, running this command in a terminal: To generate an engine, you will need to run the plugin generator and pass it options as appropriate to the need. For the "blorgh" example, you will need to create a "mountable" engine, running this command in a terminal:
```bash ```bash
$ rails plugin new blorgh --mountable $ rails plugin new blorgh --mountable
......
...@@ -5,13 +5,13 @@ Forms in web applications are an essential interface for user input. However, fo ...@@ -5,13 +5,13 @@ Forms in web applications are an essential interface for user input. However, fo
After reading this guide, you will know: After reading this guide, you will know:
* Create search forms and similar kind of generic forms not representing any specific model in your application. * How to create search forms and similar kind of generic forms not representing any specific model in your application.
* Make model-centric forms for creation and editing of specific database records. * How to make model-centric forms for creation and editing of specific database records.
* Generate select boxes from multiple types of data. * How to generate select boxes from multiple types of data.
* Understand the date and time helpers Rails provides. * The date and time helpers Rails provides.
* Learn what makes a file upload form different. * What makes a file upload form different.
* Learn some cases of building forms to external resources. * Some cases of building forms to external resources.
* Find out how to build complex forms. * How to build complex forms.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
...@@ -594,8 +594,6 @@ The following two forms both upload a file. ...@@ -594,8 +594,6 @@ The following two forms both upload a file.
<% end %> <% end %>
``` ```
NOTE: Since Rails 3.1, forms rendered using `form_for` have their encoding set to `multipart/form-data` automatically once a `file_field` is used inside the block. Previous versions required you to set this explicitly.
Rails provides the usual pair of helpers: the barebones `file_field_tag` and the model oriented `file_field`. The only difference with other helpers is that you cannot set a default value for file inputs as this would have no meaning. As you would expect in the first case the uploaded file is in `params[:picture]` and in the second case in `params[:person][:picture]`. Rails provides the usual pair of helpers: the barebones `file_field_tag` and the model oriented `file_field`. The only difference with other helpers is that you cannot set a default value for file inputs as this would have no meaning. As you would expect in the first case the uploaded file is in `params[:picture]` and in the second case in `params[:person][:picture]`.
### What Gets Uploaded ### What Gets Uploaded
......
...@@ -5,18 +5,16 @@ Rails generators are an essential tool if you plan to improve your workflow. Wit ...@@ -5,18 +5,16 @@ Rails generators are an essential tool if you plan to improve your workflow. Wit
After reading this guide, you will know: After reading this guide, you will know:
* Learn how to see which generators are available in your application. * How to see which generators are available in your application.
* Create a generator using templates. * How to create a generator using templates.
* Learn how Rails searches for generators before invoking them. * How Rails searches for generators before invoking them.
* Customize your scaffold by creating new generators. * How to customize your scaffold by creating new generators.
* Customize your scaffold by changing generator templates. * How to customize your scaffold by changing generator templates.
* Learn how to use fallbacks to avoid overwriting a huge set of generators. * How to use fallbacks to avoid overwriting a huge set of generators.
* Learn how to create an application template. * How to create an application template.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
NOTE: This guide is about generators in Rails 3, previous versions are not covered.
First Contact First Contact
------------- -------------
......
...@@ -5,7 +5,7 @@ This guide covers getting up and running with Ruby on Rails. ...@@ -5,7 +5,7 @@ This guide covers getting up and running with Ruby on Rails.
After reading this guide, you will know: After reading this guide, you will know:
* Installing Rails, creating a new Rails application, and connecting your * How to install Rails, create a new Rails application, and connect your
application to a database. application to a database.
* The general layout of a Rails application. * The general layout of a Rails application.
* The basic principles of MVC (Model, View, Controller) and RESTful design. * The basic principles of MVC (Model, View, Controller) and RESTful design.
...@@ -77,7 +77,7 @@ TIP: The examples below use # and $ to denote superuser and regular user termina ...@@ -77,7 +77,7 @@ TIP: The examples below use # and $ to denote superuser and regular user termina
Open up a command line prompt. On Mac OS X open Terminal.app, on Windows choose Open up a command line prompt. On Mac OS X open Terminal.app, on Windows choose
"Run" from your Start menu and type 'cmd.exe'. Any commands prefaced with a "Run" from your Start menu and type 'cmd.exe'. Any commands prefaced with a
dollar sign `$` should be run in the command line. Verify sure you have a dollar sign `$` should be run in the command line. Verify that you have a
current version of Ruby installed: current version of Ruby installed:
```bash ```bash
...@@ -101,11 +101,11 @@ To verify that you have everything installed correctly, you should be able to ru ...@@ -101,11 +101,11 @@ To verify that you have everything installed correctly, you should be able to ru
$ rails --version $ rails --version
``` ```
If it says something like "Rails 3.2.9" you are ready to continue. If it says something like "Rails 3.2.9", you are ready to continue.
### Creating the Blog Application ### Creating the Blog Application
Rails comes with a number of generators that are designed to make your development life easier. One of these is the new application generator, which will provide you with the foundation of a Rails application so that you don't have to write it yourself. Rails comes with a number of scripts called generators that are designed to make your development life easier by creating everything that's necessary to start working on a particular task. One of these is the new application generator, which will provide you with the foundation of a fresh Rails application so that you don't have to write it yourself.
To use this generator, open a terminal, navigate to a directory where you have rights to create files, and type: To use this generator, open a terminal, navigate to a directory where you have rights to create files, and type:
......
...@@ -6,7 +6,7 @@ as of Rails 4. It is an extremely in-depth guide and recommended for advanced Ra ...@@ -6,7 +6,7 @@ as of Rails 4. It is an extremely in-depth guide and recommended for advanced Ra
After reading this guide, you will know: After reading this guide, you will know:
* Using `rails server`. * How to use `rails server`.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
......
...@@ -5,10 +5,10 @@ This guide covers the basic layout features of Action Controller and Action View ...@@ -5,10 +5,10 @@ This guide covers the basic layout features of Action Controller and Action View
After reading this guide, you will know: After reading this guide, you will know:
* Use the various rendering methods built into Rails. * How to use the various rendering methods built into Rails.
* Create layouts with multiple content sections. * How to create layouts with multiple content sections.
* Use partials to DRY up your views. * How to use partials to DRY up your views.
* Use nested layouts (sub-templates). * How to use nested layouts (sub-templates).
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
...@@ -160,21 +160,6 @@ def update ...@@ -160,21 +160,6 @@ def update
end end
``` ```
To be explicit, you can use `render` with the `:action` option (though this is no longer necessary in Rails 3.0):
```ruby
def update
@book = Book.find(params[:id])
if @book.update_attributes(params[:book])
redirect_to(@book)
else
render action: "edit"
end
end
```
WARNING: Using `render` with `:action` is a frequent source of confusion for Rails newcomers. The specified action is used to determine which view to render, but Rails does _not_ run any of the code for that action in the controller. Any instance variables that you require in the view must be set up in the current action before calling `render`.
#### Rendering an Action's Template from Another Controller #### Rendering an Action's Template from Another Controller
What if you want to render a template from an entirely different controller from the one that contains the action code? You can also do that with `render`, which accepts the full path (relative to `app/views`) of the template to render. For example, if you're running code in an `AdminProductsController` that lives in `app/controllers/admin`, you can render the results of an action to a template in `app/views/products` this way: What if you want to render a template from an entirely different controller from the one that contains the action code? You can also do that with `render`, which accepts the full path (relative to `app/views`) of the template to render. For example, if you're running code in an `AdminProductsController` that lives in `app/controllers/admin`, you can render the results of an action to a template in `app/views/products` this way:
...@@ -674,7 +659,7 @@ There are three tag options available for the `auto_discovery_link_tag`: ...@@ -674,7 +659,7 @@ There are three tag options available for the `auto_discovery_link_tag`:
The `javascript_include_tag` helper returns an HTML `script` tag for each source provided. The `javascript_include_tag` helper returns an HTML `script` tag for each source provided.
If you are using Rails with the [Asset Pipeline](asset_pipeline.html) enabled, this helper will generate a link to `/assets/javascripts/` rather than `public/javascripts` which was used in earlier versions of Rails. This link is then served by the Sprockets gem, which was introduced in Rails 3.1. If you are using Rails with the [Asset Pipeline](asset_pipeline.html) enabled, this helper will generate a link to `/assets/javascripts/` rather than `public/javascripts` which was used in earlier versions of Rails. This link is then served by the asset pipeline.
A JavaScript file within a Rails application or Rails engine goes in one of three locations: `app/assets`, `lib/assets` or `vendor/assets`. These locations are explained in detail in the [Asset Organization section in the Asset Pipeline Guide](asset_pipeline.html#asset-organization) A JavaScript file within a Rails application or Rails engine goes in one of three locations: `app/assets`, `lib/assets` or `vendor/assets`. These locations are explained in detail in the [Asset Organization section in the Asset Pipeline Guide](asset_pipeline.html#asset-organization)
...@@ -843,7 +828,7 @@ You can even use dynamic paths such as `cache/#{current_site}/main/display`. ...@@ -843,7 +828,7 @@ You can even use dynamic paths such as `cache/#{current_site}/main/display`.
The `image_tag` helper builds an HTML `<img />` tag to the specified file. By default, files are loaded from `public/images`. The `image_tag` helper builds an HTML `<img />` tag to the specified file. By default, files are loaded from `public/images`.
WARNING: Note that you must specify the extension of the image. Previous versions of Rails would allow you to just use the image name and would append `.png` if no extension was given but Rails 3.0 does not. WARNING: Note that you must specify the extension of the image.
```erb ```erb
<%= image_tag "header.png" %> <%= image_tag "header.png" %>
...@@ -1091,8 +1076,6 @@ Every partial also has a local variable with the same name as the partial (minus ...@@ -1091,8 +1076,6 @@ Every partial also has a local variable with the same name as the partial (minus
Within the `customer` partial, the `customer` variable will refer to `@new_customer` from the parent view. Within the `customer` partial, the `customer` variable will refer to `@new_customer` from the parent view.
WARNING: In previous versions of Rails, the default local variable would look for an instance variable with the same name as the partial in the parent. This behavior was deprecated in 2.3 and has been removed in Rails 3.0.
If you have an instance of a model to render into a partial, you can use a shorthand syntax: If you have an instance of a model to render into a partial, you can use a shorthand syntax:
```erb ```erb
...@@ -1120,7 +1103,7 @@ Partials are very useful in rendering collections. When you pass a collection to ...@@ -1120,7 +1103,7 @@ Partials are very useful in rendering collections. When you pass a collection to
When a partial is called with a pluralized collection, then the individual instances of the partial have access to the member of the collection being rendered via a variable named after the partial. In this case, the partial is `_product`, and within the `_product` partial, you can refer to `product` to get the instance that is being rendered. When a partial is called with a pluralized collection, then the individual instances of the partial have access to the member of the collection being rendered via a variable named after the partial. In this case, the partial is `_product`, and within the `_product` partial, you can refer to `product` to get the instance that is being rendered.
In Rails 3.0, there is also a shorthand for this. Assuming `@products` is a collection of `product` instances, you can simply write this in the `index.html.erb` to produce the same result: There is also a shorthand for this. Assuming `@products` is a collection of `product` instances, you can simply write this in the `index.html.erb` to produce the same result:
```html+erb ```html+erb
<h1>Products</h1> <h1>Products</h1>
......
...@@ -334,7 +334,7 @@ end ...@@ -334,7 +334,7 @@ end
removes the `description` and `name` columns, creates a `part_number` string removes the `description` and `name` columns, creates a `part_number` string
column and adds an index on it. Finally it renames the `upccode` column. column and adds an index on it. Finally it renames the `upccode` column.
### When Helpers Aren't Enough ### When Helpers aren't Enough
If the helpers provided by Active Record aren't enough you can use the `execute` If the helpers provided by Active Record aren't enough you can use the `execute`
method to execute arbitrary SQL: method to execute arbitrary SQL:
...@@ -585,8 +585,8 @@ Occasionally you will make a mistake when writing a migration. If you have ...@@ -585,8 +585,8 @@ Occasionally you will make a mistake when writing a migration. If you have
already run the migration then you cannot just edit the migration and run the already run the migration then you cannot just edit the migration and run the
migration again: Rails thinks it has already run the migration and so will do migration again: Rails thinks it has already run the migration and so will do
nothing when you run `rake db:migrate`. You must rollback the migration (for nothing when you run `rake db:migrate`. You must rollback the migration (for
example with `rake db:rollback`), edit your migration and then run `rake example with `rake db:rollback`), edit your migration and then run
db:migrate` to run the corrected version. `rake db:migrate` to run the corrected version.
In general, editing existing migrations is not a good idea. You will be In general, editing existing migrations is not a good idea. You will be
creating extra work for yourself and your co-workers and cause major headaches creating extra work for yourself and your co-workers and cause major headaches
......
...@@ -6,12 +6,12 @@ application. ...@@ -6,12 +6,12 @@ application.
After reading this guide, you will know: After reading this guide, you will know:
* Understand the various types of benchmarking and profiling metrics. * The various types of benchmarking and profiling metrics.
* Generate performance and benchmarking tests. * How to generate performance and benchmarking tests.
* Install and use a GC-patched Ruby binary to measure memory usage and object * How to install and use a GC-patched Ruby binary to measure memory usage and object
allocation. allocation.
* Understand the benchmarking information provided by Rails inside the log files. * The benchmarking information provided by Rails inside the log files.
* Learn about various tools facilitating benchmarking and profiling. * Various tools facilitating benchmarking and profiling.
Performance testing is an integral part of the development cycle. It is very Performance testing is an integral part of the development cycle. It is very
important that you don't make your end users wait for too long before the page important that you don't make your end users wait for too long before the page
......
...@@ -9,8 +9,8 @@ A Rails plugin is either an extension or a modification of the core framework. P ...@@ -9,8 +9,8 @@ A Rails plugin is either an extension or a modification of the core framework. P
After reading this guide, you will know: After reading this guide, you will know:
* Creating a plugin from scratch. * How to create a plugin from scratch.
* Writing and running tests for the plugin. * How to write and run tests for the plugin.
This guide describes how to build a test-driven plugin that will: This guide describes how to build a test-driven plugin that will:
...@@ -27,16 +27,13 @@ goodness. ...@@ -27,16 +27,13 @@ goodness.
Setup Setup
----- -----
_"vendored plugins"_ were available in previous versions of Rails, but they are deprecated in
Rails 3.2, and will not be available in the future.
Currently, Rails plugins are built as gems, _gemified plugins_. They can be shared across Currently, Rails plugins are built as gems, _gemified plugins_. They can be shared across
different rails applications using RubyGems and Bundler if desired. different rails applications using RubyGems and Bundler if desired.
### Generate a gemified plugin. ### Generate a gemified plugin.
Rails 3.1 ships with a `rails plugin new` command which creates a Rails ships with a `rails plugin new` command which creates a
skeleton for developing any kind of Rails extension with the ability skeleton for developing any kind of Rails extension with the ability
to run integration tests using a dummy Rails application. See usage to run integration tests using a dummy Rails application. See usage
and options by asking for help: and options by asking for help:
......
...@@ -5,8 +5,8 @@ Application templates are simple Ruby files containing DSL for adding gems/initi ...@@ -5,8 +5,8 @@ Application templates are simple Ruby files containing DSL for adding gems/initi
After reading this guide, you will know: After reading this guide, you will know:
* Use templates to generate/customize Rails applications. * How to use templates to generate/customize Rails applications.
* Write your own reusable application templates using the Rails template API. * How to write your own reusable application templates using the Rails template API.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
......
...@@ -5,10 +5,10 @@ This guide covers Rails integration with Rack and interfacing with other Rack co ...@@ -5,10 +5,10 @@ This guide covers Rails integration with Rack and interfacing with other Rack co
After reading this guide, you will know: After reading this guide, you will know:
* Create Rails Metal applications. * How to create Rails Metal applications.
* Use Rack Middlewares in your Rails applications. * How to use Rack Middlewares in your Rails applications.
* Understand Action Pack's internal Middleware stack. * Action Pack's internal Middleware stack.
* Define a custom Middleware stack. * How to define a custom Middleware stack.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
......
...@@ -5,11 +5,11 @@ This guide covers the user-facing features of Rails routing. ...@@ -5,11 +5,11 @@ This guide covers the user-facing features of Rails routing.
After reading this guide, you will know: After reading this guide, you will know:
* Understand the code in `routes.rb`. * How to interpret the code in `routes.rb`.
* Construct your own routes, using either the preferred resourceful style or the `match` method. * How to construct your own routes, using either the preferred resourceful style or the `match` method.
* Identify what parameters to expect an action to receive. * What parameters to expect an action to receive.
* Automatically create paths and URLs using route helpers. * How to automatically create paths and URLs using route helpers.
* Use advanced techniques such as constraints and Rack endpoints. * Advanced techniques such as constraints and Rack endpoints.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
...@@ -733,12 +733,6 @@ get '*a/foo/*b', to: 'test#index' ...@@ -733,12 +733,6 @@ get '*a/foo/*b', to: 'test#index'
would match `zoo/woo/foo/bar/baz` with `params[:a]` equals `'zoo/woo'`, and `params[:b]` equals `'bar/baz'`. would match `zoo/woo/foo/bar/baz` with `params[:a]` equals `'zoo/woo'`, and `params[:b]` equals `'bar/baz'`.
NOTE: Starting from Rails 3.1, wildcard segments will always match the optional format segment by default. For example if you have this route:
```ruby
get '*pages', to: 'pages#show'
```
NOTE: By requesting `'/foo/bar.json'`, your `params[:pages]` will be equals to `'foo/bar'` with the request format of JSON. If you want the old 3.0.x behavior back, you could supply `format: false` like this: NOTE: By requesting `'/foo/bar.json'`, your `params[:pages]` will be equals to `'foo/bar'` with the request format of JSON. If you want the old 3.0.x behavior back, you could supply `format: false` like this:
```ruby ```ruby
......
...@@ -5,6 +5,9 @@ This guide documents guidelines for writing Ruby on Rails Guides. This guide fol ...@@ -5,6 +5,9 @@ This guide documents guidelines for writing Ruby on Rails Guides. This guide fol
After reading this guide, you will know: After reading this guide, you will know:
* About the conventions to be used in Rails documentation.
* How to generate guides locally.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
Markdown Markdown
......
...@@ -6,9 +6,9 @@ application. ...@@ -6,9 +6,9 @@ application.
After reading this guide, you will know: After reading this guide, you will know:
* Understand Rails testing terminology. * Rails testing terminology.
* Write unit, functional, and integration tests for your application. * How to write unit, functional, and integration tests for your application.
* Identify other popular testing approaches and plugins. * Other popular testing approaches and plugins.
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
......
...@@ -7,10 +7,10 @@ ease! ...@@ -7,10 +7,10 @@ ease!
After reading this guide, you will know: After reading this guide, you will know:
* Quick introduction to Ajax. * The basics of Ajax.
* Unobtrusive JavaScript. * Unobtrusive JavaScript.
* How Rails' built-in helpers assist you. * How Rails' built-in helpers assist you.
* Handling Ajax on the server side. * How to handle Ajax on the server side.
* The Turbolinks gem. * The Turbolinks gem.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册