0.0
No commit activity in last 3 years
No release in over 3 years
Implements a new rake task for rails applications that will drop the database, create it, migrate and then seed the clean database
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.7
~> 10.0
 Project Readme

Rails Reseed

Code Climate Test Coverage

When working on a rails app in development you may want to start fresh with the database, which is where this gem comes in. As long as you have a seeds file with some initial data, this gem will serve you well.

A new rake task is created that will drop the database, create the database, run the migrations and reseed the newly created database with your seed data.

Happy building!

Inspired by Nithin Bekal's article at http://nithinbekal.com/posts/rake-db-reseed/

Installation

Add this line to your application's Gemfile in the development group:

gem 'rails_reseed'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rails_reseed

Usage

There is not much to do, install the gem then run Rake -T to find the shiny new rake command. To run, simply type rake db:reseed

Testing

To test the gem, run bundle exec rake spec/

Contributing

  1. Fork it ( https://github.com/pixelstack/reseed/fork )
  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 a new Pull Request