I'm coming from the PHP world and I'm specifically looking at the Act As Votable gem but it may apply to anything in Ruby. I don't understand that you can add acts_as_votable method to your class when it is in a Module.
class Post < ActiveRecord::Base
acts_as_votable
end
I would expect ActsAsVotable::Extenders::Votable::acts_as_votable. What allows this to be run without calling the modules?