Search code examples
rubyruby-on-rails-3rake-task

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?


Solution

  • 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)