Created
May 1, 2014 23:31
-
-
Save craftninja/74850622ec9490be3808 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 Dogs | |
POOR = (0..5).to_a.sample | |
AVERAGE = (6..10).to_a.sample | |
EXCELLENT = (11..15).to_a.sample | |
def initialize | |
joe = { | |
:name => {:first => "Joe", :last => "Smith"}, | |
:owner_quality => EXCELLENT | |
} | |
sarah = { | |
:name => {:first => "Sarah", :last => "Smith"}, | |
:owner_quality => AVERAGE | |
} | |
andrew = { | |
:name => {:first => "Andrew", :last => "Beter"}, | |
:owner_quality => AVERAGE | |
} | |
@dogs = [{:name => "Fido", :size => :large, :owner => joe}, | |
{:name => "Yapper", :size => :small, :owner => joe}, | |
{:name => "Bruiser", :size => :large, :owner => joe}, | |
{:name => "Tank", :size => :huge, :owner => sarah}, | |
{:name => "Beast", :size => :large, :owner => sarah}, | |
{:name => "Harleigh", :size => :medium, :owner => andrew}, | |
{:name => "Trixie", :size => :small, :owner => andrew}, | |
] | |
end | |
# only edit below this line | |
def small_dogs | |
@dogs.select { |dog| dog[:size] == :small } | |
end | |
def huge_dog | |
@dogs.find { |dog| dog[:size] == :huge } | |
end | |
def large_dog_names | |
@dogs.map { |dog| dog[:name] if dog[:size] == :large }.compact | |
end | |
def joes_large_dogs | |
@dogs.map do |dog| | |
dog[:name] if dog[:size] == :large && dog[:owner][:name][:first] == 'Joe' | |
end.compact | |
end | |
def sizes | |
@dogs.map{ |dog| dog[:size] }.uniq | |
end | |
def owners | |
@dogs.map{ |dog| "#{dog[:owner][:name][:first]} #{dog[:owner][:name][:last]}"}.uniq | |
end | |
def average_owners | |
@dogs.select! do |dog| | |
dog[:owner][:owner_quality] == AVERAGE | |
end | |
self.owners | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment