Sha256: 64ca3bf6f7c78fbba65fa9d86ca265da0bf7028d681075cc08b3c16e89edc603

Contents?: true

Size: 524 Bytes

Versions: 6

Compression:

Stored size: 524 Bytes

Contents

# frozen_string_literal: true

module Thinreports
  module Report
    # @see Thinreports::Report::Base#initialize
    def self.new(*args)
      Base.new(*args)
    end

    # @see Thinreports::Report::Base#create
    def self.create(*args, &block)
      Base.create(*args, &block)
    end

    # @see Thinreports::Report::Base#generate
    def self.generate(*args, &block)
      Base.generate(*args, &block)
    end
  end
end

require_relative 'report/base'
require_relative 'report/internal'
require_relative 'report/page'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
thinreports-0.12.0 lib/thinreports/report.rb
thinreports-0.11.0 lib/thinreports/report.rb
thinreports-0.10.3 lib/thinreports/report.rb
thinreports-0.10.2 lib/thinreports/report.rb
thinreports-0.10.1 lib/thinreports/report.rb
thinreports-0.10.0 lib/thinreports/report.rb