baza_models 0.0.11 → 0.0.15

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.
Files changed (44) hide show
  1. checksums.yaml +5 -5
  2. data/.github/dependabot.yml +13 -0
  3. data/.rubocop.yml +134 -25
  4. data/.rubocop_todo.yml +47 -32
  5. data/.ruby-version +1 -0
  6. data/Gemfile +15 -13
  7. data/Gemfile.lock +126 -105
  8. data/Rakefile +5 -7
  9. data/VERSION +1 -1
  10. data/baza_models.gemspec +43 -55
  11. data/lib/baza_models/autoloader.rb +1 -0
  12. data/lib/baza_models/errors.rb +2 -3
  13. data/lib/baza_models/helpers/ransacker_helper.rb +2 -2
  14. data/lib/baza_models/model/belongs_to_relations.rb +1 -3
  15. data/lib/baza_models/model/has_many_relations.rb +2 -2
  16. data/lib/baza_models/model/has_one_relations.rb +2 -2
  17. data/lib/baza_models/model/manipulation.rb +20 -18
  18. data/lib/baza_models/model/queries.rb +2 -0
  19. data/lib/baza_models/model/scopes.rb +1 -0
  20. data/lib/baza_models/model/validations.rb +1 -0
  21. data/lib/baza_models/model.rb +24 -27
  22. data/lib/baza_models/query/inspector.rb +2 -0
  23. data/lib/baza_models/query/pagination.rb +5 -7
  24. data/lib/baza_models/query/sql_generator.rb +3 -3
  25. data/lib/baza_models/query.rb +16 -14
  26. data/lib/baza_models/ransacker/relationship_scanner.rb +4 -1
  27. data/lib/baza_models/ransacker.rb +3 -1
  28. data/lib/baza_models/validators/confirmation_validator.rb +1 -3
  29. data/lib/baza_models/validators/uniqueness_validator.rb +2 -4
  30. data/peak_flow.yml +4 -0
  31. data/spec/baza_models/autoloader_spec.rb +1 -1
  32. data/spec/baza_models/baza_orm_adapter_spec.rb +1 -1
  33. data/spec/baza_models/model/has_many_relations_spec.rb +1 -1
  34. data/spec/baza_models/model/manipulation_spec.rb +3 -3
  35. data/spec/baza_models/model_spec.rb +31 -4
  36. data/spec/baza_models/query_spec.rb +14 -6
  37. data/spec/factories/organization.rb +2 -2
  38. data/spec/factories/user.rb +2 -2
  39. data/spec/spec_helper.rb +3 -3
  40. data/spec/support/database_helper.rb +6 -3
  41. data/spec/test_classes/user.rb +2 -1
  42. metadata +70 -42
  43. data/shippable.yml +0 -11
  44. data/spec/baza_models_spec.rb +0 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 3de3c11b6d7e028cf0bc3c1b0f8cd8b63718499a
4
- data.tar.gz: cf06183a93093983fedf4e4adef1d1b333b626ac
2
+ SHA256:
3
+ metadata.gz: c970b9be78db46378bcb7546c7e55e1af4b863bba1bb063e038956a74e295e44
4
+ data.tar.gz: 1a6cc7175d682c9bdac060f50284df70bbf936e8a573d01f8622ed0d447fdcc9
5
5
  SHA512:
6
- metadata.gz: a72519f5547333647837c34d992c3f11e48eed797561a98c8c641a4fa56b67ebfe76c06979fc12ded41af6807b8c58007701a9ac5629a3ee71ace56e945cbe72
7
- data.tar.gz: 78916b055f54b09e554b8d90a2e82e5af2b1d8f02c46a2b798997d1d085f5bb46512b94d23cb0b18dcb73c218cf5e9ccb3e849368f674945747e083841cb0b5c
6
+ metadata.gz: 6eb01cb89f696a0a359827c8c2675c85655b2bc027482cf30e8cb4c5bc71ad05ceead7f0e62b162e4d8d71407bb2b44dc22962eff349e3c8ea4283b7ea51bf43
7
+ data.tar.gz: f80115826d04d0a21a78b6b81d079346fc6e08acf5c95fedb2e979ffa07b7b93c6f081ec617aba1438ed6e5c8050734573f3d9a082cc6fbe1bef8ad64a9699c1
@@ -0,0 +1,13 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: "/"
5
+ schedule:
6
+ interval: monthly
7
+ time: "11:00"
8
+ timezone: Europe/Copenhagen
9
+ open-pull-requests-limit: 99
10
+ ignore:
11
+ - dependency-name: rubocop
12
+ versions:
13
+ - 1.9.1
data/.rubocop.yml CHANGED
@@ -6,35 +6,118 @@ AllCops:
6
6
  Exclude:
7
7
  - db/schema.rb
8
8
  - spec/dummy/db/schema.rb
9
+ - baza_models.gemspec
10
+ NewCops: enable
11
+ TargetRubyVersion: 2.5
9
12
 
10
- # https://github.com/AtomLinter/linter-rubocop/issues/2
11
- Style/FileName:
13
+ require:
14
+ - rubocop-performance
15
+ - rubocop-rspec
16
+
17
+ Layout/AccessModifierIndentation:
18
+ EnforcedStyle: outdent
19
+
20
+ Layout/ArgumentAlignment:
21
+ EnforcedStyle: with_fixed_indentation
22
+
23
+ Layout/CaseIndentation:
24
+ EnforcedStyle: end
25
+
26
+ Layout/EmptyLines:
12
27
  Enabled: false
13
28
 
14
- # Metrics/CyclomaticComplexity:
15
- # Max: 10
29
+ Layout/EmptyLinesAroundAttributeAccessor:
30
+ Enabled: true
31
+
32
+ Layout/EmptyLinesAroundArguments:
33
+ Enabled: false
34
+
35
+ Layout/EndAlignment:
36
+ EnforcedStyleAlignWith: variable
16
37
 
17
- Metrics/LineLength:
38
+ Layout/LineLength:
18
39
  Max: 160
19
40
 
20
- # Metrics/MethodLength:
21
- # Max: 50
41
+ Layout/MultilineMethodCallIndentation:
42
+ EnforcedStyle: indented
43
+
44
+ Layout/MultilineOperationIndentation:
45
+ EnforcedStyle: indented
46
+
47
+ Layout/ParameterAlignment:
48
+ EnforcedStyle: with_fixed_indentation
49
+
50
+ Layout/SpaceAroundMethodCallOperator:
51
+ Enabled: true
52
+
53
+ Layout/SpaceInsideHashLiteralBraces:
54
+ EnforcedStyle: no_space
55
+
56
+ Lint/DeprecatedOpenSSLConstant:
57
+ Enabled: true
58
+
59
+ Lint/MissingSuper:
60
+ Enabled: false
61
+
62
+ Lint/MixedRegexpCaptureTypes:
63
+ Enabled: true
64
+
65
+ Lint/RaiseException:
66
+ Enabled: true
67
+
68
+ Lint/StructNewOverride:
69
+ Enabled: true
22
70
 
23
71
  # Metrics/AbcSize:
24
72
  # Max: 25
25
73
 
74
+ Metrics/BlockLength:
75
+ Enabled: false
76
+
26
77
  # Metrics/ClassLength:
27
- # Max: 250
78
+ # $ Max: 250
79
+
80
+ # Metrics/CyclomaticComplexity:
81
+ # Max: 10
28
82
 
29
- # .find_each is not the same as .each
30
- Rails/FindEach:
83
+ # Metrics/MethodLength:
84
+ # Max: 50
85
+
86
+ # Metrics/PerceivedComplexity:
87
+ # Max: 10
88
+
89
+ RSpec/AnyInstance:
31
90
  Enabled: false
32
91
 
33
- Style/AccessModifierIndentation:
34
- EnforcedStyle: outdent
92
+ RSpec/ContextWording:
93
+ Enabled: false
35
94
 
36
- Style/AlignParameters:
37
- EnforcedStyle: with_fixed_indentation
95
+ RSpec/DescribeClass:
96
+ Enabled: false
97
+
98
+ RSpec/DescribedClass:
99
+ Enabled: false
100
+
101
+ RSpec/ExampleLength:
102
+ Enabled: false
103
+
104
+ RSpec/LetSetup:
105
+ Enabled: false
106
+
107
+ RSpec/MessageSpies:
108
+ Enabled: false
109
+
110
+ RSpec/MultipleExpectations:
111
+ Enabled: false
112
+
113
+ RSpec/NamedSubject:
114
+ Enabled: false
115
+
116
+ RSpec/NestedGroups:
117
+ Enabled: false
118
+
119
+ Style/CaseLikeIf:
120
+ Enabled: false
38
121
 
39
122
  Style/ClassAndModuleChildren:
40
123
  EnforcedStyle: compact
@@ -45,18 +128,45 @@ Style/ConditionalAssignment:
45
128
  Style/Documentation:
46
129
  Enabled: false
47
130
 
48
- Style/EmptyLines:
131
+ Style/ExponentialNotation:
132
+ Enabled: true
133
+
134
+ Style/FrozenStringLiteralComment:
49
135
  Enabled: false
50
136
 
51
137
  # Will report offences for many places that are much more readable without using a guard clause
52
138
  Style/GuardClause:
53
139
  Enabled: false
54
140
 
55
- Style/MultilineMethodCallIndentation:
56
- EnforcedStyle: indented
141
+ Style/HashEachMethods:
142
+ Enabled: true
57
143
 
58
- Style/MultilineOperationIndentation:
59
- EnforcedStyle: indented
144
+ Style/HashTransformKeys:
145
+ Enabled: true
146
+
147
+ Style/HashTransformValues:
148
+ Enabled: true
149
+
150
+ Style/Lambda:
151
+ Enabled: false
152
+
153
+ Style/LambdaCall:
154
+ Enabled: false
155
+
156
+ Style/MultipleComparison:
157
+ Enabled: false
158
+
159
+ Style/RedundantFetchBlock:
160
+ Enabled: true
161
+
162
+ Style/RedundantRegexpCharacterClass:
163
+ Enabled: true
164
+
165
+ Style/RedundantRegexpEscape:
166
+ Enabled: true
167
+
168
+ Style/RegexpLiteral:
169
+ Enabled: false
60
170
 
61
171
  Style/StringLiterals:
62
172
  EnforcedStyle: double_quotes
@@ -70,16 +180,15 @@ Style/NilComparison:
70
180
  Style/SignalException:
71
181
  EnforcedStyle: only_raise
72
182
 
73
- Style/MultilineOperationIndentation:
74
- EnforcedStyle: indented
183
+ Style/SlicingWithRange:
184
+ Enabled: true
75
185
 
76
- Style/SpaceInsideHashLiteralBraces:
77
- EnforcedStyle: no_space
186
+ Style/SymbolArray:
187
+ Enabled: false
78
188
 
79
189
  Style/TrivialAccessors:
80
190
  ExactNameMatch: true
81
191
  Enabled: true
82
192
 
83
- # Disabled on purpose: https://github.com/bbatsov/rubocop/issues/1758
84
- Style/ClosingParenthesisIndentation:
193
+ Style/WordArray:
85
194
  Enabled: false
data/.rubocop_todo.yml CHANGED
@@ -1,68 +1,83 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2016-04-06 18:56:17 +0200 using RuboCop version 0.37.0.
3
+ # on 2019-10-20 06:56:57 +0000 using RuboCop version 0.75.1.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
+ # Offense count: 2
10
+ Layout/ConditionPosition:
11
+ Exclude:
12
+ - 'lib/baza_models/query.rb'
13
+ - 'lib/baza_models/ransacker.rb'
14
+
15
+ # Offense count: 2
16
+ Lint/DuplicateMethods:
17
+ Exclude:
18
+ - 'lib/baza_models/model.rb'
19
+
9
20
  # Offense count: 2
10
21
  Lint/IneffectiveAccessModifier:
11
22
  Exclude:
12
23
  - 'lib/baza_models/model.rb'
13
24
 
14
- # Offense count: 7
25
+ # Offense count: 6
15
26
  Metrics/AbcSize:
16
- Max: 44
27
+ Max: 45
17
28
 
18
29
  # Offense count: 2
19
30
  # Configuration parameters: CountComments.
20
31
  Metrics/ClassLength:
21
- Max: 386
32
+ Max: 385
22
33
 
23
34
  # Offense count: 1
24
35
  Metrics/CyclomaticComplexity:
25
36
  Max: 15
26
37
 
27
- # Offense count: 2
28
- # Configuration parameters: CountComments.
38
+ # Offense count: 1
39
+ # Configuration parameters: CountComments, ExcludedMethods.
29
40
  Metrics/MethodLength:
30
- Max: 74
41
+ Max: 63
31
42
 
32
- # Offense count: 7
43
+ # Offense count: 4
33
44
  Metrics/PerceivedComplexity:
34
45
  Max: 21
35
46
 
36
- # Offense count: 2
37
- # Cop supports --auto-correct.
38
- Style/MultilineIfThen:
47
+ # Offense count: 1
48
+ # Configuration parameters: EnforcedStyleForLeadingUnderscores.
49
+ # SupportedStylesForLeadingUnderscores: disallowed, required, optional
50
+ Naming/MemoizedInstanceVariableName:
39
51
  Exclude:
40
- - 'baza_models.gemspec'
52
+ - 'lib/baza_models/model/validations.rb'
41
53
 
42
- # Offense count: 42
43
- # Cop supports --auto-correct.
44
- # Configuration parameters: PreferredDelimiters.
45
- Style/PercentLiteralDelimiters:
54
+ # Offense count: 1
55
+ # Configuration parameters: CustomIncludeMethods.
56
+ RSpec/EmptyExampleGroup:
46
57
  Exclude:
47
- - 'baza_models.gemspec'
58
+ - 'spec/baza_models_spec.rb'
48
59
 
49
- # Offense count: 1
50
- # Cop supports --auto-correct.
51
- # Configuration parameters: EnforcedStyle, SupportedStyles, ConsistentQuotesInMultiline.
52
- # SupportedStyles: single_quotes, double_quotes
53
- Style/StringLiterals:
54
- Enabled: false
60
+ # Offense count: 4
61
+ # Configuration parameters: CustomTransform, IgnoreMethods.
62
+ RSpec/FilePath:
63
+ Exclude:
64
+ - 'spec/baza_models/baza_orm_adapter_spec.rb'
65
+ - 'spec/baza_models/model/delgation_spec.rb'
66
+ - 'spec/baza_models/model/translate_functionality_spec.rb'
67
+ - 'spec/baza_models/ransacker_spec.rb'
55
68
 
56
- # Offense count: 1
57
- # Cop supports --auto-correct.
58
- # Configuration parameters: EnforcedStyle, SupportedStyles.
59
- # SupportedStyles: final_newline, final_blank_line
60
- Style/TrailingBlankLines:
69
+ # Offense count: 2
70
+ Style/MissingRespondToMissing:
61
71
  Exclude:
62
- - 'baza_models.gemspec'
72
+ - 'lib/baza_models/model.rb'
73
+ - 'lib/baza_models/query.rb'
63
74
 
64
- # Offense count: 42
75
+ # Offense count: 2
65
76
  # Cop supports --auto-correct.
66
- Style/UnneededPercentQ:
77
+ # Configuration parameters: AutoCorrect, EnforcedStyle, IgnoredMethods.
78
+ # SupportedStyles: predicate, comparison
79
+ Style/NumericPredicate:
67
80
  Exclude:
68
- - 'baza_models.gemspec'
81
+ - 'spec/**/*'
82
+ - 'lib/baza_models/model.rb'
83
+ - 'lib/baza_models/query.rb'
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.7.4
data/Gemfile CHANGED
@@ -3,22 +3,24 @@ source "http://rubygems.org"
3
3
  # Example:
4
4
  # gem "activesupport", ">= 2.3.5"
5
5
 
6
- gem "array_enumerator", ">= 0.0.10"
7
- gem "auto_autoloader", ">= 0.0.1"
8
- gem "baza", "~> 0.0.21"
9
- gem "html_gen", ">= 0.0.12", require: false
10
- gem "simple_delegate", ">= 0.0.2"
11
- gem "string-cases", ">= 0.0.3"
6
+ gem "array_enumerator"
7
+ gem "auto_autoloader"
8
+ gem "baza", git: "https://github.com/kaspernj/baza.git"
9
+ gem "html_gen", require: false
10
+ gem "simple_delegate"
11
+ gem "string-cases"
12
12
 
13
13
  group :development, :test do
14
- gem "best_practice_project", require: false, github: "kaspernj/best_practice_project"
15
- gem "bundler", "~> 1.0"
16
- gem "factory_girl"
14
+ gem "best_practice_project", require: false
15
+ gem "bundler"
16
+ gem "factory_bot"
17
17
  gem "jdbc-sqlite3", platform: :jruby
18
- gem "jeweler", "2.3.6"
18
+ gem "juwelier"
19
19
  gem "orm_adapter", require: false
20
- gem "rdoc", "~> 3.12"
21
- gem "rspec", "3.6.0"
22
- gem "rubocop", "0.37.0", require: false
20
+ gem "rdoc"
21
+ gem "rspec"
22
+ gem "rubocop", require: false
23
+ gem "rubocop-performance", require: false
24
+ gem "rubocop-rspec", require: false
23
25
  gem "sqlite3", platform: :ruby
24
26
  end
data/Gemfile.lock CHANGED
@@ -1,150 +1,171 @@
1
1
  GIT
2
- remote: git://github.com/kaspernj/best_practice_project.git
3
- revision: c83ad748c63928b446c45e6ba50caabaf7af8714
2
+ remote: https://github.com/kaspernj/baza.git
3
+ revision: 67f9172f4c618ad092173269fd25dff41d3a646a
4
4
  specs:
5
- best_practice_project (0.0.9)
6
- auto_autoloader
7
-
8
- GEM
9
- remote: http://rubygems.org/
10
- specs:
11
- activesupport (4.2.4)
12
- i18n (~> 0.7)
13
- json (~> 1.7, >= 1.7.7)
14
- minitest (~> 5.1)
15
- thread_safe (~> 0.3, >= 0.3.4)
16
- tzinfo (~> 1.1)
17
- addressable (2.4.0)
18
- array_enumerator (0.0.10)
19
- ast (2.2.0)
20
- auto_autoloader (0.0.4)
21
- string-cases
22
- baza (0.0.21)
5
+ baza (0.0.37)
23
6
  array_enumerator (~> 0.0.10)
24
- auto_autoloader (~> 0.0.1)
7
+ auto_autoloader (~> 0.0.5)
25
8
  datet (~> 0.0.25)
26
9
  event_handler (~> 0.0.0)
27
10
  simple_delegate (~> 0.0.2)
28
11
  string-cases (~> 0.0.4)
29
12
  wref (~> 0.0.8)
13
+
14
+ GEM
15
+ remote: http://rubygems.org/
16
+ specs:
17
+ activesupport (6.1.3.2)
18
+ concurrent-ruby (~> 1.0, >= 1.0.2)
19
+ i18n (>= 1.6, < 2)
20
+ minitest (>= 5.1)
21
+ tzinfo (~> 2.0)
22
+ zeitwerk (~> 2.3)
23
+ addressable (2.8.0)
24
+ public_suffix (>= 2.0.2, < 5.0)
25
+ array_enumerator (0.0.10)
26
+ ast (2.4.2)
27
+ auto_autoloader (0.0.5)
28
+ string-cases
29
+ best_practice_project (0.0.11)
30
+ auto_autoloader (>= 0.0.5)
30
31
  builder (3.2.3)
32
+ concurrent-ruby (1.1.8)
31
33
  datet (0.0.25)
32
34
  descendants_tracker (0.0.4)
33
35
  thread_safe (~> 0.3, >= 0.3.1)
34
- diff-lcs (1.3)
36
+ diff-lcs (1.4.4)
35
37
  event_handler (0.0.0)
36
- factory_girl (4.5.0)
37
- activesupport (>= 3.0.0)
38
- faraday (0.9.2)
38
+ factory_bot (6.2.0)
39
+ activesupport (>= 5.0.0)
40
+ faraday (0.17.0)
39
41
  multipart-post (>= 1.2, < 3)
40
- git (1.3.0)
41
- github_api (0.16.0)
42
- addressable (~> 2.4.0)
42
+ git (1.5.0)
43
+ github_api (0.18.2)
44
+ addressable (~> 2.4)
43
45
  descendants_tracker (~> 0.0.4)
44
- faraday (~> 0.8, < 0.10)
45
- hashie (>= 3.4)
46
- mime-types (>= 1.16, < 3.0)
46
+ faraday (~> 0.8)
47
+ hashie (~> 3.5, >= 3.5.2)
47
48
  oauth2 (~> 1.0)
48
- hashie (3.5.5)
49
- highline (1.7.8)
50
- html_gen (0.0.12)
49
+ hashie (3.6.0)
50
+ highline (2.0.3)
51
+ html_gen (0.0.16)
51
52
  string-cases
52
- i18n (0.7.0)
53
- jar-dependencies (0.3.11)
54
- jdbc-sqlite3 (3.8.10.1)
55
- jeweler (2.3.6)
53
+ i18n (1.8.10)
54
+ concurrent-ruby (~> 1.0)
55
+ jar-dependencies (0.4.0)
56
+ jdbc-sqlite3 (3.28.0)
57
+ juwelier (2.4.9)
56
58
  builder
57
- bundler (>= 1)
58
- git (>= 1.2.5)
59
- github_api (~> 0.16.0)
60
- highline (>= 1.6.15)
61
- nokogiri (>= 1.5.10)
62
- psych (~> 2.2)
59
+ bundler
60
+ git
61
+ github_api
62
+ highline
63
+ kamelcase (~> 0)
64
+ nokogiri
65
+ psych
63
66
  rake
64
67
  rdoc
65
68
  semver2
66
- json (1.8.6)
67
- json (1.8.6-java)
68
- jwt (1.5.6)
69
- mime-types (2.99.3)
70
- mini_portile2 (2.2.0)
71
- minitest (5.8.0)
72
- multi_json (1.12.1)
69
+ jwt (2.2.1)
70
+ kamelcase (0.0.2)
71
+ semver2 (~> 3)
72
+ mini_portile2 (2.6.1)
73
+ minitest (5.14.4)
74
+ multi_json (1.14.1)
73
75
  multi_xml (0.6.0)
74
- multipart-post (2.0.0)
75
- nokogiri (1.8.0)
76
- mini_portile2 (~> 2.2.0)
77
- nokogiri (1.8.0-java)
78
- oauth2 (1.3.1)
79
- faraday (>= 0.8, < 0.12)
80
- jwt (~> 1.0)
76
+ multipart-post (2.1.1)
77
+ nokogiri (1.12.5)
78
+ mini_portile2 (~> 2.6.1)
79
+ racc (~> 1.4)
80
+ nokogiri (1.12.5-java)
81
+ racc (~> 1.4)
82
+ oauth2 (1.4.2)
83
+ faraday (>= 0.8, < 2.0)
84
+ jwt (>= 1.0, < 3.0)
81
85
  multi_json (~> 1.3)
82
86
  multi_xml (~> 0.5)
83
87
  rack (>= 1.2, < 3)
84
88
  orm_adapter (0.5.0)
85
- parser (2.3.0.2)
86
- ast (~> 2.2)
87
- powerpack (0.1.1)
88
- psych (2.2.4)
89
- psych (2.2.4-java)
89
+ parallel (1.21.0)
90
+ parser (3.0.2.0)
91
+ ast (~> 2.4.1)
92
+ psych (3.1.0)
93
+ psych (3.1.0-java)
90
94
  jar-dependencies (>= 0.1.7)
91
- rack (2.0.3)
92
- rainbow (2.1.0)
93
- rake (12.0.0)
94
- rdoc (3.12.2)
95
- json (~> 1.4)
96
- rspec (3.6.0)
97
- rspec-core (~> 3.6.0)
98
- rspec-expectations (~> 3.6.0)
99
- rspec-mocks (~> 3.6.0)
100
- rspec-core (3.6.0)
101
- rspec-support (~> 3.6.0)
102
- rspec-expectations (3.6.0)
95
+ public_suffix (4.0.6)
96
+ racc (1.5.2)
97
+ racc (1.5.2-java)
98
+ rack (2.2.3)
99
+ rainbow (3.0.0)
100
+ rake (13.0.0)
101
+ rdoc (6.3.2)
102
+ regexp_parser (2.1.1)
103
+ rexml (3.2.5)
104
+ rspec (3.10.0)
105
+ rspec-core (~> 3.10.0)
106
+ rspec-expectations (~> 3.10.0)
107
+ rspec-mocks (~> 3.10.0)
108
+ rspec-core (3.10.0)
109
+ rspec-support (~> 3.10.0)
110
+ rspec-expectations (3.10.0)
103
111
  diff-lcs (>= 1.2.0, < 2.0)
104
- rspec-support (~> 3.6.0)
105
- rspec-mocks (3.6.0)
112
+ rspec-support (~> 3.10.0)
113
+ rspec-mocks (3.10.0)
106
114
  diff-lcs (>= 1.2.0, < 2.0)
107
- rspec-support (~> 3.6.0)
108
- rspec-support (3.6.0)
109
- rubocop (0.37.0)
110
- parser (>= 2.3.0.2, < 3.0)
111
- powerpack (~> 0.1)
112
- rainbow (>= 1.99.1, < 3.0)
115
+ rspec-support (~> 3.10.0)
116
+ rspec-support (3.10.0)
117
+ rubocop (1.22.0)
118
+ parallel (~> 1.10)
119
+ parser (>= 3.0.0.0)
120
+ rainbow (>= 2.2.2, < 4.0)
121
+ regexp_parser (>= 1.8, < 3.0)
122
+ rexml
123
+ rubocop-ast (>= 1.12.0, < 2.0)
113
124
  ruby-progressbar (~> 1.7)
114
- unicode-display_width (~> 0.3)
115
- ruby-progressbar (1.7.5)
125
+ unicode-display_width (>= 1.4.0, < 3.0)
126
+ rubocop-ast (1.12.0)
127
+ parser (>= 3.0.1.1)
128
+ rubocop-performance (1.11.5)
129
+ rubocop (>= 1.7.0, < 2.0)
130
+ rubocop-ast (>= 0.4.0)
131
+ rubocop-rspec (2.5.0)
132
+ rubocop (~> 1.19)
133
+ ruby-progressbar (1.11.0)
116
134
  semver2 (3.4.2)
117
135
  simple_delegate (0.0.2)
118
- sqlite3 (1.3.10)
136
+ sqlite3 (1.4.2)
119
137
  string-cases (0.0.4)
120
- thread_safe (0.3.5)
121
- thread_safe (0.3.5-java)
122
- tzinfo (1.2.2)
123
- thread_safe (~> 0.1)
124
- unicode-display_width (0.3.1)
138
+ thread_safe (0.3.6)
139
+ thread_safe (0.3.6-java)
140
+ tzinfo (2.0.4)
141
+ concurrent-ruby (~> 1.0)
142
+ unicode-display_width (2.1.0)
125
143
  wref (0.0.8)
144
+ zeitwerk (2.4.2)
126
145
 
127
146
  PLATFORMS
128
147
  java
129
148
  ruby
130
149
 
131
150
  DEPENDENCIES
132
- array_enumerator (>= 0.0.10)
133
- auto_autoloader (>= 0.0.1)
134
- baza (~> 0.0.21)
135
- best_practice_project!
136
- bundler (~> 1.0)
137
- factory_girl
138
- html_gen (>= 0.0.12)
151
+ array_enumerator
152
+ auto_autoloader
153
+ baza!
154
+ best_practice_project
155
+ bundler
156
+ factory_bot
157
+ html_gen
139
158
  jdbc-sqlite3
140
- jeweler (= 2.3.6)
159
+ juwelier
141
160
  orm_adapter
142
- rdoc (~> 3.12)
143
- rspec (= 3.6.0)
144
- rubocop (= 0.37.0)
145
- simple_delegate (>= 0.0.2)
161
+ rdoc
162
+ rspec
163
+ rubocop
164
+ rubocop-performance
165
+ rubocop-rspec
166
+ simple_delegate
146
167
  sqlite3
147
- string-cases (>= 0.0.3)
168
+ string-cases
148
169
 
149
170
  BUNDLED WITH
150
- 1.16.1
171
+ 2.2.28