Sha256: 5116fcd5aefce3d57d7c4551f8d7dcf09968a8de6f07b6ac2bef97292dd0d487

Contents?: true

Size: 812 Bytes

Versions: 4

Compression:

Stored size: 812 Bytes

Contents

# Application-wide settings.
# Be sure to restart your server when you modify this file
# origin: RM

# Specifies gem version of Rails to use when vendor/rails is not present
RAILS_GEM_VERSION = '2.3.11' unless defined? RAILS_GEM_VERSION

# Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot')

PAGE_SIZE = 50

APPLICATION_TITLE = 'Conferences and Participants'
NO_REPLY_EMAIL = "no-reply@makandra.com"
APPLICATION_EMAIL = NO_REPLY_EMAIL
APPLICATION_HOST = "localhost"

Rails::Initializer.run do |config|

  config.action_mailer.default_url_options = { :host => APPLICATION_HOST }

  config.autoload_paths << "#{RAILS_ROOT}/app/controllers/shared"
  config.autoload_paths << "#{RAILS_ROOT}/app/models/shared"
  
end

I18n.default_locale = "en"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
serum-rails-0.2.1 spec/test_apps/rails-2-3/config/environment.rb
serum-rails-0.2.0 spec/test_apps/rails-2-3/config/environment.rb
serum-rails-0.1.1 spec/test_app/config/environment.rb
serum-rails-0.1.0 spec/test_app/config/environment.rb