Sha256: 410b6734f05ec8d8e681b002f706ca14230d6c972704f822e33d55fb60a25f73
Contents?: true
Size: 590 Bytes
Versions: 3
Compression:
Stored size: 590 Bytes
Contents
module Susply class Engine < ::Rails::Engine isolate_namespace Susply config.to_prepare do Decorators.register! Engine.root, Rails.root end config.generators do |g| g.test_framework :rspec, :fixture => false g.fixture_replacement :factory_girl, :dir => 'spec/factories' g.assets false g.helper false end initializer :append_migrations do |app| unless app.root.to_s.match(root.to_s) config.paths["db/migrate"].expanded.each do |p| app.config.paths["db/migrate"] << p end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
susply-1.0.0 | lib/susply/engine.rb |
susply-0.0.2 | lib/susply/engine.rb |
susply-0.0.1 | lib/susply/engine.rb |