Skip to content

Instantly share code, notes, and snippets.

@makefunstuff
Created March 9, 2017 16:13
Show Gist options
  • Save makefunstuff/a063bd02a23e8d8c3aec0ffbd9117874 to your computer and use it in GitHub Desktop.
Save makefunstuff/a063bd02a23e8d8c3aec0ffbd9117874 to your computer and use it in GitHub Desktop.
require_relative 'boot'
require "rails"
# Pick the frameworks you want:
require "active_model/railtie"
require "active_job/railtie"
require "active_record/railtie"
require "action_controller/railtie"
require "action_mailer/railtie"
require "action_view/railtie"
require "action_cable/engine"
require "sprockets/railtie"
# require "rails/test_unit/railtie"
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
Dotenv::Railtie.load
module LifelogBot
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.
config.paths.add File.join('app', 'bot'), glob: File.join('**', '*.rb')
config.autoload_paths += Dir[Rails.root.join('app', 'bot', '*')]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment