also_migrate 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/config/gemspec.yml +1 -1
- data/lib/also_migrate/migrator.rb +1 -1
- metadata +4 -9
data/config/gemspec.yml
CHANGED
@@ -2,7 +2,7 @@ module AlsoMigrate
|
|
2
2
|
module Migrator
|
3
3
|
|
4
4
|
def self.included(base)
|
5
|
-
unless base.
|
5
|
+
unless base.included_modules.include?(InstanceMethods)
|
6
6
|
base.send :include, InstanceMethods
|
7
7
|
base.class_eval do
|
8
8
|
alias_method :migrate_without_also_migrate, :migrate
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: also_migrate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
4
|
+
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 0
|
8
7
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
8
|
+
- 4
|
9
|
+
version: 0.3.4
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- Winton Welsh
|
@@ -26,7 +25,6 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
hash: 49
|
30
28
|
segments:
|
31
29
|
- 0
|
32
30
|
- 8
|
@@ -42,7 +40,6 @@ dependencies:
|
|
42
40
|
requirements:
|
43
41
|
- - ~>
|
44
42
|
- !ruby/object:Gem::Version
|
45
|
-
hash: 15
|
46
43
|
segments:
|
47
44
|
- 1
|
48
45
|
- 0
|
@@ -98,7 +95,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
98
95
|
requirements:
|
99
96
|
- - ">="
|
100
97
|
- !ruby/object:Gem::Version
|
101
|
-
hash: 3
|
102
98
|
segments:
|
103
99
|
- 0
|
104
100
|
version: "0"
|
@@ -107,14 +103,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
103
|
requirements:
|
108
104
|
- - ">="
|
109
105
|
- !ruby/object:Gem::Version
|
110
|
-
hash: 3
|
111
106
|
segments:
|
112
107
|
- 0
|
113
108
|
version: "0"
|
114
109
|
requirements: []
|
115
110
|
|
116
111
|
rubyforge_project:
|
117
|
-
rubygems_version: 1.
|
112
|
+
rubygems_version: 1.3.7
|
118
113
|
signing_key:
|
119
114
|
specification_version: 3
|
120
115
|
summary: Migrate multiple tables with similar schema at once.
|