createk_data_migrator 0.1.1 → 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.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/createk_data_migrator.gemspec +1 -2
- data/lib/createk_data_migrator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3e4debc0468b68a35b7266028d5766b36173e0b
|
4
|
+
data.tar.gz: cf662fc32b9ec2ec86b05fb1d090e0624c2d7ff2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74ce3e38064a26f6b90fe9a8579e4d69d9872484131f654f273db8f2c08942d71dacc3748d0da0f1764f7ca69ea98d9846c7d701b7c844dfc7df6866d849eaf5
|
7
|
+
data.tar.gz: 5d9d84a0a90efa7028d9db93b714ad633d9cdf0bfc3f35f550e61f4aac1b8a09472802871455740ea96c6168c31edede75f85bca1969a22c030552a4e3c96aae
|
data/README.md
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
-
#
|
1
|
+
# CreatekDataMigrator Useage
|
2
2
|
|
3
|
-
## Installing
|
3
|
+
## Installing CreatekDataMigrator
|
4
4
|
|
5
5
|
Add the following to your Gemfile
|
6
6
|
|
7
|
-
Add `
|
7
|
+
Add `createk_data_migrator`
|
8
8
|
|
9
9
|
Then run `bundle install`
|
10
10
|
|
11
|
-
Once
|
11
|
+
Once CreatekDataMigrator is installed you will need to generate the `data_migrations`
|
12
12
|
table that stores the versioning of data migrations.
|
13
13
|
|
14
14
|
Run the following from the command line. `rails generate data_migrator`
|
15
15
|
|
16
16
|
Then run `rake db:migrate`
|
17
17
|
|
18
|
-
|
18
|
+
CreatekDataMigrator should now be installed & ready to be used
|
19
19
|
|
20
20
|
## Data Migration
|
21
21
|
|
@@ -8,9 +8,8 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = CreatekDataMigrator::VERSION
|
9
9
|
spec.authors = ["Reiss Johnson"]
|
10
10
|
spec.email = ["reissjohnson@me.com"]
|
11
|
-
|
12
11
|
spec.summary = %q{A Gem used for creating data migration tasks}
|
13
|
-
|
12
|
+
spec.homepage = 'https://github.com/createkio/createk_data_migrator'
|
14
13
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
15
14
|
spec.bindir = "exe"
|
16
15
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: createk_data_migrator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Reiss Johnson
|
@@ -77,7 +77,7 @@ files:
|
|
77
77
|
- lib/generators/templates/create_data_migrations_table.rb.tt
|
78
78
|
- lib/tasks/data_migrate.rake
|
79
79
|
- lib/templates/data_migration_template.rb.tt
|
80
|
-
homepage:
|
80
|
+
homepage: https://github.com/createkio/createk_data_migrator
|
81
81
|
licenses: []
|
82
82
|
metadata: {}
|
83
83
|
post_install_message:
|