index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activemodel
/
test
Commit message (
Expand
)
Author
Age
Files
Lines
*
ActiveModel support for the :include serialization option
John Firebaugh
2011-07-17
2
-8
/
+117
*
Add a test
John Firebaugh
2011-07-17
1
-0
/
+5
*
serializable_hash(:only => [], :methods => [:foo]) should work
John Firebaugh
2011-07-17
1
-0
/
+10
*
Enable passing root: false to #to_json
Joe Fiorini
2011-07-01
1
-1
/
+52
*
changing an attribute multiple times retains the correct original value
Ian Stewart
2011-06-28
1
-0
/
+9
*
Allow to specify mass-assignment roles as array
Alexander Uvarov
2011-06-23
2
-1
/
+23
*
Merge pull request #1654 from ganeshkumar/test_cases
Santiago Pastorino
2011-06-13
1
-1
/
+0
|
\
|
*
removed duplicate code
ganesh
2011-06-11
1
-1
/
+0
*
|
Get rid of the alternate namespace lookup.
José Valim
2011-06-11
1
-10
/
+0
|
/
*
Brought back alternative convention for namespaced models in i18n.
thoefer
2011-06-08
1
-0
/
+10
*
Transform the symbol into a constant lookup.
José Valim
2011-05-31
1
-4
/
+4
*
ActiveModel::MassAssignmentSecurity.mass_assignment_sanitizer method
Bogdan Gusiev
2011-05-30
1
-5
/
+13
*
MassAssignmentSecurity: add ability to specify your own sanitizer
Bogdan Gusiev
2011-05-26
4
-25
/
+25
*
No more need rubygems here.
Arun Agrawal
2011-05-22
1
-1
/
+0
*
Specify the name to be used for ActiveModel::Name fixes #1168
Yves Senn
2011-05-20
1
-1
/
+38
*
Attributes with :string type should not be given the type passed in model ser...
Jim Herzberg
2011-05-18
1
-1
/
+7
*
Follow code conventions on some tests
Sebastian Martinez
2011-05-10
4
-29
/
+29
*
Methods that return nil should not be considered YAML
Joshua Wehner
2011-05-10
2
-0
/
+8
*
renamed mass-assignment scopes to roles, updated code, tests, docs and securi...
Josh Kalderimis
2011-05-08
1
-2
/
+2
*
:if should not fire on validations when not in context with :on
Aditya Sanghi
2011-04-29
1
-0
/
+14
*
Add additional tests for AM::ObserverArray that I had missed yesterday.
Myron Marston
2011-04-28
1
-1
/
+50
*
Fix bug with AM::Observer disablement.
Myron Marston
2011-04-28
1
-0
/
+10
*
Revert "Revert "Handle enabling/disabling observers at different levels of th...
Myron Marston
2011-04-28
1
-0
/
+39
*
Revert "Handle enabling/disabling observers at different levels of the class ...
José Valim
2011-04-28
1
-39
/
+0
*
Handle enabling/disabling observers at different levels of the class hierarchy.
Myron Marston
2011-04-28
1
-0
/
+39
*
Allow observers to be enabled and disabled.
Myron Marston
2011-04-28
3
-0
/
+154
*
AM mass assignment security attr_accessible and attr_protected now allow for ...
Josh Kalderimis
2011-04-24
3
-11
/
+50
*
bcrypt will encrypt anything, so validate_presence_of would not catch nil / b...
Aaron Patterson
2011-04-14
1
-0
/
+12
*
No need to rescue here. Invoking the wrong method in an object can happen any...
José Valim
2011-04-11
3
-34
/
+0
*
Revert "Add :use_include option to allow user to explicitly use `Range#includ...
José Valim
2011-04-11
2
-19
/
+0
*
Using Object#in? and Object#either? in various places
Prem Sichanugrist
2011-04-11
1
-1
/
+2
*
Add :use_include option to allow user to explicitly use `Range#include?` meth...
Prem Sichanugrist
2011-04-10
2
-0
/
+19
*
Add support for proc or lambda as an option for InclusionValidator, Exclusion...
Prem Sichanugrist
2011-04-10
3
-0
/
+82
*
Rename test directory to match code directory
John Firebaugh
2011-04-06
2
-0
/
+0
*
Do not in place modify what table_name returns
Santiago Pastorino
2011-03-22
1
-11
/
+0
*
define_attr_method should be able to define methods that returns nil
Santiago Pastorino
2011-03-17
1
-0
/
+2
*
dup strings on return so that in place modifications do not break anything. ...
Aaron Patterson
2011-03-17
1
-0
/
+11
*
define_attr_method correctly defines methods with invalid identifiers
Santiago Pastorino
2011-03-16
1
-2
/
+4
*
Add a define_attr_method test
Santiago Pastorino
2011-03-16
1
-0
/
+13
*
Add test for define_attr_method using as name an invalid identifier
Santiago Pastorino
2011-03-16
1
-0
/
+13
*
Add test for define_attribute_method using as name an invalid identifier
Santiago Pastorino
2011-03-16
1
-3
/
+26
*
Refactor length validation
Santiago Pastorino
2011-03-12
1
-3
/
+3
*
length validation for fixnums
Andriy Tyurnikov
2011-03-12
1
-0
/
+11
*
Active Model typos.
R.T. Lechow
2011-03-05
1
-1
/
+1
*
Move ActiveModel::AttributeMethods#attribute_methods_generated? to ActiveReco...
Alexander Uvarov
2011-03-01
1
-3
/
+7
*
Revert "Properly interpolate i18n keys in modules [#5572 state:resolved]"
Santiago Pastorino
2011-02-27
2
-24
/
+0
*
failing test for i18n key collision with namespaced models
Santiago Pastorino
2011-02-27
2
-0
/
+11
*
Change validates inclusion to use cover? for Ranges in ruby 1.9 [#6453 state:...
Frederick Cheung
2011-02-18
1
-0
/
+9
*
Override attributes_protected_by_default when has_secure_password is called.
Tsutomu Kuroda
2011-02-09
3
-0
/
+32
*
implementing include? on AM::Errors
Aaron Patterson
2011-02-09
1
-0
/
+6
[next]