database_consistency 1.7.3 → 1.7.5

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
  SHA256:
3
- metadata.gz: 206fe7e1ee1028de91d489b10d455e21685383c654fbcfbc4d4e2547d602d3f4
4
- data.tar.gz: ed3ec0dcdc367e7a666546c5021467d5b30e09675d10db57ef736c3ba608d967
3
+ metadata.gz: c2d7b47374ed7eb17980a23c56cda142a19c6d3e796f70d9c0fbc737da3e7b6d
4
+ data.tar.gz: 369df7a14b6f5550b598162177c8915a1615e0df63eed590d74be43eb3145f7d
5
5
  SHA512:
6
- metadata.gz: 254f03f91c90fc4ee1a079ecd467455be99ad3dedbe3703fb2bf3151b1b17e1d01c3b4bc7eb4db43bea685431ffde768c6c48c0e2e9754358b9157640c3e5592
7
- data.tar.gz: 7e8a87dd238595b25a8040d5196d0c214fc61a12f933d708473445e297d87f6d06f84351245dac4588bdd6a4f69abd2c6e48c8a2bce2deef053ac6e98b61d1a3
6
+ metadata.gz: a7b0139cf11940e9ce879fe06d788e15e5c6a7c8f3bcd8a9483267a656e3f14977f7cf1e1f8586ca8ce70482d5a2f325214c457b2c055e5d8a590c0e9ea66031
7
+ data.tar.gz: 103e78babcc811497dcfa70cac0f3285e430e79611efa44dec94070c9b5601c9dbf461e560002f723bde1c7e26ae2d7e2641840f1ecca23dc6c8e7e70f153e75
@@ -7,7 +7,7 @@ default_config = DatabaseConsistency::Configuration::DEFAULT_PATH
7
7
  if ARGV.include?('install')
8
8
  require 'pathname'
9
9
 
10
- file_exists = File.exists?(default_config)
10
+ file_exists = File.exist?(default_config)
11
11
  rules = Pathname.new(__FILE__).dirname.join('..', 'lib', 'database_consistency', 'templates', 'rails_defaults.yml').read
12
12
  if file_exists && File.foreach(default_config).grep(Regexp.new(rules.lines.first.chomp)).any?
13
13
  puts "#{default_config} is already present"
@@ -36,8 +36,8 @@ module DatabaseConsistency
36
36
 
37
37
  # Return list of not inherited models
38
38
  def parent_models
39
- models.group_by(&:table_name).each_value.map do |models|
40
- models.min_by { |model| models.include?(model.superclass) ? 1 : 0 }
39
+ models.group_by(&:table_name).each_value.flat_map do |models|
40
+ models.reject { |model| models.include?(model.superclass) }
41
41
  end
42
42
  end
43
43
 
@@ -16,7 +16,7 @@ module DatabaseConsistency
16
16
  end
17
17
 
18
18
  def initialize
19
- puts 'Hey, some of checks fail with an error, please open an issue on github at https://github.com/djezzzl/database_consistency.'
19
+ puts 'Hey, some checks fail with an error, please open an issue on github at https://github.com/djezzzl/database_consistency.'
20
20
  puts "Attach the created file: #{filename}"
21
21
  puts 'Thank you, for your contribution!'
22
22
  puts '(c) Evgeniy Demin <lawliet.djez@gmail.com>'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DatabaseConsistency
4
- VERSION = '1.7.3'
4
+ VERSION = '1.7.5'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: database_consistency
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.3
4
+ version: 1.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evgeniy Demin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-12 00:00:00.000000000 Z
11
+ date: 2023-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -262,7 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
262
262
  - !ruby/object:Gem::Version
263
263
  version: '0'
264
264
  requirements: []
265
- rubygems_version: 3.2.33
265
+ rubygems_version: 3.1.6
266
266
  signing_key:
267
267
  specification_version: 4
268
268
  summary: Provide an easy way to check the consistency of the database constraints