fix-db-schema-conflicts 2.0.1 → 3.0.0
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/.rubocop_schema.yml +1 -2
- data/.travis.yml +1 -2
- data/README.md +9 -5
- data/lib/fix_db_schema_conflicts/version.rb +1 -1
- data/spec/integration/integration_spec.rb +1 -0
- data/spec/test-app/db/schema.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2e315e5775c46ac6fa1f379e072246214f4a405a
|
|
4
|
+
data.tar.gz: 595fe95951f639b7b4019d637101d869e3023eb6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3e058a81af618b6aad52b69cb7cd0e7f23b63a20a995e8319314b50ec2e49d541b10e89da3907ec6a9139f9a486ece8f64f8690085783284e33b154240dbdcc
|
|
7
|
+
data.tar.gz: 55e00726a4912d6599f5bb75fd8bc07ec971a103cc5b95bf5395dbca1b7783a9763406da97f60ab3139b7a7f1094bce072c38278d5f25f837b5ff65d6198da3e
|
data/.rubocop_schema.yml
CHANGED
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -59,7 +59,7 @@ schema-conflicts', '~> 1.0.2'`
|
|
|
59
59
|
|
|
60
60
|
## Older versions of Ruby:
|
|
61
61
|
|
|
62
|
-
This gem only works with Ruby >= 2.
|
|
62
|
+
This gem only works with Ruby >= 2.2. Use versions 1.2.2 or below if you have an
|
|
63
63
|
old Ruby.
|
|
64
64
|
|
|
65
65
|
## Contributing
|
|
@@ -79,17 +79,21 @@ old Ruby.
|
|
|
79
79
|
- [@zoras](https://github.com/zoras)
|
|
80
80
|
- [@jensljungblad](https://github.com/jensljungblad)
|
|
81
81
|
- [@vsubramanian](https://github.com/vsubramanian)
|
|
82
|
+
- [@claytron](https://github.com/claytron)
|
|
82
83
|
|
|
83
84
|
## Releases
|
|
84
|
-
|
|
85
|
+
|
|
86
|
+
- 3.0.0
|
|
87
|
+
- Only support Ruby 2.2+ since lower versions haved reached EOL.
|
|
88
|
+
- 2.0.1
|
|
85
89
|
- Fix bug that caused failure when project directory has a space in it
|
|
86
|
-
|
|
90
|
+
- 2.0.0
|
|
87
91
|
- Allow usage of Rubocop >= 0.38.0
|
|
88
92
|
- Remove Rails 5 deprecation warnings for using alias_method_chain
|
|
89
93
|
- This upgrade breaks compatibility with Ruby 1.9x since 1.9x lacks #prepend
|
|
90
|
-
|
|
94
|
+
- 1.2.2
|
|
91
95
|
- Remove dependency on sed
|
|
92
|
-
|
|
96
|
+
- 1.2.1
|
|
93
97
|
- Upgrade Rubocop to get major performance boost
|
|
94
98
|
- Add support for sorting of extensions
|
|
95
99
|
- Fix spacing regression introduced by Rubocop upgrade
|
|
@@ -21,6 +21,7 @@ end
|
|
|
21
21
|
def reference_db_schema
|
|
22
22
|
<<-RUBY
|
|
23
23
|
# encoding: UTF-8
|
|
24
|
+
|
|
24
25
|
# This file is auto-generated from the current state of the database. Instead
|
|
25
26
|
# of editing this file, please use the migrations feature of Active Record to
|
|
26
27
|
# incrementally modify your database, and then regenerate this schema definition.
|
data/spec/test-app/db/schema.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fix-db-schema-conflicts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jake Moffatt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-03
|
|
11
|
+
date: 2017-04-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|