Rake task - with additional class
开发者_如何学编程I have my own classes, which I want to use in my rake task. Where to put files with this classes?
If the classes are only used by the rake task, I'd keep them in lib/
, just make sure you are loading the directory by configuring autoload_paths
:
# application.rb
config.autoload_paths += %W(#{config.root}/lib)
精彩评论