Class: Bugly::Project
Instance Attribute Summary
Attributes inherited from BuglyObject
#api_base, #api_key
Instance Method Summary
collapse
#issues
included
#save
#delete
included
Methods inherited from APIResource
#refresh, retrieve, #url, url
Methods inherited from BuglyObject
#[], #[]=, #as_json, construct_from, #each, #initialize, #inspect, #keys, #refresh_from, #to_hash, #to_json, #to_s, #values
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class Bugly::BuglyObject
Instance Method Details
#categories ⇒ Object
397
398
399
400
|
# File 'lib/bugly.rb', line 397
def categories
response, api_key = Bugly.request(:get, "#{url}/categories", @api_key)
Util.convert_to_bugly_object(response, api_key)
end
|
#commits ⇒ Object
402
403
404
405
|
# File 'lib/bugly.rb', line 402
def commits
response, api_key = Bugly.request(:get, "#{url}/changesets", @api_key)
Util.convert_to_bugly_object(response, api_key)
end
|
#labels ⇒ Object
407
408
409
410
|
# File 'lib/bugly.rb', line 407
def labels
response, api_key = Bugly.request(:get, "#{url}/labels", @api_key)
Util.convert_to_bugly_object(response, api_key)
end
|
#milestones ⇒ Object
392
393
394
395
|
# File 'lib/bugly.rb', line 392
def milestones
response, api_key = Bugly.request(:get, "#{url}/milestones", @api_key)
Util.convert_to_bugly_object(response, api_key)
end
|