active_record_migrations 5.0.1.1 → 5.0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -9
- data/active_record_migrations.gemspec +2 -8
- data/lib/active_record_migrations/generators/migration.rb +2 -5
- data/lib/active_record_migrations/version.rb +1 -1
- metadata +11 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1527b28b44f50f877d1323dc3bfcd906f590e1e9
|
4
|
+
data.tar.gz: d02d2b8096bf59441c501e592724a340cd4ee151
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1e828b953f36a0193c370c10f31e757b6845659bd3eacb3be2102558ed33917213e5c2bf8647e50765572fa929b77e980682ae597ea27ea5d74012e14ed1487
|
7
|
+
data.tar.gz: 2a75274d1ce0a2abd3db3e7cba0b51ba39aad13c14fd870572de26d9a177990294040b9b244ee9314a2eacdaa84421468b55f6f4083fdb8155bde065d0b561c8
|
data/README.md
CHANGED
@@ -71,18 +71,20 @@ You can specify the environment by setting the `db` environment variable:
|
|
71
71
|
|
72
72
|
## Versioning
|
73
73
|
|
74
|
-
|
75
|
-
|
74
|
+
From ActiveRecord 5.0.2 and above you should use v5.0.2.1 or above. That version isn't locked to
|
75
|
+
ActiveRecord 5.0.2 as in previous versions, which means it should work fine with any ActiveRecord
|
76
|
+
version starting with 5.0.2.
|
76
77
|
|
77
|
-
|
78
|
+
Up to ActiveRecord 5.0.1 we relied on overriding a method in the migration generator to support
|
79
|
+
custom paths for the migrations, so the version used to follow ActiveRecord versions plus a
|
80
|
+
patch version from our own. For instance, if AR version is 4.0.1, this gem would be versioned
|
81
|
+
4.0.1.x with x starting in 0.
|
78
82
|
|
79
|
-
|
80
|
-
order to override the migrations path. So far the internal implementation since 4.0.0.0 hasn't
|
81
|
-
changed, so if you're interested on another version with optimistic versioning dependency in
|
82
|
-
order to have more flexibility you should check out the [optimistic](../../tree/optimistic) branch.
|
83
|
+
## I can't find a release for the AR version we rely on
|
83
84
|
|
84
|
-
|
85
|
-
|
85
|
+
We had to use pessimistic versioning up to 5.0.1.1 because we relied on internal details of AR
|
86
|
+
migrations in order to override the migrations path. The [optimistic](../../tree/optimistic)
|
87
|
+
branch should work with any previous version since ActiveRecord 4.0.0.
|
86
88
|
|
87
89
|
## Contributing
|
88
90
|
|
@@ -20,13 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
|
21
21
|
spec.add_development_dependency "bundler"
|
22
22
|
spec.add_dependency "rake"
|
23
|
-
|
24
|
-
|
25
|
-
# We rely on a kind of monkey patch for allowing us to override the migrations path.
|
26
|
-
# So it's better to fix on an specific version of AR and check if the override of
|
27
|
-
# ActiveRecord::Generators::MigrationGenerator#create_migration_file is correct
|
28
|
-
# before upgrading AR dependency. See ARM::Generators::MigrationGenerator impl.
|
29
|
-
spec.add_dependency "railties", "5.0.1"
|
30
|
-
spec.add_dependency "activerecord", "5.0.1"
|
23
|
+
spec.add_dependency "railties", ">= 5.0.2"
|
24
|
+
spec.add_dependency "activerecord", ">= 5.0.2"
|
31
25
|
end
|
32
26
|
|
@@ -6,11 +6,8 @@ module ActiveRecordMigrations
|
|
6
6
|
class MigrationGenerator < ::ActiveRecord::Generators::MigrationGenerator
|
7
7
|
source_root ::ActiveRecord::Generators::MigrationGenerator.source_root
|
8
8
|
|
9
|
-
def
|
10
|
-
|
11
|
-
validate_file_name!
|
12
|
-
dir = ::ActiveRecord::Tasks::DatabaseTasks.migrations_paths.first
|
13
|
-
migration_template @migration_template, "#{dir}/#{file_name}.rb"
|
9
|
+
def db_migrate_path
|
10
|
+
::ActiveRecord::Tasks::DatabaseTasks.migrations_paths.first
|
14
11
|
end
|
15
12
|
end
|
16
13
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_record_migrations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rodrigo Rosenfeld Rosas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -42,30 +42,30 @@ dependencies:
|
|
42
42
|
name: railties
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 5.0.
|
47
|
+
version: 5.0.2
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 5.0.
|
54
|
+
version: 5.0.2
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: activerecord
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 5.0.
|
61
|
+
version: 5.0.2
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 5.0.
|
68
|
+
version: 5.0.2
|
69
69
|
description: ActiveRecord Stand-alone migrations
|
70
70
|
email:
|
71
71
|
- rr.rosas@gmail.com
|
@@ -104,9 +104,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
104
|
version: '0'
|
105
105
|
requirements: []
|
106
106
|
rubyforge_project:
|
107
|
-
rubygems_version: 2.
|
107
|
+
rubygems_version: 2.6.8
|
108
108
|
signing_key:
|
109
109
|
specification_version: 4
|
110
110
|
summary: Use AR migrations from outside of a Rails project
|
111
111
|
test_files: []
|
112
|
-
has_rdoc:
|