Skip to content

Instantly share code, notes, and snippets.

@alxjrvs
Created March 22, 2013 15:30
Show Gist options
  • Save alxjrvs/5222187 to your computer and use it in GitHub Desktop.
Save alxjrvs/5222187 to your computer and use it in GitHub Desktop.
class Rock
attr_accessible :color, :density, :weight, :size, :texture;w
def initialize(color, density, weight, size, texture)
@color = color
@density = density
@weight = weight
@size = size
@texture = texture
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment