Basis of rails driven photo website with a Flash uploader
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

40 lines
1.9 KiB

15 years ago
  1. # Be sure to restart your server when you modify this file
  2. # Specifies gem version of Rails to use when vendor/rails is not present
  3. RAILS_GEM_VERSION = '2.3.3' unless defined? RAILS_GEM_VERSION
  4. # Bootstrap the Rails environment, frameworks, and default configuration
  5. require File.join(File.dirname(__FILE__), 'boot')
  6. Rails::Initializer.run do |config|
  7. # Settings in config/environments/* take precedence over those specified here.
  8. # Application configuration should go into files in config/initializers
  9. # -- all .rb files in that directory are automatically loaded.
  10. # Add additional load paths for your own custom dirs
  11. # config.load_paths += %W( #{RAILS_ROOT}/extras )
  12. # Specify gems that this application depends on and have them installed with rake gems:install
  13. # config.gem "bj"
  14. # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
  15. # config.gem "sqlite3-ruby", :lib => "sqlite3"
  16. # config.gem "aws-s3", :lib => "aws/s3"
  17. # Only load the plugins named here, in the order given (default is alphabetical).
  18. # :all can be used as a placeholder for all plugins not explicitly named
  19. # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
  20. # Skip frameworks you're not going to use. To use Rails without a database,
  21. # you must remove the Active Record framework.
  22. # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
  23. # Activate observers that should always be running
  24. # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
  25. # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
  26. # Run "rake -D time" for a list of tasks for finding time zone names.
  27. config.time_zone = 'UTC'
  28. # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
  29. # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')]
  30. # config.i18n.default_locale = :de
  31. end