Skip to content

Instantly share code, notes, and snippets.

@cantonic
Last active August 29, 2015 14:03
Show Gist options
  • Save cantonic/81b7944b5e4b1ee0ca91 to your computer and use it in GitHub Desktop.
Save cantonic/81b7944b5e4b1ee0ca91 to your computer and use it in GitHub Desktop.
class GradePresenter
def initialize(grade)
@grade = grade
@@grade = grade
end
if @@grade.valid?
...
end
end
@Altonymous
Copy link

class GradePresenter
  @@grade = nil

  def initialize(grade)
    @grade = grade
    @@grade = grade
  end

  def some_method()
    if @@grade.nil?
      puts "here"
    else
      puts @@grade
    end
  end
end

then...

GradePresenter.new(1).some_method

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment