module Bcx
  module Resources
    class Person < Rapidash::Base
      url :people
      collection :me
    end
  end
endProvides access to people resource
GET /people.json
client.people!
GET /people/123.json
client.people!(123)
GET /people/me.json
client.people.me!
GET /people/1/assigned_todos.json
client.people(1).assigned_todos
DELETE /people/123.json
client.people(123).delete!
module Bcx
  module Resources
    class Person < Rapidash::Base
      url :people
      collection :me
    end
  end
end