Sha256: b06f6e8ec4cdcaa0546c700feddb01a70bfa1fc291db502c0e6bcc4c405b05ed
Contents?: true
Size: 997 Bytes
Versions: 1
Compression:
Stored size: 997 Bytes
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.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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thinking-sphinx-2.0.0 | lib/thinking_sphinx/railtie.rb |