Skip to content

Instantly share code, notes, and snippets.

@patrickgombert
Created September 18, 2011 18:11
Show Gist options
  • Save patrickgombert/1225336 to your computer and use it in GitHub Desktop.
Save patrickgombert/1225336 to your computer and use it in GitHub Desktop.
Flawed Singleton
class MailingList < ActiveRecord::Base
has_many :subscribers
def self.instance
self.find_by_id(1)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment