module RenderTable

Constants

VERSION

Attributes

configuration[RW]

Public Class Methods

config() click to toggle source
# File lib/render_table.rb, line 20
def self.config
  self.configuration || RenderTable::Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/render_table.rb, line 15
def self.configure
  self.configuration ||= RenderTable::Configuration.new
  yield(configuration)
end