Module: ThinReports::Report

Defined in:
lib/thinreports/report.rb,
lib/thinreports/report/base.rb,
lib/thinreports/report/events.rb,
lib/thinreports/report/internal.rb

Defined Under Namespace

Classes: Base, Events, Internal

Class Method Summary collapse

Class Method Details

.create(*args, &block) ⇒ Object

See Also:

  • ThinReports::Report::Base#create


12
13
14
# File 'lib/thinreports/report.rb', line 12

def self.create(*args, &block)
  Base.create(*args, &block)
end

.generate(*args, &block) ⇒ Object



17
18
19
# File 'lib/thinreports/report.rb', line 17

def self.generate(*args, &block)
  Base.generate(*args, &block)
end

.generate_file(*args, &block) ⇒ Object



22
23
24
# File 'lib/thinreports/report.rb', line 22

def self.generate_file(*args, &block)
  Base.generate_file(*args, &block)
end

.new(*args) ⇒ Object



7
8
9
# File 'lib/thinreports/report.rb', line 7

def self.new(*args)
  Base.new(*args)
end