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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 68adb310404b799be9a7ce31b3580e3ed4da7339
4
- data.tar.gz: 45064f34cd2960f46009fedc8924fb4478ddc0a6
3
+ metadata.gz: 2e315e5775c46ac6fa1f379e072246214f4a405a
4
+ data.tar.gz: 595fe95951f639b7b4019d637101d869e3023eb6
5
5
  SHA512:
6
- metadata.gz: a33b78745c8767457af0a88415b7b2192e4ef596c5af5464cfb6cf735c13971d022e6947c47008389b20fdb1783f68f3f4ab0284a00547bd9810551888173a60
7
- data.tar.gz: dc8db5c6da65277c87764cff637ba9e5dc017d51f3069e4c4266bec672f45ec86c06bd4ade9bb87c8c8b0228f1cb16a855cf9307b452ff14ef58f9f825284864
6
+ metadata.gz: d3e058a81af618b6aad52b69cb7cd0e7f23b63a20a995e8319314b50ec2e49d541b10e89da3907ec6a9139f9a486ece8f64f8690085783284e33b154240dbdcc
7
+ data.tar.gz: 55e00726a4912d6599f5bb75fd8bc07ec971a103cc5b95bf5395dbca1b7783a9763406da97f60ab3139b7a7f1094bce072c38278d5f25f837b5ff65d6198da3e
data/.rubocop_schema.yml CHANGED
@@ -5,8 +5,7 @@ Style/ExtraSpacing:
5
5
  AllowForAlignment: false
6
6
 
7
7
  Style/NumericLiterals:
8
- Exclude:
9
- - 'db/schema.rb'
8
+ Enabled: false
10
9
 
11
10
  Style/SpaceBeforeFirstArg:
12
11
  Enabled: true
data/.travis.yml CHANGED
@@ -1,6 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
- - "2.0.0"
4
- - "2.1.0"
5
3
  - "2.2.0"
6
4
  - "2.3.0"
5
+ - "2.4.0"
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.0. Use versions 1.2.2 or below if you have an
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
- - 2.0.1
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
- - 2.0.0
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
- - 1.2.2
94
+ - 1.2.2
91
95
  - Remove dependency on sed
92
- - 1.2.1
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
@@ -1,3 +1,3 @@
1
1
  module FixDBSchemaConflicts
2
- VERSION='2.0.1'
2
+ VERSION='3.0.0'
3
3
  end
@@ -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.
@@ -1,4 +1,5 @@
1
1
  # encoding: UTF-8
2
+
2
3
  # This file is auto-generated from the current state of the database. Instead
3
4
  # of editing this file, please use the migrations feature of Active Record to
4
5
  # incrementally modify your database, and then regenerate this schema definition.
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: 2.0.1
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-15 00:00:00.000000000 Z
11
+ date: 2017-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler