Project

ponytail

0.0
No commit activity in last 3 years
No release in over 3 years
Ponytail is a Rails engine that shows the migrations.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Ponytail

Gem Version Build Status Coverage Status Code Climate

Ponytail is a Rails engine that shows the migrations.

Installation

Add ponytail to :development groups in your application's Gemfile:

group :development do
  gem 'ponytail'
end

And then execute:

$ bundle

Comment out config.active_record.migration_error in config/environments/development.rb.

  # Raise an error on page load if there are pending migrations
  # config.active_record.migration_error = :page_load

Usage

Visit /ponytail/migrations in your app.

How to work dummy app

$ rake db:migrate:reset
$ cd spec/dummy
$ rails s

Example site

Dummy app is deploying on heroku. However, you can not change the migration files and databases.

http://ponytail.herokuapp.com/

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