Skip to content

Instantly share code, notes, and snippets.

@mkroman
Created August 1, 2010 02:25
Show Gist options
  • Select an option

  • Save mkroman/502868 to your computer and use it in GitHub Desktop.

Select an option

Save mkroman/502868 to your computer and use it in GitHub Desktop.
module DSI
class Message
attr_accessor :body
def initialize body, private = false
@body = body
@private = private
end
def private?
@private
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment