Skip to content

Instantly share code, notes, and snippets.

@cadwallion
Forked from Mirai/gist:1877338
Created February 21, 2012 16:58
Show Gist options
  • Save cadwallion/1877371 to your computer and use it in GitHub Desktop.
Save cadwallion/1877371 to your computer and use it in GitHub Desktop.
module Namespace
class Address < ActiveRecord::Base
include Namespace::AddressMethods
end
end
===
module Namespace
class MailingAddress < ActiveRecord::Base
include Namespace::AddressMethods
end
end
module Namespace
module AddressMethods
set_table_name 'addresses'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment