Class: Sistrix::Monitoring::Projects

Inherits:
Object
  • Object
show all
Includes:
Base
Defined in:
lib/sistrix/monitoring/projects.rb

Defined Under Namespace

Classes: Record

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Base

#base_uri, #fetch, #method_name

Constructor Details

#initialize(options = {}) ⇒ Projects

Returns a new instance of Projects.



11
12
13
14
15
16
17
18
19
# File 'lib/sistrix/monitoring/projects.rb', line 11

def initialize(options = {})
  @options = {
    'api_key' => Sistrix.config.api_key,
  }

  if Sistrix.config.proxy
    RestClient.proxy = Sistrix.config.proxy
  end
end

Instance Attribute Details

#creditsObject (readonly)

Returns the value of attribute credits.



9
10
11
# File 'lib/sistrix/monitoring/projects.rb', line 9

def credits
  @credits
end

#projectsObject (readonly)

Returns the value of attribute projects.



9
10
11
# File 'lib/sistrix/monitoring/projects.rb', line 9

def projects
  @projects
end

Instance Method Details

#call(options = {}) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/sistrix/monitoring/projects.rb', line 21

def call(options = {})
  data = fetch(options)

  @credits = data.xpath('/response/credits').first['used'].to_i

  @projects = []
  data.xpath('/response/answer/project').each do |r|
    @projects << Record.new(r)
  end

  self
end