Class: Wonde::Rooms
Constant Summary collapse
- @@uri =
'rooms/'
Instance Attribute Summary
Attributes inherited from Endpoints
#endpoint, #token, #uri, #version
Instance Method Summary collapse
-
#initialize(token, id = false) ⇒ Rooms
constructor
A new instance of Rooms.
Methods inherited from Endpoints
#all, #delete, #deleteRequest, #deleteUrl, #get, #getRequest, #getUrl, #post, #postRequest, #postUrl
Constructor Details
#initialize(token, id = false) ⇒ Rooms
Returns a new instance of Rooms.
4 5 6 7 8 9 |
# File 'lib/endpoints/rooms.rb', line 4 def initialize(token, id=false) super(token, id) self.uri = @@uri self.uri = id + '/' + @@uri if id self.uri = self.uri.gsub("//", "/").chomp("/") end |