File: engine.rb

package info (click to toggle)
ruby-combustion 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 332 kB
  • sloc: ruby: 628; makefile: 9; sh: 6
file content (9 lines) | stat: -rw-r--r-- 235 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Dummy
  class Engine < ::Rails::Engine
    initializer :dummy,  :before => :load_init_rb do |app|
      app.config.paths["db/migrate"].concat(config.paths["db/migrate"].expanded)
    end
  end
end