Skip to content

Checks whether migrations need to be run, without loading your environment

License

Notifications You must be signed in to change notification settings

BrentWheeldon/migration_investigation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Checks whether migrations need to be run, without loading your environment

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages