Sha256: 4059d3904fc8ec830e7e9f62849de261dae307b5ee6ef2b91b92f5c706111b35

Contents?: true

Size: 1.04 KB

Versions: 14

Compression:

Stored size: 1.04 KB

Contents

require 'tournament'
require 'yaml'

# The page title and email subject line:
# <title>#{TOURNAMENT_TITLE}</title>
# or Subject: [#{TOURNAMENT_TITLE}] Your registration was successful!
TOURNAMENT_TITLE = "Tournament"

# The email address emails sent by the site will be fron
ADMIN_EMAIL = 'admin' unless defined?(ADMIN_EMAIL)

# If the application is installed as a relative directory
# in an existing site, use this in conjunction with the
# appropriate web server configuration to have all urls
# in the site done relative to the root url.
RELATIVE_URL_ROOT = nil

if RELATIVE_URL_ROOT
  ActionController::Base.relative_url_root = RELATIVE_URL_ROOT
end

# Provide keys needed by ActionMailer.smtp_settings.  See Rails
# documentation for more help
SMTP_CONFIGURATION = {}

if SMTP_CONFIGURATION.size > 0
  ActionMailer::Base.delivery_method = :smtp
  ActionMailer::Base.smtp_settings = SMTP_CONFIGURATION
end

# Full path to the prince xml executable if you want printable
# styled PDF's of tournament brackets.
PRINCE_PATH = nil unless defined?(PRINCE_PATH)

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
tournament-3.0.0 webgui/config/initializers/pool.rb
tournament-2.2.0 webgui/config/initializers/pool.rb
tournament-2.0.0 webgui/config/initializers/pool.rb
tournament-2.1.1 webgui/config/initializers/pool.rb
tournament-2.2.1 webgui/config/initializers/pool.rb
tournament-2.1.2 webgui/config/initializers/pool.rb
tournament-2.1.0 webgui/config/initializers/pool.rb
tournament-2.3.0 webgui/config/initializers/pool.rb
tournament-2.5.0 webgui/config/initializers/pool.rb
tournament-2.4.0 webgui/config/initializers/pool.rb
tournament-2.2.2 webgui/config/initializers/pool.rb
tournament-2.5.2 webgui/config/initializers/pool.rb
tournament-2.6.0 webgui/config/initializers/pool.rb
tournament-2.5.1 webgui/config/initializers/pool.rb