aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute_methods.rb
Commit message (Expand)AuthorAgeFilesLines
* eliminate alias_method_chain from ActiveRecordwycats2010-05-091-1/+10
* No need to check for generated method, just redispatchJeremy Kemper2009-11-141-4/+3
* Extract generic attribute method generation to AMoJoshua Peek2009-08-041-241/+10
* whitespaceJoshua Peek2009-08-041-5/+5
* Modified ActiveRecord::AttributeMethods to allow classes to specify attribute...Paul Gillard2009-08-041-37/+117
* Track generated attribute methods in a separate moduleJoshua Peek2009-08-021-30/+14
* Start separating primary key concernsJoshua Peek2009-07-301-0/+30
* Make sure we use send for the default attribute method body because the suffi...Joshua Peek2009-07-301-1/+1
* Make sure to reset defined methods after calling attribute_method_suffixJoshua Peek2009-07-301-9/+7
* Move attribute_types_cached_by_default into attribute methods reading concernJoshua Peek2009-07-301-10/+0
* Don't need to pass attr_name to evaluate_attribute_method anymoreJoshua Peek2009-07-301-4/+4
* Undefine id and let it automatically be generatedJoshua Peek2009-07-301-4/+4
* Redirect method missing for primary key to read_attributeJoshua Peek2009-07-301-3/+1
* ditto for id=Joshua Peek2009-07-301-3/+3
* Don't define id_before_type_cast, just let it be generated on its ownJoshua Peek2009-07-301-1/+1
* Restore DangerousAttributeErrorJoshua Peek2009-07-301-3/+9
* Wrap up attribute method reset concerns in 'undefine_attribute_methods'Joshua Peek2009-07-301-0/+5
* read_attribute is always available through attributeJoshua Peek2009-07-301-7/+1
* cache_attributes is related to attribute readingJoshua Peek2009-07-301-19/+0
* Generate methods for all suffixesJoshua Peek2009-07-301-11/+4
* Concernify AR AttributeMethodsJoshua Peek2009-07-301-195/+19
* Make it so AR attributes which conflict with object-private methods (e.g. sys...Sam Goldstein2009-07-091-4/+9
* Break up DependencyModule's dual function of providing a "depend_on" DSL and ...Joshua Peek2009-05-281-1/+1
* Merge commit 'origin/master'Yehuda Katz + Carl Lerche2009-05-141-3/+3
* Cherry-pick core extensionsJeremy Kemper2009-05-131-0/+2
* Use DependencyModule for included hooks in ActiveRecordBryan Helmkamp2009-05-111-9/+13
* Support true/false in query_attribute for calculated columnsMax Lapshin2009-02-061-0/+1
* "raise NoMethodError" raises NoMethodError. Raise it with NoMethodError.new i...Mike Gunderloy2008-10-251-1/+1
* Fix performance bug in AttibuteMethods#respond_to? in handling of private met...Aliaksey Kandratsenka2008-10-041-1/+3
* Changed ActiveRecord attributes to respect access control.Adam Milligan2008-09-241-1/+7
* Base.skip_time_zone_conversion_for_attributes uses class_inheritable_accessor...miloops2008-09-141-1/+1
* Some performance goodness for AR.Clemens Kofler2008-09-031-1/+1
* More symbols for send and respond_to?.Clemens Kofler2008-09-031-2/+2
* Merge docrails.Pratik Naik2008-05-251-5/+5
* Adding documentation for time zone featuresgbuesing2008-05-181-0/+4
* Merge documentation changes from docrails.Pratik Naik2008-05-161-16/+24
* Time.zone.parse: return nil for strings with no date informationgbuesing2008-05-081-1/+1
* ActiveRecord time zone aware attributes: blank string is treated as nil when ...gbuesing2008-05-081-3/+3
* Fix Time.zone.parse from stripping time zone information and make Time aware ...Scott Fleckenstein2008-05-081-1/+1
* Time, DateTime and TimeWithZone #in_time_zone defaults to Time.zone. Removing...Geoff Buesing2008-03-171-2/+2
* Add Time Zone support to ActiveRecord, and config.time_zone property for spec...Rick Olson2008-02-061-2/+40
* Ruby 1.9 compat: attribute methodsJeremy Kemper2007-12-271-2/+3
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-221-1/+1
* Fix typos (closes #10378)David Heinemeier Hansson2007-12-051-1/+1
* eval with __FILE__ and __LINE__Jeremy Kemper2007-10-101-1/+1
* Only cache attributes which need it for performance reasons. Closes #9767 [sk...Michael Koziarski2007-10-061-1/+24
* Fix that ActiveRecord would create attribute methods and override custom attr...Rick Olson2007-10-061-9/+7
* only create custom accessors for Kernel:: methodsTobias Lütke2007-10-031-11/+4
* Allow column accessors to be created even if Kernel. or Object# methods of th...Tobias Lütke2007-10-031-4/+15
* Doc fix (closes #9323) [Henrik N]David Heinemeier Hansson2007-09-221-2/+2