I'm planning to create a ruby gem which requires to get all the ActiveRecord models from the directory (typically)
RAILS_ROOT/app/models
how can I get the list of model names (physical) in ruby (ruby 1.9)
cheers
sameera
|
I'm planning to create a ruby gem which requires to get all the ActiveRecord models from the directory (typically) RAILS_ROOT/app/models how can I get the list of model names (physical) in ruby (ruby 1.9) cheers sameera |
||||
|
|
|
So, if the class name matches with the file name, you can use something like this:
|
||||
|
|
Returns all the model name. |
|||
|
|