Sha256: 4a087d4285f009a161891de241b2673cc0f8498c2f3ba8e281c085cb0accec41

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 KB

Contents

# SeedGimmick

Database bootstrapping utilities for Rails.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'seed_gimmick'
```

And then execute:

    $ bundle

## Usage

### Generate configuration file and default seed directory

Run generator of Rails.  
Configuration file created to `config/seed_gimmick.yml`.

```
$ bundle exec rails generate seed_gimmick:install
      create  db/seed_gimmick/.keep
      create  config/seed_gimmick.yml
```

### Rake tasks

#### Apply fixtures

Read fixtures from seed directory and apply to database.  
All fixtures applied if not specified tables.

```
$ [TABLES=table_name,table_name] bundle exec rake db:seed_gimmick
```

#### Dump fixtures

Dump to fixture file from database in seed directory.

```
$ MODELS=ModelName,ModelName bundle exec rake db:seed_gimmick:dump
```

## Contributing

1. Fork it ( https://github.com/i2bskn/seed_gimmick/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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
seed_gimmick-0.0.2 README.md