Created
December 23, 2014 13:00
-
-
Save pixeltrix/bf1fe0a4fa8081841681 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(', ')}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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