class Assembla::Client::Portfolio::StandupReports

Public Instance Methods

away(*args) { |el| ... } click to toggle source

@example api.portfolio.standup_reports.away

# File lib/assembla_api/client/portfolio/standup_reports.rb, line 15
def away(*args)
  arguments(args) do
    permit %w{ from to }
  end

  response = get_request("/standup_reports/away", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end
list(*args) { |el| ... } click to toggle source

@example api.portfolio.standup_reports.list

# File lib/assembla_api/client/portfolio/standup_reports.rb, line 6
def list(*args)
  arguments(args)
  response = get_request("/standup_reports", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end
with_needs(*args) { |el| ... } click to toggle source

@example api.portfolio.standup_reports.with_needs

# File lib/assembla_api/client/portfolio/standup_reports.rb, line 27
def with_needs(*args)
  arguments(args)
  response = get_request("/standup_reports/with_needs", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end