Skip to content

Commit

Permalink
Renamed Options list to Attributes list whenever they weren't option …
Browse files Browse the repository at this point in the history
…hashes in AR::Base
  • Loading branch information
sunny committed May 7, 2008
1 parent 2fa628e commit 5bd1842
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions activerecord/lib/active_record/base.rb
Expand Up @@ -631,7 +631,7 @@ def create(attributes = nil, &block)
# Updates an object (or multiple objects) and saves it to the database, if validations pass.
# The resulting object is returned whether the object was saved successfully to the database or not.
#
# ==== Options
# ==== Attributes
#
# * +id+ This should be the id or an array of ids to be updated
# * +attributes+ This should be a Hash of attributes to be set on the object, or an array of Hashes.
Expand Down Expand Up @@ -661,7 +661,7 @@ def update(id, attributes)
#
# Objects are _not_ instantiated with this method.
#
# ==== Options
# ==== Attributes
#
# * +id+ Can be either an Integer or an Array of Integers
#
Expand All @@ -684,7 +684,7 @@ def delete(id)
# This essentially finds the object (or multiple objects) with the given id, creates a new object
# from the attributes, and then calls destroy on it.
#
# ==== Options
# ==== Attributes
#
# * +id+ Can be either an Integer or an Array of Integers
#
Expand All @@ -707,7 +707,7 @@ def destroy(id)
# Updates all records with details given if they match a set of conditions supplied, limits and order can
# also be supplied.
#
# ==== Options
# ==== Attributes
#
# * +updates+ A String of column and value pairs that will be set on any records that match conditions
# * +conditions+ An SQL fragment like "administrator = 1" or [ "user_name = ?", username ].
Expand Down Expand Up @@ -739,7 +739,7 @@ def update_all(updates, conditions = nil, options = {})
# many records. If you want to simply delete records without worrying about dependent associations or
# callbacks, use the much faster +delete_all+ method instead.
#
# ==== Options
# ==== Attributes
#
# * +conditions+ Conditions are specified the same way as with +find+ method.
#
Expand All @@ -757,7 +757,7 @@ def destroy_all(conditions = nil)
# calling the destroy method and invoking callbacks. This is a single SQL query, much more efficient
# than destroy_all.
#
# ==== Options
# ==== Attributes
#
# * +conditions+ Conditions are specified the same way as with +find+ method.
#
Expand All @@ -777,7 +777,7 @@ def delete_all(conditions = nil)
# The use of this method should be restricted to complicated SQL queries that can't be executed
# using the ActiveRecord::Calculations class methods. Look into those before using this.
#
# ==== Options
# ==== Attributes
#
# * +sql+ An SQL statement which should return a count query from the database, see the example below
#
Expand All @@ -795,7 +795,7 @@ def count_by_sql(sql)
# with the given ID, altering the given hash of counters by the amount
# given by the corresponding value:
#
# ==== Options
# ==== Attributes
#
# * +id+ The id of the object you wish to update a counter on
# * +counters+ An Array of Hashes containing the names of the fields
Expand Down Expand Up @@ -826,7 +826,7 @@ def update_counters(id, counters)
# For example, a DiscussionBoard may cache post_count and comment_count otherwise every time the board is
# shown it would have to run an SQL query to find how many posts and comments there are.
#
# ==== Options
# ==== Attributes
#
# * +counter_name+ The name of the field that should be incremented
# * +id+ The id of the object that should be incremented
Expand All @@ -843,7 +843,7 @@ def increment_counter(counter_name, id)
#
# This works the same as increment_counter but reduces the column value by 1 instead of increasing it.
#
# ==== Options
# ==== Attributes
#
# * +counter_name+ The name of the field that should be decremented
# * +id+ The id of the object that should be decremented
Expand Down Expand Up @@ -891,7 +891,7 @@ def protected_attributes # :nodoc:
# overwritten by URL/form hackers. If you'd rather start from an all-open default and restrict
# attributes as needed, have a look at attr_protected.
#
# ==== Options
# ==== Attributes
#
# * <tt>*attributes</tt> A comma separated list of symbols that represent columns _not_ to be protected
#
Expand Down Expand Up @@ -932,7 +932,7 @@ def readonly_attributes
# The serialization is done through YAML. If +class_name+ is specified, the serialized object must be of that
# class on retrieval or +SerializationTypeMismatch+ will be raised.
#
# ==== Options
# ==== Attributes
#
# * +attr_name+ The field name that should be serialized
# * +class_name+ Optional, class name that the object type should be equal to
Expand Down

0 comments on commit 5bd1842

Please sign in to comment.