I'm writting a ruby gem and I want to let user use your own yaml file configuration, but I don't know how to test if the user_config.yml exists into rails config path.
I want to use user_config.yml only if this file exists into config path.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
e.g.
|
|||
|
|
|
you can access your Rails App's load path with the $LOAD_PATH variable which is of type Array. Thus
There is also another useful method for the Ruby File class called #exists? which will of course check to see if a file exists. See File class docs for more. Hope this gets you started. Your question was rather vague, reply with more details if you need more help. |
|||||||||
|