vote up 4 vote down star

Here are the entire contents of activeresource.rb:

require 'active_resource'

Could someone explain the logic of this?

Why not simply have activeresource.rb contain what active_resource.rb contains and forget about the additional require statement?

flag

75% accept rate

1 Answer

vote up 7 vote down check

David Heinemeier Hansson added activeresource.rb to the code base so that people can do their requires based on the gem name itself and not have to remember that even though the gem is named activeresource they have to require active_resource.rb

The original file was still needed for anyone who was already using it, so the new file just requires the old.

Check In Comment For activeresource.rb

Edit:

Found the original enhancement ticket that resulted in this change

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.