Class: LabClient::Changes

Inherits:
Klass show all
Includes:
ClassHelpers
Defined in:
lib/labclient/merge_requests/change.rb

Overview

Inspect Helper, ‘Changes’ result for MR

Instance Attribute Summary

Attributes inherited from Klass

#client

Attributes inherited from LabStruct

#response, #table

Instance Method Summary collapse

Methods included from ClassHelpers

#has?, #keys, #raw

Methods inherited from Klass

#api_methods, #collect_project_id, #collect_release_id, #collect_repository_id, date_time_attrs, #format_time?, #group_name, #help, #initialize, #klass, #quiet?, #success?, #to_json, #update_self, user_attrs, #valid_group_project_levels, #verbose

Methods included from Docs

#demo, #desc, #doc, docs, #example, #group_name, #help, json, #markdown, #navigation, #option, #result, #subtitle, #title

Methods included from CurlHelper

#curl

Methods included from Logger

#logger, logger, logger_setup

Methods inherited from LabStruct

#[], #[]=, #as_json, #client, #initialize, #key?, #keys, #method_missing, #respond_to_missing?, #slice, #success?, #to_h

Constructor Details

This class inherits a constructor from LabClient::Klass

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class LabClient::LabStruct

Instance Method Details

#assigneesObject



21
22
23
# File 'lib/labclient/merge_requests/change.rb', line 21

def assignees
  @table[:assignees].map { |x| User.new(x, response, client) } if has? :assignees
end

#inspectObject

extend Docs



8
9
10
# File 'lib/labclient/merge_requests/change.rb', line 8

def inspect
  "#<Changes MR: #{id}, title: #{title}>"
end