Class: Wonde::Behaviours

Inherits:
Endpoints show all
Defined in:
lib/endpoints/behaviours.rb

Constant Summary collapse

@@uri =
'behaviours/'

Instance Attribute Summary

Attributes inherited from Endpoints

#endpoint, #token, #uri, #version

Instance Method Summary collapse

Methods inherited from Endpoints

#all, #delete, #deleteRequest, #deleteUrl, #get, #getRequest, #getUrl, #post, #postRequest, #postUrl

Constructor Details

#initialize(token, id = false) ⇒ Behaviours

Returns a new instance of Behaviours.



4
5
6
7
8
9
# File 'lib/endpoints/behaviours.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