Sha256: 3055100fd568dd69d5934191880322bc6050efbaa94c91af0b4b9666c8913c01
Contents?: true
Size: 1.34 KB
Versions: 47
Compression:
Stored size: 1.34 KB
Contents
require File.expand_path('../boot', __FILE__) # Pick the frameworks you want: # require "active_record/railtie" require "action_controller/railtie" require "action_mailer/railtie" require "action_view/railtie" require "sprockets/railtie" require "rails/test_unit/railtie" Bundler.require(*Rails.groups) require "wordjelly-auth" ## not only sns, but also the scheduling of the notifications, and email. ## both have to be completed along with editing. ## how to allot time in the day ? ## module Dummy class Application < Rails::Application # Settings in config/environments/* take precedence over those specified here. # Application configuration should go into files in config/initializers # -- all .rb files in that directory are automatically loaded. # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. # config.time_zone = 'Central Time (US & Canada)' # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] # config.i18n.default_locale = :de config.autoload_paths += %W(#{config.root}/lib) config.autoload_paths += Dir["#{config.root}/lib/**/"] end end
Version data entries
47 entries across 47 versions & 1 rubygems