kennyj
|
3ade2f8e89
|
Fix warning for params_wrapper_test.
|
2011-12-08 23:09:09 +09:00 |
|
Jean-Francois Turcot
|
d5526218e4
|
ParamsWrapper only wrap the accessible attributes when they were set
|
2011-12-07 22:50:01 -05:00 |
|
lest
|
1f0e21ce30
|
use classify in ParamsWrapper to derive model name from controller name
|
2011-12-05 19:15:36 +03:00 |
|
Jon Leighton
|
8e23615245
|
Use lazy load hooks to set parameter wrapping configuration. This means that it doesn't force Action Controller / Active Record to load, but it doesn't fail if they have already loaded. Thanks @josevalim for the hint.
|
2011-08-16 19:14:20 +01:00 |
|
Jon Leighton
|
6c5f67cac1
|
Don't refer to ActionController::Base in the wrap_parameters initializer - use config object instead. Cuts about 15% off the load time. (#734)
|
2011-08-16 00:59:59 +01:00 |
|
Josh Kalderimis
|
968596fa7f
|
renamed the wrap_parameters :only and :except options to :include and :exclude to make it consistent with controller filters
|
2011-05-19 10:33:25 -04:00 |
|
David Chelimsky
|
13950a8cc9
|
add more robust test for wrapping params with anonymous class
|
2011-05-17 06:57:14 -04:00 |
|
David Chelimsky
|
14d5e3e459
|
better test name
|
2011-05-17 06:56:53 -04:00 |
|
David Chelimsky
|
29e8ca3698
|
add failing test for https://github.com/rails/rails/issues/1089
|
2011-05-17 06:56:46 -04:00 |
|
Prem Sichanugrist
|
d77b306b63
|
Make ParamsWrapper calling newly introduced Model.attribute_names instead of .column_names
|
2011-05-15 19:07:44 -04:00 |
|
Prem Sichanugrist
|
3bed43c6a5
|
Do not try to call column_names on the abstract class.
Normally the table for abstract class won't be existed, so we should not trying to call `#column_names` on it.
|
2011-05-15 00:41:20 -04:00 |
|
José Valim
|
a87894ae57
|
Get around weird missing constant error caused by AS instead of simply raising NameError, closes #477.
|
2011-05-11 00:08:43 +02:00 |
|
Vijay Dev
|
f490a81443
|
Fix typos in test method names
|
2011-05-03 23:35:01 +05:30 |
|
Prem Sichanugrist
|
31f412fc97
|
Fix broken params_wrapper_test on 1.8.7 💣
I have to keep in mind that 1.8.7 does *not* preserve the hash order.
Guys, let's move to use 1.9.2 in production!
|
2011-05-03 16:51:19 +07:00 |
|
José Valim
|
4bddc06e83
|
Move most processing to load time for performance and improve test suite.
|
2011-05-03 01:04:57 +02:00 |
|
Prem Sichanugrist
|
8c9e4d5202
|
Add ActionController::ParamsWrapper to wrap parameters into a nested hash
This will allow us to do a rootless JSON/XML request to server.
|
2011-05-03 03:21:43 +07:00 |
|