seed_data_migrations 0.0.1.1 → 0.0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.rdoc
CHANGED
@@ -6,10 +6,10 @@ This project rocks and uses MIT-LICENSE.
|
|
6
6
|
|
7
7
|
add this to your gemfile
|
8
8
|
|
9
|
-
gem '
|
9
|
+
gem 'seed_data_migrations'
|
10
10
|
|
11
11
|
run the following in the command line
|
12
12
|
|
13
13
|
bundle install
|
14
|
-
rake
|
14
|
+
rake seed_data_migrations_engine:install:migrations
|
15
15
|
rake db:migrate
|
data/lib/generators/data_migrations/install/{data_migrations_generator.rb → install_generator.rb}
RENAMED
@@ -2,7 +2,7 @@ require 'rails/generators/migration'
|
|
2
2
|
|
3
3
|
module ValidationIssues
|
4
4
|
module Generators
|
5
|
-
class
|
5
|
+
class InstallGenerator < ::Rails::Generators::Base
|
6
6
|
include Rails::Generators::Migration
|
7
7
|
source_root File.expand_path('../templates', __FILE__)
|
8
8
|
desc "add the migrations"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: seed_data_migrations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1.
|
4
|
+
version: 0.0.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -56,7 +56,7 @@ files:
|
|
56
56
|
- lib/data_migration.rb
|
57
57
|
- lib/data_migrations/version.rb
|
58
58
|
- lib/data_migrations.rb
|
59
|
-
- lib/generators/data_migrations/install/
|
59
|
+
- lib/generators/data_migrations/install/install_generator.rb
|
60
60
|
- lib/generators/data_migrations/templates/data_migrations_migration.rb
|
61
61
|
- lib/schema_data_migration.rb
|
62
62
|
- lib/tasks/data_migrations_tasks.rake
|