Class: Adhoq::Reporter::Xlsx

Inherits:
Object
  • Object
show all
Defined in:
lib/adhoq/reporter/xlsx.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(result) ⇒ Xlsx

Returns a new instance of Xlsx.



11
12
13
# File 'lib/adhoq/reporter/xlsx.rb', line 11

def initialize(result)
  @result = result
end

Class Method Details

.mime_typeObject



7
8
9
# File 'lib/adhoq/reporter/xlsx.rb', line 7

def self.mime_type
  'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
end

Instance Method Details

#build_reportObject



15
16
17
18
19
20
# File 'lib/adhoq/reporter/xlsx.rb', line 15

def build_report
  xlsx = Axlsx::Package.new
  write_result!(xlsx)

  xlsx.to_stream
end