Module: YandexTracker
- Defined in:
- lib/yandex_tracker.rb,
lib/yandex_tracker/auth.rb,
lib/yandex_tracker/client.rb,
lib/yandex_tracker/errors.rb,
lib/yandex_tracker/version.rb,
lib/yandex_tracker/objects/base.rb,
lib/yandex_tracker/objects/user.rb,
lib/yandex_tracker/configuration.rb,
lib/yandex_tracker/objects/field.rb,
lib/yandex_tracker/objects/issue.rb,
lib/yandex_tracker/objects/queue.rb,
lib/yandex_tracker/resources/base.rb,
lib/yandex_tracker/resources/user.rb,
lib/yandex_tracker/objects/comment.rb,
lib/yandex_tracker/resources/field.rb,
lib/yandex_tracker/resources/issue.rb,
lib/yandex_tracker/resources/queue.rb,
lib/yandex_tracker/collections/base.rb,
lib/yandex_tracker/objects/category.rb,
lib/yandex_tracker/objects/workflow.rb,
lib/yandex_tracker/collections/users.rb,
lib/yandex_tracker/resources/comment.rb,
lib/yandex_tracker/collections/fields.rb,
lib/yandex_tracker/collections/issues.rb,
lib/yandex_tracker/collections/queues.rb,
lib/yandex_tracker/objects/attachment.rb,
lib/yandex_tracker/objects/resolution.rb,
lib/yandex_tracker/resources/category.rb,
lib/yandex_tracker/resources/workflow.rb,
lib/yandex_tracker/objects/local_field.rb,
lib/yandex_tracker/collections/comments.rb,
lib/yandex_tracker/resources/attachment.rb,
lib/yandex_tracker/resources/resolution.rb,
lib/yandex_tracker/collections/workflows.rb,
lib/yandex_tracker/resources/local_field.rb,
lib/yandex_tracker/collections/categories.rb,
lib/yandex_tracker/collections/attachments.rb,
lib/yandex_tracker/collections/resolutions.rb,
lib/yandex_tracker/collections/local_fields.rb
Overview
Ruby wrapper for the YandexTracker REST API
Defined Under Namespace
Modules: Collections, Errors, Objects, Resources Classes: Auth, Client, Configuration
Constant Summary collapse
- VERSION =
"0.1.0"
Class Attribute Summary collapse
-
.configuration ⇒ Object
Returns the value of attribute configuration.
Class Method Summary collapse
Class Attribute Details
.configuration ⇒ Object
Returns the value of attribute configuration.
52 53 54 |
# File 'lib/yandex_tracker.rb', line 52 def configuration @configuration end |
Class Method Details
.client ⇒ Object
60 61 62 |
# File 'lib/yandex_tracker.rb', line 60 def self.client @client ||= Client.new end |
.configure {|configuration| ... } ⇒ Object
55 56 57 58 |
# File 'lib/yandex_tracker.rb', line 55 def self.configure self.configuration ||= Configuration.new yield(configuration) end |