Skip to content

Instantly share code, notes, and snippets.

@Thomascountz
Last active June 12, 2018 16:07
Show Gist options
  • Save Thomascountz/69b23cec3534b24cfd571ad8d011f70b to your computer and use it in GitHub Desktop.
Save Thomascountz/69b23cec3534b24cfd571ad8d011f70b to your computer and use it in GitHub Desktop.
class BottleNumber
attr_reader :number, :state
def initialize(number, state: :FIXME)
@number = number
@state = state
end
# ...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment