Sha256: 45278aa148a73c114314930067a29a897cf98d3ed16e6496f5fd77cecab95cc2
Contents?: true
Size: 691 Bytes
Versions: 1
Compression:
Stored size: 691 Bytes
Contents
class Verdict::Railtie < Rails::Railtie initializer "experiments.configure_rails_initialization" do |app| Verdict.default_logger = Rails.logger Verdict.directory = Rails.root.join('app', 'experiments') app.config.eager_load_paths -= [Verdict.directory.to_s] # Re-freeze eager load paths to ensure they blow up if modified at runtime, as Rails does app.config.eager_load_paths.freeze end config.to_prepare do # Clear Verdict's cache in order to avoid "A copy of ... has been removed from the module tree but is still active!" Verdict.clear_repository_cache end rake_tasks do load File.expand_path("./tasks.rake", File.dirname(__FILE__)) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
verdict-0.6.2 | lib/verdict/railtie.rb |