aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/attribute_methods.rb
Commit message (Expand)AuthorAgeFilesLines
...
| * add description to ActiveModel::MissingAttributeError [ci skip]Francesco Rodriguez2012-06-211-1/+2
| * add example to ActiveModel::AttributeMethods#undefine_attribute_methods [ci s...Francesco Rodriguez2012-06-211-0/+26
| * add docs to AM::AttributeMethods#define_attribute_method [ci skip]Francesco Rodriguez2012-06-211-0/+25
| * fix ActiveModel::AttributeMethods#alias_attribute documentation [ci skip]Francesco Rodriguez2012-06-211-7/+20
| * update ActiveModel::AttributeMethods documentation [ci skip]Francesco Rodriguez2012-06-211-27/+20
| * add example to ActiveModel::Validations#validators [ci skip]Francesco Rodriguez2012-06-151-1/+0
* | Merge pull request #6800 from mschneider/dynamic_finders_for_aliased_attributesRafael Mendonça França2012-06-221-1/+3
|\ \
| * | made dynamic finders alias_attribute awareMaximilian Schneider2012-06-221-1/+3
* | | add :nodoc: to AM::AttributeMethods#instance_method_already_implemented? [ci ...Francesco Rodriguez2012-06-211-1/+1
* | | add :nodoc: to AM::AttributeMethods::AttributeMethodMatcher [ci skip]Francesco Rodriguez2012-06-211-1/+1
|/ /
* / Simplify AR configuration code.Jon Leighton2012-06-151-2/+1
|/
* Merge pull request #4785 from ayamomiji/add-self-to-allow-method-name-using-r...José Valim2012-05-251-4/+4
|\
| * fix `alias_attribute` will raise a syntax error if make an alias on aayaya2012-05-141-4/+4
* | Revert "Merge pull request #5702 from oscardelben/patch-4"Piotr Sarnacki2012-05-201-1/+3
* | Call undefine_attribute_methods only when defining new attributesOscar Del Ben2012-05-181-3/+1
* | allow define_attribute_methods to pass multiple valuesFrancesco Rodriguez2012-05-141-7/+7
* | Merge pull request #5729 from oscardelben/use_tapJosé Valim2012-05-131-5/+1
|\ \
| * | Use the more idiomatic tap methodOscar Del Ben2012-04-041-5/+1
| |/
* | simplify the alias_attribute example [ci skip]Vijay Dev2012-05-081-20/+1
* | added docs to alias_attribute methodFrancesco Rodriguez2012-05-071-0/+31
|/
* ruby 2.0 makes protected methods return false for respond_to, so pass true as...Aaron Patterson2012-02-211-1/+1
* remove unused capturesAaron Patterson2012-01-191-2/+2
* Fix stack level too deep when model does not have attributes method.Piotr Sarnacki2012-01-151-1/+1
* Support configuration on ActiveRecord::Model.Jon Leighton2011-12-281-1/+2
* remove deprecated define_attr_method from ActiveModel::AttributeMethodsSergey Nartimov2011-12-241-41/+0
* Deprecated `define_attr_method` in `ActiveModel::AttributeMethods`Jon Leighton2011-11-291-37/+20
* Speed up attribute invocation by checking if both name and calls are compilable.José Valim2011-11-141-27/+32
* Class name specified in example is Person, not AttributePerson.Uģis Ozols2011-09-291-3/+3
* Generate attribute method unless it's already in the module.Jon Leighton2011-09-141-1/+1
* Add an attribute_missing method to ActiveModel::AttributeMethods.Jon Leighton2011-09-131-8/+11
* Avoid double super call in some cases.Jon Leighton2011-09-131-5/+4
* Let Ruby deal with method visibility.Jon Leighton2011-09-131-13/+11
* Add deprecation for doing `attribute_method_suffix ''`Jon Leighton2011-09-131-0/+11
* refactoringJon Leighton2011-09-131-19/+11
* Use an empty AttributeMethodMatcher by default.Jon Leighton2011-09-131-2/+9
* Made attribute_method_matchers_cache private + docLawrence Pit2011-07-171-3/+13
* Issue #2075 Optimization of ActiveModel's match_attribute_method?Lawrence Pit2011-07-161-9/+17
* Optimization of ActiveModel's match_attribute_method?Lawrence Pit2011-07-151-2/+5
* let this regexp be stricterXavier Noria2011-04-191-1/+1
* Let's not dup because value may not always be duplicable.José Valim2011-04-191-1/+1
* Avoid define_method if possible.José Valim2011-04-191-12/+39
* use class_eval with a string when it's possibleSantiago Pastorino2011-03-221-2/+8
* Do not in place modify what table_name returnsSantiago Pastorino2011-03-221-1/+1
* define_attr_method should be able to define methods that returns nilSantiago Pastorino2011-03-171-2/+2
* remove misleading commentAaron Patterson2011-03-171-2/+0
* dup strings on return so that in place modifications do not break anything. ...Aaron Patterson2011-03-171-1/+1
* define_attr_method correctly defines methods with invalid identifiersSantiago Pastorino2011-03-161-3/+2
* Move ActiveModel::AttributeMethods#attribute_methods_generated? to ActiveReco...Alexander Uvarov2011-03-011-25/+19
* module_eval is not needed hereSantiago Pastorino2011-02-031-5/+3
* method_defined?, define_method and send accepts a string as argumentSantiago Pastorino2011-02-031-6/+6