Project

up_to_date

0.0
No commit activity in last 3 years
No release in over 3 years
up_to_date contains a rake task that you can use to keep your gems up to date.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 10.0.3
 Project Readme

Purpose

Keep your gems up to date with a rake task. up_to_date will bundle update each outdated gem that appears in your Gemfile, run the default rake task for your project, and if they pass commit the changes to your Gemfile.lock to the project's git repository.

Caveats

This is alpha.

There currently aren't any tests in place. Running the update task is going to make commits to your local git repository. If you don't have good coverage for things that get updated, up_to_date can't figure that out. This is designed to take the bulk of the work out of keeping your gems up to date. Some manual work may still be required.

Installation

Add this line to your application's Gemfile:

gem 'up_to_date'

And then execute:

$ bundle

Or install it yourself as:

$ gem install up_to_date

Usage

$ rake deps:outdated
$ rake deps:update

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Write tests for your feature
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request