Skip to content

Instantly share code, notes, and snippets.

@novito
Created January 21, 2016 10:47
Show Gist options
  • Save novito/7cfd5f96ff34ce8ac47d to your computer and use it in GitHub Desktop.
Save novito/7cfd5f96ff34ce8ac47d to your computer and use it in GitHub Desktop.
class Parent
DEFAULT_FOO_VALUE = 10
attr_reader :foo
def initialize(foo: DEFAULT_FOO_VALUE)
@foo = foo
end
end
class Fill < Parent
DEFAULT_FOO_VALUE = 15
end
fill = Fill.new
puts fill.foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment