EngineMigrationInitializer
Allows a Rails engine's migrations to be loaded by the host app rather than having to copy them over with rake your_engine:install:migrations
.
Installation
Add this line to your application's Gemfile:
gem 'engine_migration_initializer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install engine_migration_initializer
Usage
In your engine's engine.rb
:
module YourEngine
class Engine < ::Rails::Engine
extend EngineMigrationInitializer
end
end
And that's it. Now, just run rake db:migrate
as normal from your host app and it will pick up any migrations in your engine.
Contributing
- Fork it ( https://github.com/[my-github-username]/engine_migration_initializer/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request