Skip to content

Instantly share code, notes, and snippets.

@vgevorgyan
Created June 19, 2015 17:17
Show Gist options
  • Save vgevorgyan/40167989e2eca899bb65 to your computer and use it in GitHub Desktop.
Save vgevorgyan/40167989e2eca899bb65 to your computer and use it in GitHub Desktop.
module Test
class Document
def initialize
p 'Hello'
end
end
end
class Email < Test::Document
end
class MainController < ApplicationController
def index
email = Email.new
p email.inspect
end
end
# Only prints Email object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment