Skip to content

Instantly share code, notes, and snippets.

@pixeltrix
Created December 23, 2014 13:00
Show Gist options
  • Save pixeltrix/bf1fe0a4fa8081841681 to your computer and use it in GitHub Desktop.
Save pixeltrix/bf1fe0a4fa8081841681 to your computer and use it in GitHub Desktop.
class Kid
attr_reader :name, :naughty, :nice
def initialize(name, options = {})
@name = name
@naughty = options.fetch(:naughty, false)
@nice = options.fetch(:nice, false)
end
alias_method :naughty?, :naughty
alias_method :nice?, :nice
end
kids = [
Kid.new('Alex'),
Kid.new('Isobel', nice: true),
Kid.new('Phoebe', naughty: true),
Kid.new('Nathan', naughty: true, nice: true)
]
2.times do
kids.select!(&:nice?)
kids.reject!(&:naughty?)
end
puts "Santa's list is #{kids.map(&:name).join(', ')}"
$ ruby santas_list.rb
Santa's list is Isobel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment