No commit activity in last 3 years
No release in over 3 years
Provides command to open latest migration file in text editoror just display latest migration file path in the standard output.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 3
 Project Readme

Build Status Gem Version

latest_migration

latest_migration is a Ruby on Rails gem that allows you to open your latest migration file in text editor. It saves the time of selecting, copying and opening the file in your editor.

Installation

  • Add latest_migration to your Gemfile:
gem 'latest_migration', group: :development
  • Install with: bundle install

Usage

When installed, you have available two new Rake tasks:

rake latest_migration:open
rake latest_migration:path

The first one opens the latest migration in the text editor.

By default it uses subl command to open the file. You can override this with initializer:

# config/initializers/latest_migration.rb
LatestMigration::Base.editor = :mine

You can use pass any command name you wish (like :mine, :nano etc.).

The second command just prints the filename of latest migration to standard output, like:

/Users/Arek/Workspace/myapp/db/migrate/20151101184727_create_tags.rb

License

latest_migration is released under the MIT license:

Author

Arkadiusz Fal

Copyright © 2015 Arkadiusz Fal