# Ponytail [![Build Status](https://travis-ci.org/sinsoku/ponytail.png?branch=develop)](https://travis-ci.org/sinsoku/ponytail) Ponytail is a Rails engine that shows the migrations. ## Installation Add `ponytail` to `:development` groups in your application's Gemfile: ```ruby group :development do gem 'ponytail' end ``` And then execute: ```bash $ bundle ``` Comment out `config.active_record.migration_error` in `config/environments/development.rb`. ```ruby # Raise an error on page load if there are pending migrations # config.active_record.migration_error = :page_load ``` ## Usage Visit `/rails/migrations` in your app. ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request