Skip to content

Instantly share code, notes, and snippets.

@havenwood

havenwood/irc.rb Secret

Last active August 29, 2015 13:56
Show Gist options
  • Save havenwood/a068171cd5926662d607 to your computer and use it in GitHub Desktop.
Save havenwood/a068171cd5926662d607 to your computer and use it in GitHub Desktop.
#ruby irc
module Genius # if you aren't instanciating, use a module
@db = nil # instance variables are camel_case
def self.set_db(connection) # methods are camel_case
@db = connection
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment