class JujuResult

Attributes

per_page[RW]
start_index[RW]
total[RW]

Public Class Methods

new(jobs_array, total = 0, start_index = 0, per_page = 0) click to toggle source
Calls superclass method
# File lib/juju.rb, line 63
def initialize(jobs_array, total = 0, start_index = 0, per_page = 0)
  super(jobs_array)
  self.total = total.to_i
  self.start_index = start_index.to_i
  self.per_page = per_page.to_i
end