HI
I try to build some dynamic defined methods and chain some scope methods something like:
define_method "#{instance_name_method}" do
Kernel.const_get(model_name).___some_chaining methods basd on condition
end
One idea for that is something like:
method_action = model_name #ex Post
['latest', 'old', 'deleted','latest_deleted','archived'].each do |prefix|
method_action << ".deleted" if prefix.match('deleted')
method_action << ".latest" if prefix.match('latest')
method_action << ".old" if prefix.match('old')
define_method "#{prefix}_#{instance_name_method}" do
eval( method_action)
end
end
in post we have defiend scopes latest,old ...
Now we can call methods like:
Post.latest or Post.old_archived etc...
My questions are:
Is there a better approach for doing this? (similar to active record find but without method_missing) this is kind ugly...
How can I chain methods dynamically ?
I already know for send('method',var) but i don't know how to join those methods from strings based on condition...
Thanks