Skip to content

Instantly share code, notes, and snippets.

@bradhe
Created January 8, 2012 21:14
Show Gist options
  • Save bradhe/1579723 to your computer and use it in GitHub Desktop.
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.
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