Class: TrackerApi::Endpoints::Projects
- Defined in:
- lib/tracker_api/endpoints/projects.rb
Instance Attribute Summary collapse
-
#client ⇒ Object
Returns the value of attribute client.
Instance Method Summary collapse
- #get(params = {}) ⇒ Object
-
#initialize(client) ⇒ Projects
constructor
A new instance of Projects.
Constructor Details
#initialize(client) ⇒ Projects
Returns a new instance of Projects.
6 7 8 |
# File 'lib/tracker_api/endpoints/projects.rb', line 6 def initialize(client) @client = client end |
Instance Attribute Details
#client ⇒ Object
Returns the value of attribute client.
4 5 6 |
# File 'lib/tracker_api/endpoints/projects.rb', line 4 def client @client end |
Instance Method Details
#get(params = {}) ⇒ Object
10 11 12 13 14 15 |
# File 'lib/tracker_api/endpoints/projects.rb', line 10 def get(params={}) data = client.paginate('/projects', params: params) raise Errors::UnexpectedData, 'Array of projects expected' unless data.is_a? Array data.map { |project| Resources::Project.new({ client: client }.merge(project)) } end |