Skip to content

Instantly share code, notes, and snippets.

@ogryzek
Last active August 29, 2015 13:56
Show Gist options
  • Save ogryzek/9010467 to your computer and use it in GitHub Desktop.
Save ogryzek/9010467 to your computer and use it in GitHub Desktop.
ruby Struct
Fee = Struct.new(:percentage, :max, :min)
# # equivalent to
# class Fee
# attr_accessor :percentage, :max, :min
# def initialize(percentage, max, min)
# self.percentage = percentage
# self.max = max
# self.min = min
# end
# end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment