Class: KalibroClient::Entities::Processor::Project

Inherits:
Base
  • Object
show all
Defined in:
lib/kalibro_client/entities/processor/project.rb

Instance Attribute Summary collapse

Attributes included from DateAttributes

#created_at, #updated_at

Attributes inherited from Base

#kalibro_errors, #persisted

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

address

Methods inherited from Base

#==, create, create_array_from_hash, create_objects_array_from_hash, #destroy, exists?, find, #initialize, request, #save, #save!, #to_hash, to_object, to_objects_array, #update

Methods included from RequestMethods::ClassMethods

#exists_action, #find_action, #id_params

Methods included from HashConverters

#convert_to_hash, #date_with_milliseconds, #field_to_hash

Methods included from XMLConverters

#get_xml, #xml_instance_class_name

Methods included from RequestMethods

#destroy_action, #destroy_params, #destroy_prefix, #save_action, #save_params, #save_prefix, #update_params, #update_prefix

Constructor Details

This class inherits a constructor from KalibroClient::Entities::Base

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



22
23
24
# File 'lib/kalibro_client/entities/processor/project.rb', line 22

def description
  @description
end

#idObject

Returns the value of attribute id.



22
23
24
# File 'lib/kalibro_client/entities/processor/project.rb', line 22

def id
  @id
end

#nameObject

Returns the value of attribute name.



22
23
24
# File 'lib/kalibro_client/entities/processor/project.rb', line 22

def name
  @name
end

Class Method Details

.allObject



28
29
30
# File 'lib/kalibro_client/entities/processor/project.rb', line 28

def self.all
  create_objects_array_from_hash(request('', {}, :get))
end

Instance Method Details

#repositoriesObject



32
33
34
# File 'lib/kalibro_client/entities/processor/project.rb', line 32

def repositories
  Repository.create_objects_array_from_hash(self.class.request(':id/repositories', {id: id}, :get))
end