active_record_migrations 4.2.1.2 → 4.2.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1a5c2287832c2add0bea59cfa56ce4173594205e
4
- data.tar.gz: ad833f4d4f2ae3f15a5f34ffa40c1baf9800a3a0
3
+ metadata.gz: 08366f979a3595a23f18118b3a5d2439d7232256
4
+ data.tar.gz: 45dde1c57bc1aa27633677e2a94e50bb0057bdaf
5
5
  SHA512:
6
- metadata.gz: 2588b355d9a2821df8ef2f640464849283d2b09754c6ed8fea23515f26cbe80d6151612e15edf1ef41ee0c83a191e47e8f9d62e384bc8e769b7d013754d1a52b
7
- data.tar.gz: 62e388aa73c3dac8ad25c986138523e1114db5593c04124eb7b180a154ec91e142a03a2a3e17ac27dabebeec230226a3d32edada252f1c18ed7722bc2644eb0a
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
- [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/rosenfeld/active_record_migrations/trend.png)](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.1"
30
- spec.add_dependency "activerecord", "4.2.1"
29
+ spec.add_dependency "railties", "4.2.2"
30
+ spec.add_dependency "activerecord", "4.2.2"
31
31
  end
32
32
 
@@ -1,3 +1,3 @@
1
1
  module ActiveRecordMigrations
2
- VERSION = "4.2.1.2"
2
+ VERSION = "4.2.2.1"
3
3
  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: 4.2.1.2
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-04-17 00:00:00.000000000 Z
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.1
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.1
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.1
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.1
68
+ version: 4.2.2
69
69
  description: ActiveRecord Stand-alone migrations
70
70
  email:
71
71
  - rr.rosas@gmail.com