Created
January 8, 2012 21:14
-
-
Save bradhe/1579723 to your computer and use it in GitHub Desktop.
Add support for querying for people that are assigned to a project to basecamp-wrapper.
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
module Basecamp | |
class Project | |
def people | |
get(:people).map { |h| Basecamp::Person.new(h) } | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment