[]: {{{1
File : README.md
Maintainer : Felix C. Stegerman <flx@obfusk.net>
Date : 2014-08-12
Copyright : Copyright (C) 2014 Felix C. Stegerman
Version : v0.2.3
[]: }}}1
[]: {{{1
active-dump - dump and restore activerecord from/to yaml
active-dump provides 3 rake tasks that allow you to dump and restore activerecord data from/to yaml:
rake db:data:dump
creates a yaml dumprake db:data:restore
restores a yaml dumprake db:data:delete
deletes all records in databaserake db:data:fix_seqs
fixes (postgresql) sequences
NB: active-dump does not take migrations (or validations etc.) into account -- it dumps and restores raw data from the ActiveRecord models -- so make sure your migrations are in sync.
When using rails, add this to your Gemfile:
gem 'active-dump', require: 'active-dump/rails'
[]: {{{2
You can use these environment variables to configure active-dump:
RAILS_ENV
: the environmentFILE
: the file to dump to/restore from (defaults todb/data.yml
)MODELS
: the models to dump (defaults to all models)DELETE
: delete records with same id before restore (defaults to false)VERBOSE
: print info/sql (defaults to false)DRYRUN
: don't do anything (defaults to false, impliesVERBOSE
)
Configuration files:
config/active-dump.yml
: set defaultsconfig/database.yml
: database connection
[]: }}}2
[]: }}}1
[]: {{{1
$ rake db:data:dump MODELS=Foo,Bar
$ RAILS_ENV=production rake db:data:restore
$ rake db:data:restore DELETE=yes
$ rake db:data:delete # CAREFUL!
config/active-dump.yml
:
file: db/dump.yml
verbose: true
models:
- Cms::Block
- Cms::Categorization
- Cms::Category
- Cms::File
- Cms::Layout
- Cms::Page
- Cms::Revision
- Cms::Site
- Cms::Snippet
[]: }}}1
$ rake spec # TODO
$ rake docs
- specs! docs?
- use model's database connection?!
- ...
LGPLv3+ [1].
[]: {{{1
[1] GNU Lesser General Public License, version 3 --- http://www.gnu.org/licenses/lgpl-3.0.html
[]: }}}1
[]: ! ( vim: set tw=70 sw=2 sts=2 et fdm=marker : )