module BootstrapLeather

Bootstrap Leather module

Configuration for the BootstrapLeather module

Message Train module

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/bootstrap_leather/configuration.rb, line 10
def self.configuration
  @configuration ||= BootstrapLeather::Configuration.new
end
configure(configuration = BootstrapLeather::Configuration.new) { |configuration| ... } click to toggle source
# File lib/bootstrap_leather/configuration.rb, line 5
def self.configure(configuration = BootstrapLeather::Configuration.new)
  yield configuration if block_given?
  @configuration = configuration
end
version_string() click to toggle source
# File lib/bootstrap_leather/version.rb, line 7
def self.version_string
  "BootstrapLeather version #{BootstrapLeather::VERSION}"
end