Sha256: b04f8c4e76596f5cad25f4c46b2ad2b23e5ef5d4a364f1cec7d6bf60c198fb30

Contents?: true

Size: 464 Bytes

Versions: 1

Compression:

Stored size: 464 Bytes

Contents

require_relative 'boot'

require 'rails/all'

Bundler.require(*Rails.groups)
require "daimon/exhibition"

module Dummy
  class Application < Rails::Application
    config.app_generators do |g|
      g.helper false
      g.assets false
    end

    initializer "daimon-exhibition.set_factory_paths", after: "factory_girl.set_factory_paths" do
      FactoryGirl.definition_file_paths << config.root.join('spec/factories') if defined?(FactoryGirl)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
daimon-exhibition-0.1.0 spec/dummy/config/application.rb