active_record_migrations 4.2.1.2 → 4.2.2.1
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 +10 -5
- data/active_record_migrations.gemspec +2 -2
- data/lib/active_record_migrations/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 08366f979a3595a23f18118b3a5d2439d7232256
|
|
4
|
+
data.tar.gz: 45dde1c57bc1aa27633677e2a94e50bb0057bdaf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 616f62bc8bcdc89124c69850a7c3cab4d97190a928e4606c6e4cd7290f49f272051e32e59d264270ded219e5407a0d9ca602abb748e0cf7204ddb65adce1f5cc
|
|
7
|
+
data.tar.gz: ca4842c115bdab4be707d3f2dc9bfd81bfc779325e59f30381860d7d695416e066317a891edc0538b2b4f822f28bf82e4001e4d80fa5be03d68110bb464d1063
|
data/README.md
CHANGED
|
@@ -74,6 +74,16 @@ You can specify the environment by setting the `db` environment variable:
|
|
|
74
74
|
The version follows ActiveRecord versions plus a patch version from our own. For instance, if
|
|
75
75
|
AR version is 4.0.1, this gem will be versioned 4.0.1.x with x starting in 0.
|
|
76
76
|
|
|
77
|
+
## I can't find a release for the AR version we rely on
|
|
78
|
+
|
|
79
|
+
We have to use pessimistic versioning because we rely on internal details of AR migrations in
|
|
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
|
+
|
|
84
|
+
I've already tried to merge the required changes to AR itself a few times but after having my
|
|
85
|
+
pull requests ignored a few times without feedback I gave up.
|
|
86
|
+
|
|
77
87
|
## Contributing
|
|
78
88
|
|
|
79
89
|
1. Fork it
|
|
@@ -81,8 +91,3 @@ AR version is 4.0.1, this gem will be versioned 4.0.1.x with x starting in 0.
|
|
|
81
91
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
82
92
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
83
93
|
5. Create new Pull Request
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
[](https://bitdeli.com/free "Bitdeli Badge")
|
|
88
|
-
|
|
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
|
|
|
26
26
|
# So it's better to fix on an specific version of AR and check if the override of
|
|
27
27
|
# ActiveRecord::Generators::MigrationGenerator#create_migration_file is correct
|
|
28
28
|
# before upgrading AR dependency. See ARM::Generators::MigrationGenerator impl.
|
|
29
|
-
spec.add_dependency "railties", "4.2.
|
|
30
|
-
spec.add_dependency "activerecord", "4.2.
|
|
29
|
+
spec.add_dependency "railties", "4.2.2"
|
|
30
|
+
spec.add_dependency "activerecord", "4.2.2"
|
|
31
31
|
end
|
|
32
32
|
|
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: 4.2.1
|
|
4
|
+
version: 4.2.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: 2015-
|
|
11
|
+
date: 2015-06-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -44,28 +44,28 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - '='
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 4.2.
|
|
47
|
+
version: 4.2.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: 4.2.
|
|
54
|
+
version: 4.2.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: 4.2.
|
|
61
|
+
version: 4.2.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: 4.2.
|
|
68
|
+
version: 4.2.2
|
|
69
69
|
description: ActiveRecord Stand-alone migrations
|
|
70
70
|
email:
|
|
71
71
|
- rr.rosas@gmail.com
|