simplycop 1.11.0 → 1.12.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
  SHA256:
3
- metadata.gz: 931184d38bc368e3dd104e118681d39da16b01906d2e3821203e13ab92d4a42c
4
- data.tar.gz: 2f544d5c8ea7ea65d1dfd0b63369dc59d955d6db55f0af79e9c4f6ff58aa1fef
3
+ metadata.gz: 04bc5ffd6bb383b44e116cea89ed9210c0cb836ffc45cd02468bb148f7857437
4
+ data.tar.gz: 12921bf54b6d0d10ff4bd3ff5ebddae025476b55c2f166d49c26b066bb88f225
5
5
  SHA512:
6
- metadata.gz: dad9f1e435b539bea066f0b8007c43b13be1262ccc82fb7984eab83029f52a63660a7cc5a9b5d196be40b1f5185dfa0209fa8f9481be767b438310f2c8e590af
7
- data.tar.gz: b0d917f28147c32ce184a988b994d55bf2408e284baa8cc6302181f804244d7fa454ae0c28982a224b485800cee3c026f4b491c0fc369db08ef334ac3f14353f
6
+ metadata.gz: 88d9b9612dba9b3710c109bd504cf9cb3471cf2dff06a308551fbdea26ed45abbebc7eb16350cbb0197c70f7627b3bbb7a229d0ba58a3cb148e475a141ef19f9
7
+ data.tar.gz: 227fd10a49bdba38b09fafe61e566a1bd4e6bcdeace81e5079e04156c3b0c2b028ee15a35904054adc68b9f8ea11408f0fdc1eb89dbc77101b486c96b6923d08
data/.simplycop.yml CHANGED
@@ -313,3 +313,48 @@ Style/WordArray:
313
313
 
314
314
  Style/ZeroLengthPredicate:
315
315
  Enabled: true
316
+
317
+ Gemspec/DeprecatedAttributeAssignment: # new in 1.30
318
+ Enabled: true
319
+
320
+ Lint/ConstantOverwrittenInRescue: # new in 1.31
321
+ Enabled: true
322
+
323
+ Lint/EmptyInPattern: # new in 1.16
324
+ Enabled: true
325
+
326
+ Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
327
+ Enabled: true
328
+
329
+ Naming/BlockForwarding: # new in 1.24
330
+ Enabled: true
331
+
332
+ Style/EmptyHeredoc: # new in 1.32
333
+ Enabled: true
334
+
335
+ Style/FileRead: # new in 1.24
336
+ Enabled: true
337
+
338
+ Style/InPatternThen: # new in 1.16
339
+ Enabled: true
340
+
341
+ Style/MagicCommentFormat: # new in 1.35
342
+ Enabled: true
343
+
344
+ Style/MapCompactWithConditionalBlock: # new in 1.30
345
+ Enabled: true
346
+
347
+ Style/MultilineInPatternThen: # new in 1.16
348
+ Enabled: true
349
+
350
+ Style/NestedFileDirname: # new in 1.26
351
+ Enabled: true
352
+
353
+ Style/NumberedParameters: # new in 1.22
354
+ Enabled: true
355
+
356
+ Style/NumberedParametersLimit: # new in 1.22
357
+ Enabled: true
358
+
359
+ Style/ObjectThen: # new in 1.28
360
+ Enabled: true
data/.simplycop_rails.yml CHANGED
@@ -61,3 +61,42 @@ Rails/WhereExists:
61
61
  # Conflicts with Mongoid
62
62
  Rails/WhereNot:
63
63
  Enabled: false
64
+
65
+ Rails/ActionControllerTestCase: # new in 2.14
66
+ Enabled: true
67
+
68
+ Rails/AddColumnIndex: # new in 2.11
69
+ Enabled: true
70
+
71
+ Rails/DotSeparatedKeys: # new in 2.15
72
+ Enabled: true
73
+
74
+ Rails/DuplicateAssociation: # new in 2.14
75
+ Enabled: true
76
+
77
+ Rails/DuplicateScope: # new in 2.14
78
+ Enabled: true
79
+
80
+ Rails/EagerEvaluationLogMessage: # new in 2.11
81
+ Enabled: true
82
+
83
+ Rails/ExpandedDateRange: # new in 2.11
84
+ Enabled: true
85
+
86
+ Rails/I18nLazyLookup: # new in 2.14
87
+ Enabled: true
88
+
89
+ Rails/MigrationClassName: # new in 2.14
90
+ Enabled: true
91
+
92
+ Rails/RedundantTravelBack: # new in 2.12
93
+ Enabled: true
94
+
95
+ Rails/ToFormattedS: # new in 2.15
96
+ Enabled: true
97
+
98
+ Rails/TransactionExitStatement: # new in 2.14
99
+ Enabled: true
100
+
101
+ Rails/UnusedIgnoredColumns: # new in 2.11
102
+ Enabled: true
data/.simplycop_rspec.yml CHANGED
@@ -46,3 +46,9 @@ RSpec/ScatteredSetup:
46
46
 
47
47
  RSpec/StubbedMock:
48
48
  Enabled: false
49
+
50
+ RSpec/SubjectDeclaration: # new in 2.5
51
+ Enabled: true
52
+
53
+ RSpec/Rails/AvoidSetupHook: # new in 2.4
54
+ Enabled: true
@@ -5,7 +5,7 @@ module Security
5
5
  def self.read_file
6
6
  gem_path = File.expand_path("#{File.dirname(__FILE__)}../../../../")
7
7
 
8
- file = File.open("#{gem_path}/vuln_db.json", "r").read.strip
8
+ file = File.read("#{gem_path}/vuln_db.json").strip
9
9
  json = JSON.parse(file)
10
10
  json["vulnerabilities"]["rails"]
11
11
  end
@@ -7,5 +7,5 @@
7
7
  #
8
8
 
9
9
  module Simplycop
10
- VERSION = '1.11.0'
10
+ VERSION = '1.12.0'
11
11
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplycop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simply Business
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-15 00:00:00.000000000 Z
11
+ date: 2022-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop