Mercurial > rsstweet
comparison config/application.rb @ 0:a1c9fadc0904
Initial.
Generated with:
rails new rsstweet -J -S -O -G --skip-keeps
| author | edogawaconan <me@myconan.net> |
|---|---|
| date | Fri, 05 Sep 2014 18:24:19 +0900 |
| parents | |
| children | dac0d7297388 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:a1c9fadc0904 |
|---|---|
| 1 require File.expand_path('../boot', __FILE__) | |
| 2 | |
| 3 # Pick the frameworks you want: | |
| 4 require "active_model/railtie" | |
| 5 # require "active_record/railtie" | |
| 6 require "action_controller/railtie" | |
| 7 require "action_mailer/railtie" | |
| 8 require "action_view/railtie" | |
| 9 # require "sprockets/railtie" | |
| 10 require "rails/test_unit/railtie" | |
| 11 | |
| 12 # Require the gems listed in Gemfile, including any gems | |
| 13 # you've limited to :test, :development, or :production. | |
| 14 Bundler.require(*Rails.groups) | |
| 15 | |
| 16 module Rsstweet | |
| 17 class Application < Rails::Application | |
| 18 # Settings in config/environments/* take precedence over those specified here. | |
| 19 # Application configuration should go into files in config/initializers | |
| 20 # -- all .rb files in that directory are automatically loaded. | |
| 21 | |
| 22 # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. | |
| 23 # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. | |
| 24 # config.time_zone = 'Central Time (US & Canada)' | |
| 25 | |
| 26 # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. | |
| 27 # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] | |
| 28 # config.i18n.default_locale = :de | |
| 29 end | |
| 30 end |
