No commit activity in last 3 years
No release in over 3 years
Checks whether migrations, or other operations, need to be run, without loading your environment
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 3

Runtime

 Project Readme

MigrationInvestigation

This gem will check to see if you need to run migrations without loading your environment. It assumes that you are using auto_tagger to tag the SHA that has been deployed.

Installation

Add this line to your application's Gemfile:

gem "migration_investigation"

And then execute:

$ bundle

Or install it yourself as:

$ gem install migration_investigation

Usage

The gem is very simple:

$ MigrationInvestigation.pending_migrations? "staging", "abc123"

Where staging is the name of the tag, and abc123 is the SHA you're about to deploy. You can also pass nil for the SHA you're about to deploy and it will assume you're deloying HEAD.

If you'd also like to check additional files or directories, say seed data, you can pass in a third parameter:

$ MigrationInvestigation.pending_migrations? "staging", "abc123", additional_paths: ["db/seed.rb", "app/foo.txt"]

You can also add a pattern for migrations to ignore:

$ MigrationInvestigation.pending_migrations? "staging", "abc123", skip_filepath_pattern: /\d_online_/

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