Sha256: 06ce8a3531e59cefab359acfb4a548877a731efc103bf4f198c7983dc2d3ca3a
Contents?: true
Size: 1.19 KB
Versions: 3
Compression:
Stored size: 1.19 KB
Contents
require 'thinking_sphinx' require 'rails' module ThinkingSphinx class Railtie < Rails::Railtie initializer "thinking_sphinx.active_record" do ActiveSupport.on_load :active_record do include ThinkingSphinx::ActiveRecord end end initializer "thinking_sphinx.action_controller" do ActiveSupport.on_load :action_controller do require 'thinking_sphinx/action_controller' include ThinkingSphinx::ActionController end end initializer "thinking_sphinx.set_app_root" do |app| ThinkingSphinx::Configuration.instance.reset # Rails has setup app now end config.to_prepare do I18n.backend.reload! I18n.backend.available_locales # ActiveRecord::Base.to_crc32s is dependant on the subclasses being loaded # consistently. When the environment is reset, subclasses/descendants will # be lost but our context will not reload them for us. # # We reset the context which causes the subclasses/descendants to be # reloaded next time the context is called. # ThinkingSphinx.reset_context! end rake_tasks do load File.expand_path('../tasks.rb', __FILE__) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
thinking-sphinx-2.0.3 | lib/thinking_sphinx/railtie.rb |
thinking-sphinx-2.0.2 | lib/thinking_sphinx/railtie.rb |
thinking-sphinx-2.0.1 | lib/thinking_sphinx/railtie.rb |