-
-
Save novito/4906339fca5aa24cf235 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 Human | |
def tasks | |
@tasks.map do |task| | |
Task.new(id: task.id, owner_name: task.owner_name) | |
end | |
end | |
private | |
class Task | |
attr_reader :id, :owner_name | |
def initialize(id, owner_name) | |
@id = id | |
@owner_name = owner_name | |
end | |
end |
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 Human | |
def tasks | |
@tasks.map do |task| | |
OpenStruct.new(id: task.id, owner_name: task.owner_name) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment