nexus_seed 0.2.25 → 0.2.27

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
  SHA256:
3
- metadata.gz: 9696fb995f9db4c8fe794820dd6009c0764e51e90e9fa8ff3f821c1a54289af7
4
- data.tar.gz: 73f41764bb89a238e77d2c22c2d03c5f05cf98bdb755368ebfb093eb94e35e1b
3
+ metadata.gz: 10a4071b4370495eae1bf94723147e7ae1df6098ce9da84e74c5965fcb46e337
4
+ data.tar.gz: 6f0362b861e4e188509a949292bb55c8867450b05d395ffbdd29c82447386aa0
5
5
  SHA512:
6
- metadata.gz: 394156bfedc0bcc0f37d4098a9ca15f59d7ff4f5fa3e9644e5708519b178fa295e6ddd48821be616513f69801a6e10e2fbb51340f7ea5bbc955ea1dc53a515ed
7
- data.tar.gz: 9aa54207b8f72ab0a22b8aac1e8e6a75d4f624a3a03b98883fde5a81443bba711e7191bfa249d026ccfc04480ea577add3eb0ccc2ba85a0fd2e4f7f008868f6c
6
+ metadata.gz: da88032044fa1f7408cf5d84896593ac000f22e0cc3c3a8a1d98989d73c9d1bd289a2c38ee902680c5868882ac7706c1bc88337f6a99f54befd461318b762719
7
+ data.tar.gz: 6232467beb785d78b25c2a78c0f22802031b416dcb76d62d08ce9db69f6e0078dba48c81f71d59e8ebc4aa7c8396f0f1a6327eca0f0179adfd4a0f6a5ef864e2
data/.rubocop.yml CHANGED
@@ -8,4 +8,8 @@ Style/ConditionalAssignment:
8
8
  Style/GlobalVars:
9
9
  Enabled: false
10
10
  Style/FrozenStringLiteralComment:
11
- Enabled: false
11
+ Enabled: false
12
+
13
+ AllCops:
14
+ Exclude:
15
+ - 'examples/*'
@@ -43,7 +43,7 @@ module NexusSeed
43
43
 
44
44
  logger.info('SEED REPORT:')
45
45
  NexusSeed::Builders.constants.select do |c|
46
- NexusSeed::Builders.const_get(c).is_a?(Class)
46
+ next unless NexusSeed::Builders.const_get(c).is_a?(Class)
47
47
  k = NexusSeed::Builders.const_get(c).new.send(:klass)
48
48
  if @counts.key?(k.name.demodulize) && @counts[k.name.demodulize] != k.count
49
49
  total += (k.count - @counts[k.name.demodulize])
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module NexusSeed
3
- # Leave this as 0.2.25 in order for CI process to replace with the tagged version.
4
- VERSION = '0.2.25'
3
+ # Leave this as 0.2.27 in order for CI process to replace with the tagged version.
4
+ VERSION = '0.2.27'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nexus_seed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.25
4
+ version: 0.2.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Johnathon Harris