tr4n5l4te 0.1.16 → 0.1.17

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: 36cc633a722c4f250064a18b755c8a67e9e52e3935b0d05d7a413583fa0bad4a
4
- data.tar.gz: a459bef2bb3d9b4cdf4d64a86bc7230581fc9d9194b73dc0b1d3b2ea2767044a
3
+ metadata.gz: c6b69aeaea5cf69583a1638d33142a030d45a14f0edfc1ad381af1a3ef6c683e
4
+ data.tar.gz: 95744b495e3969b2964001ab5a7c3ced68f2fc0efcb339864de25f4b2c95c0b3
5
5
  SHA512:
6
- metadata.gz: 79f8d6c5378c82119f7317504295416921366f3c775ed8d58f0c59a6ab93965bd0c98547582710938318b622a21387027cea1dd169e1fe31c80dca61589ba870
7
- data.tar.gz: 747f4f23e2a5daeb8fb9e9045c6fc6600f6d22be8808a611f20f549afea0d176c8dfaaf4f64c4c511b3409ef2ca5bdc9d55445fd9f05ed9ef54aa41bda1d6c5c
6
+ metadata.gz: aa2e68b9b86cbe35c65d070264dfc16e5db1159e8c9357b567cb1a343e76ea9bcc3e457a480e58e172c6f13fa23a791f46de39324d7eff78b967aaa3b932d0a3
7
+ data.tar.gz: 716e133bc935b33f7c79270b7163a8746bb4488835e1f892ad66654fe899cced80b04fb51d3f8bdda7225dea3f5dd53236390772774eaf551b4410d4846f7e67
data/.rubocop.yml CHANGED
@@ -1,5 +1,10 @@
1
+ require:
2
+ - rubocop-factory_bot
3
+ - rubocop-rspec
4
+ - rubocop-rails
5
+
1
6
  AllCops:
2
- TargetRubyVersion: 2.4
7
+ TargetRubyVersion: 3.2
3
8
 
4
9
  Include:
5
10
  - '**/*.gemspec'
@@ -24,11 +29,12 @@ AllCops:
24
29
  - 'bin/**/*'
25
30
  - 'node_modules/**/*'
26
31
  - 'features/step_definitions/*'
27
- - 'config/deploy.rb'
28
- - 'config/deploy/**/*.rb'
32
+ - 'app/views/**/*.jbuilder'
33
+
34
+ NewCops: enable
29
35
 
30
36
  # Checks formatting of special comments
31
- CommentAnnotation:
37
+ Style/CommentAnnotation:
32
38
  Keywords:
33
39
  - TODO
34
40
  - FIXME
@@ -96,16 +102,28 @@ Layout/ParameterAlignment:
96
102
  Layout/ArgumentAlignment:
97
103
  EnforcedStyle: with_fixed_indentation
98
104
 
105
+ Layout/HashAlignment:
106
+ Enabled: false
107
+ EnforcedColonStyle: key
108
+ EnforcedHashRocketStyle: table
109
+
99
110
  Layout/AssignmentIndentation:
100
111
  Enabled: false
101
112
 
102
113
  Layout/EmptyLinesAroundBlockBody:
103
114
  Enabled: false
104
115
 
116
+ Layout/EmptyLinesAroundClassBody:
117
+ Enabled: false
118
+
105
119
  Layout/MultilineMethodCallIndentation:
106
120
  EnforcedStyle: indented
107
121
  IndentationWidth: 4
108
122
 
123
+ Layout/MultilineOperationIndentation:
124
+ EnforcedStyle: indented
125
+ IndentationWidth: 4
126
+
109
127
  Layout/CaseIndentation:
110
128
  Enabled: false
111
129
 
@@ -150,9 +168,113 @@ Metrics/BlockLength:
150
168
  Enabled: true
151
169
  Exclude:
152
170
  - spec/**/*
171
+ - lib/tasks/**/*.rake
172
+ - config/routes.rb
173
+ - config/environments/*.rb
174
+
175
+ ########################################
176
+ # Rspec Cops
177
+
178
+ RSpec/MultipleExpectations:
179
+ Enabled: false
180
+
181
+ RSpec/IndexedLet:
182
+ Enabled: false
183
+
184
+ RSpec/MultipleMemoizedHelpers:
185
+ Enabled: false
186
+
187
+ RSpec/ExampleLength:
188
+ Enabled: false
189
+
190
+ RSpec/ContextWording:
191
+ Enabled: false
192
+
193
+ RSpec/NestedGroups:
194
+ Enabled: false
195
+
196
+ RSpec/AnyInstance:
197
+ Enabled: false
198
+
199
+
200
+ ########################################
201
+ # Rails Cops
202
+
203
+ Rails/I18nLocaleTexts:
204
+ Enabled: false
153
205
 
154
206
  ########################################
155
207
  # Bundler Cops
156
208
 
157
209
  Bundler/OrderedGems:
158
210
  Enabled: false
211
+
212
+ ########################################
213
+ # New Cops
214
+
215
+ Lint/DuplicateBranch: # (new in 1.3)
216
+ Enabled: true
217
+ Lint/DuplicateRegexpCharacterClassElement: # (new in 1.1)
218
+ Enabled: true
219
+ Lint/EmptyBlock: # (new in 1.1)
220
+ Enabled: true
221
+ Lint/EmptyClass: # (new in 1.3)
222
+ Enabled: true
223
+ Lint/NoReturnInBeginEndBlocks: # (new in 1.2)
224
+ Enabled: true
225
+ Lint/ToEnumArguments: # (new in 1.1)
226
+ Enabled: true
227
+ Lint/UnmodifiedReduceAccumulator: # (new in 1.1)
228
+ Enabled: true
229
+ Style/ArgumentsForwarding: # (new in 1.1)
230
+ Enabled: true
231
+ Style/CollectionCompact: # (new in 1.2)
232
+ Enabled: true
233
+ Style/DocumentDynamicEvalDefinition: # (new in 1.1)
234
+ Enabled: true
235
+ Style/NegatedIfElseCondition: # (new in 1.2)
236
+ Enabled: true
237
+ Style/NilLambda: # (new in 1.3)
238
+ Enabled: true
239
+ Style/SwapValues: # (new in 1.1)
240
+ Enabled: true
241
+ Layout/SpaceBeforeBrackets: # (new in 1.7)
242
+ Enabled: true
243
+ Lint/AmbiguousAssignment: # (new in 1.7)
244
+ Enabled: true
245
+ Lint/DeprecatedConstants: # (new in 1.8)
246
+ Enabled: true
247
+ Lint/LambdaWithoutLiteralBlock: # (new in 1.8)
248
+ Enabled: true
249
+ Lint/NumberedParameterAssignment: # (new in 1.9)
250
+ Enabled: true
251
+ Lint/OrAssignmentToConstant: # (new in 1.9)
252
+ Enabled: true
253
+ Lint/RedundantDirGlobSort: # (new in 1.8)
254
+ Enabled: true
255
+ Lint/SymbolConversion: # (new in 1.9)
256
+ Enabled: true
257
+ Lint/TripleQuotes: # (new in 1.9)
258
+ Enabled: true
259
+ Lint/UnexpectedBlockArity: # (new in 1.5)
260
+ Enabled: true
261
+ Style/EndlessMethod: # (new in 1.8)
262
+ Enabled: true
263
+ Style/HashConversion: # (new in 1.10)
264
+ Enabled: true
265
+ Style/HashExcept: # (new in 1.7)
266
+ Enabled: true
267
+ Style/IfWithBooleanLiteralBranches: # (new in 1.9)
268
+ Enabled: true
269
+ Style/RedundantArgument: # (new in 1.4)
270
+ Enabled: true
271
+ Style/StringChars: # (new in 1.12)
272
+ Enabled: true
273
+ Lint/EmptyInPattern: # (new in 1.16)
274
+ Enabled: true
275
+ Style/InPatternThen: # (new in 1.16)
276
+ Enabled: true
277
+ Style/MultilineInPatternThen: # (new in 1.16)
278
+ Enabled: true
279
+ Style/QuotedSymbols: # (new in 1.16)
280
+ Enabled: true
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ *0.1.17* (February 06, 2024)
2
+
3
+ * Upgrade Nokogiri
4
+
1
5
  *0.1.16* (October 21, 2022)
2
6
 
3
7
  * Upgrade Nokogiri to 1.13.9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tr4n5l4te (0.1.16)
4
+ tr4n5l4te (0.1.17)
5
5
  capybara (~> 2.6)
6
6
  colored (~> 1)
7
7
  midwire_common (~> 0.1)
@@ -11,7 +11,7 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- addressable (2.8.1)
14
+ addressable (2.8.6)
15
15
  public_suffix (>= 2.0.2, < 6.0)
16
16
  ast (2.4.2)
17
17
  capybara (2.18.0)
@@ -24,70 +24,77 @@ GEM
24
24
  cliver (0.3.2)
25
25
  coderay (1.1.3)
26
26
  colored (1.2)
27
- diff-lcs (1.4.4)
28
- docile (1.3.5)
29
- method_source (0.9.2)
27
+ diff-lcs (1.5.1)
28
+ docile (1.4.0)
29
+ json (2.7.1)
30
+ language_server-protocol (3.17.0.3)
31
+ method_source (1.0.0)
30
32
  midwire_common (0.3.0)
31
33
  thor (~> 0.19)
32
- mini_mime (1.1.2)
33
- nokogiri (1.13.9-x86_64-linux)
34
+ mini_mime (1.1.5)
35
+ mini_portile2 (2.8.5)
36
+ nokogiri (1.16.2)
37
+ mini_portile2 (~> 2.8.2)
34
38
  racc (~> 1.4)
35
- optimist (3.0.1)
36
- parallel (1.20.1)
37
- parser (3.0.0.0)
39
+ optimist (3.1.0)
40
+ parallel (1.24.0)
41
+ parser (3.3.0.5)
38
42
  ast (~> 2.4.1)
43
+ racc
39
44
  poltergeist (1.18.1)
40
45
  capybara (>= 2.1, < 4)
41
46
  cliver (~> 0.3.1)
42
47
  websocket-driver (>= 0.2.0)
43
- pry (0.12.2)
44
- coderay (~> 1.1.0)
45
- method_source (~> 0.9.0)
46
- pry-nav (0.3.0)
47
- pry (>= 0.9.10, < 0.13.0)
48
- public_suffix (5.0.0)
49
- racc (1.6.0)
50
- rack (2.2.4)
51
- rack-test (2.0.2)
48
+ pry (0.14.2)
49
+ coderay (~> 1.1)
50
+ method_source (~> 1.0)
51
+ pry-nav (1.0.0)
52
+ pry (>= 0.9.10, < 0.15)
53
+ public_suffix (5.0.4)
54
+ racc (1.7.3)
55
+ rack (3.0.9)
56
+ rack-test (2.1.0)
52
57
  rack (>= 1.3)
53
- rainbow (3.0.0)
54
- rake (13.0.3)
55
- regexp_parser (2.1.1)
56
- rexml (3.2.5)
57
- rspec (3.10.0)
58
- rspec-core (~> 3.10.0)
59
- rspec-expectations (~> 3.10.0)
60
- rspec-mocks (~> 3.10.0)
61
- rspec-core (3.10.1)
62
- rspec-support (~> 3.10.0)
63
- rspec-expectations (3.10.1)
58
+ rainbow (3.1.1)
59
+ rake (13.1.0)
60
+ regexp_parser (2.9.0)
61
+ rexml (3.2.6)
62
+ rspec (3.13.0)
63
+ rspec-core (~> 3.13.0)
64
+ rspec-expectations (~> 3.13.0)
65
+ rspec-mocks (~> 3.13.0)
66
+ rspec-core (3.13.0)
67
+ rspec-support (~> 3.13.0)
68
+ rspec-expectations (3.13.0)
64
69
  diff-lcs (>= 1.2.0, < 2.0)
65
- rspec-support (~> 3.10.0)
66
- rspec-mocks (3.10.2)
70
+ rspec-support (~> 3.13.0)
71
+ rspec-mocks (3.13.0)
67
72
  diff-lcs (>= 1.2.0, < 2.0)
68
- rspec-support (~> 3.10.0)
69
- rspec-support (3.10.2)
70
- rubocop (1.11.0)
73
+ rspec-support (~> 3.13.0)
74
+ rspec-support (3.13.0)
75
+ rubocop (1.60.2)
76
+ json (~> 2.3)
77
+ language_server-protocol (>= 3.17.0)
71
78
  parallel (~> 1.10)
72
- parser (>= 3.0.0.0)
79
+ parser (>= 3.3.0.2)
73
80
  rainbow (>= 2.2.2, < 4.0)
74
81
  regexp_parser (>= 1.8, < 3.0)
75
- rexml
76
- rubocop-ast (>= 1.2.0, < 2.0)
82
+ rexml (>= 3.2.5, < 4.0)
83
+ rubocop-ast (>= 1.30.0, < 2.0)
77
84
  ruby-progressbar (~> 1.7)
78
- unicode-display_width (>= 1.4.0, < 3.0)
79
- rubocop-ast (1.4.1)
80
- parser (>= 2.7.1.5)
81
- ruby-progressbar (1.11.0)
82
- simplecov (0.21.2)
85
+ unicode-display_width (>= 2.4.0, < 3.0)
86
+ rubocop-ast (1.30.0)
87
+ parser (>= 3.2.1.0)
88
+ ruby-progressbar (1.13.0)
89
+ simplecov (0.22.0)
83
90
  docile (~> 1.1)
84
91
  simplecov-html (~> 0.11)
85
92
  simplecov_json_formatter (~> 0.1)
86
93
  simplecov-html (0.12.3)
87
- simplecov_json_formatter (0.1.2)
94
+ simplecov_json_formatter (0.1.4)
88
95
  thor (0.20.3)
89
- unicode-display_width (2.0.0)
90
- websocket-driver (0.7.5)
96
+ unicode-display_width (2.5.0)
97
+ websocket-driver (0.7.6)
91
98
  websocket-extensions (>= 0.1.0)
92
99
  websocket-extensions (0.1.5)
93
100
  xpath (3.2.0)
@@ -106,4 +113,4 @@ DEPENDENCIES
106
113
  tr4n5l4te!
107
114
 
108
115
  BUNDLED WITH
109
- 2.2.32
116
+ 2.5.6
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Tr4n5l4te
2
2
 
3
- **Version: 0.1.16**
3
+ **Version: 0.1.17**
4
4
 
5
5
  Use Google Translate without an API key.
6
6
 
data/bin/console CHANGED
File without changes
data/bin/setup CHANGED
File without changes
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tr4n5l4te
4
- VERSION = '0.1.16'.freeze
4
+ VERSION = '0.1.17'.freeze
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tr4n5l4te
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.16
4
+ version: 0.1.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Blackburn
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-21 00:00:00.000000000 Z
11
+ date: 2024-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -203,7 +203,7 @@ homepage: https://github.com/midwire/tr4n5l4te
203
203
  licenses:
204
204
  - MIT
205
205
  metadata: {}
206
- post_install_message:
206
+ post_install_message:
207
207
  rdoc_options: []
208
208
  require_paths:
209
209
  - lib
@@ -218,8 +218,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
218
218
  - !ruby/object:Gem::Version
219
219
  version: '0'
220
220
  requirements: []
221
- rubygems_version: 3.2.32
222
- signing_key:
221
+ rubygems_version: 3.3.26
222
+ signing_key:
223
223
  specification_version: 4
224
224
  summary: Use Google Translate without an API key.
225
225
  test_files: []