ryantownsend (owner)

Revisions

gist: 40618 Download_button fork
public
Public Clone URL: git://gist.github.com/40618.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
class Person
  def self.eye_colour_options
    ['blue', 'green', 'brown']
  end
end
 
Person.eye_colour_options
# ["blue", "green", "brown"]