legacy_migrations 0.3.5 → 0.3.7
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/VERSION +1 -1
- data/legacy_migrations.gemspec +4 -4
- data/lib/legacy_migrations.rb +2 -0
- metadata +5 -5
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.7
|
data/legacy_migrations.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{legacy_migrations}
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.7"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Bernie Telles"]
|
12
|
-
s.date = %q{2010-
|
12
|
+
s.date = %q{2010-08-25}
|
13
13
|
s.description = %q{Rails plugin for transferring or updating data between two db structures.}
|
14
14
|
s.email = %q{bernardo.telles@dms.myflorida.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -50,9 +50,9 @@ Gem::Specification.new do |s|
|
|
50
50
|
s.rubygems_version = %q{1.3.7}
|
51
51
|
s.summary = %q{Rails plugin for transferring or updating data between two db structures.}
|
52
52
|
s.test_files = [
|
53
|
-
"spec/
|
53
|
+
"spec/legacy_migrations_spec.rb",
|
54
|
+
"spec/lib/transformations_spec.rb",
|
54
55
|
"spec/models.rb",
|
55
|
-
"spec/legacy_migrations_spec.rb",
|
56
56
|
"spec/spec_helper.rb",
|
57
57
|
"spec/db/schema.rb"
|
58
58
|
]
|
data/lib/legacy_migrations.rb
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
require 'legacy_migrations/transformations'
|
2
2
|
require 'legacy_migrations/future_storage'
|
3
3
|
require 'legacy_migrations/squirrel'
|
4
|
+
require 'legacy_migrations/source_iterators'
|
5
|
+
require 'legacy_migrations/row_matchers'
|
4
6
|
module LegacyMigrations
|
5
7
|
|
6
8
|
# Define a source and destination table to transfer data
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: legacy_migrations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 29
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 7
|
10
|
+
version: 0.3.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Bernie Telles
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-08-25 00:00:00 -04:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -105,8 +105,8 @@ signing_key:
|
|
105
105
|
specification_version: 3
|
106
106
|
summary: Rails plugin for transferring or updating data between two db structures.
|
107
107
|
test_files:
|
108
|
+
- spec/legacy_migrations_spec.rb
|
108
109
|
- spec/lib/transformations_spec.rb
|
109
110
|
- spec/models.rb
|
110
|
-
- spec/legacy_migrations_spec.rb
|
111
111
|
- spec/spec_helper.rb
|
112
112
|
- spec/db/schema.rb
|