module Redmine

Constants

VERSION

Attributes

configuration[W]
log[W]

Public Class Methods

configuration() click to toggle source
# File lib/redmine.rb, line 16
def self.configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/redmine.rb, line 20
def self.configure
  yield(configuration)

  Redmine::Base.site = configuration.site
end
create_logger() click to toggle source
# File lib/redmine.rb, line 26
def self.create_logger
  @logger = Logger.new(STDOUT)
  @logger.level = Logger::WARN
end
logger() click to toggle source
# File lib/redmine.rb, line 31
def self.logger
  @logger
end
version() click to toggle source
# File lib/redmine/version.rb, line 4
def self.version
  VERSION
end