0

I have a Rails 1.2.6 application and I would like to be able to create a folder in app/ and have its contents loaded.

This is the behaviour of Rails 3. How can I achieve the same thing in Rails 1.2.6?

Nerian
  • 15,901
  • 13
  • 66
  • 96

1 Answers1

0

in config/environment.rb

config.load_paths += Dir["#{RAILS_ROOT}/app/jobs"]
Nerian
  • 15,901
  • 13
  • 66
  • 96