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)
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top