coursemology-polyglot 0.3.6 → 0.3.7
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 +4 -4
- data/.gitignore +3 -0
- data/.hound.yml +6 -6
- data/.rubocop.unhound.yml +2 -2
- data/.rubocop.yml +3 -6
- data/lib/coursemology/polyglot/language/java.rb +4 -0
- data/lib/coursemology/polyglot/version.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c23bcb8ffbf90568e62cc479ddaa4e5ebaa69debcc58550b6f85aeb76ebf143
|
|
4
|
+
data.tar.gz: 25510ea3b6b0b8511de17d9312e59a96867425141b88e80ece256381c0fab7a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f8e6873c402ab15cdfec58c413d0b01de03645fc88f4cede15514b04866081e17a17796d92fbbd6edfa0573ddbd7e89caf0634546c14e32ee1b61cdbd63e99b
|
|
7
|
+
data.tar.gz: 92fc3a582c491ed31799583aba9c152b3e71383eab13325482fbf7a3509de7a8ceba8d94b099586cf824bf49360882c4bed4f4e42d952ff2e72b3e2f0d0a90b2
|
data/.gitignore
CHANGED
data/.hound.yml
CHANGED
data/.rubocop.unhound.yml
CHANGED
|
@@ -100,10 +100,10 @@ Style/WhenThen:
|
|
|
100
100
|
Lint/EachWithObjectArgument:
|
|
101
101
|
Enabled: true
|
|
102
102
|
|
|
103
|
-
Lint/
|
|
103
|
+
Lint/SuppressedException:
|
|
104
104
|
Enabled: true
|
|
105
105
|
|
|
106
|
-
Lint/
|
|
106
|
+
Lint/LiteralAsCondition:
|
|
107
107
|
Description: Checks of literals used in conditions.
|
|
108
108
|
Enabled: true
|
|
109
109
|
|
data/.rubocop.yml
CHANGED
|
@@ -6,8 +6,8 @@ AllCops:
|
|
|
6
6
|
- '**/Gemfile'
|
|
7
7
|
- '**/Rakefile'
|
|
8
8
|
Exclude:
|
|
9
|
-
|
|
10
|
-
TargetRubyVersion: 3.0
|
|
9
|
+
- 'vendor/bundle/**/*'
|
|
10
|
+
TargetRubyVersion: 3.0
|
|
11
11
|
|
|
12
12
|
Metrics/LineLength:
|
|
13
13
|
Max: 100
|
|
@@ -21,7 +21,7 @@ Layout/DotPosition:
|
|
|
21
21
|
Style/Documentation:
|
|
22
22
|
Enabled: false
|
|
23
23
|
|
|
24
|
-
Layout/
|
|
24
|
+
Layout/FirstHashElementIndentation:
|
|
25
25
|
EnforcedStyle: consistent
|
|
26
26
|
|
|
27
27
|
Style/ParallelAssignment:
|
|
@@ -35,6 +35,3 @@ Style/WordArray:
|
|
|
35
35
|
|
|
36
36
|
Style/RegexpLiteral:
|
|
37
37
|
AllowInnerSlashes: true
|
|
38
|
-
|
|
39
|
-
Style/ClassAndModuleChildren:
|
|
40
|
-
EnforcedStyle: compact
|
|
@@ -8,4 +8,8 @@ class Coursemology::Polyglot::Language::Java < Coursemology::Polyglot::Language
|
|
|
8
8
|
class Java11 < Coursemology::Polyglot::Language::Java
|
|
9
9
|
concrete_language 'Java 11', docker_image: 'java:11'
|
|
10
10
|
end
|
|
11
|
+
|
|
12
|
+
class Java17 < Coursemology::Polyglot::Language::Java
|
|
13
|
+
concrete_language 'Java 17', docker_image: 'java:17'
|
|
14
|
+
end
|
|
11
15
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: coursemology-polyglot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joel Low
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-01-
|
|
11
|
+
date: 2024-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -156,7 +156,7 @@ homepage: https://github.com/Coursemology/polyglot
|
|
|
156
156
|
licenses:
|
|
157
157
|
- MIT
|
|
158
158
|
metadata: {}
|
|
159
|
-
post_install_message:
|
|
159
|
+
post_install_message:
|
|
160
160
|
rdoc_options: []
|
|
161
161
|
require_paths:
|
|
162
162
|
- lib
|
|
@@ -171,9 +171,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
171
171
|
- !ruby/object:Gem::Version
|
|
172
172
|
version: '0'
|
|
173
173
|
requirements: []
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
signing_key:
|
|
174
|
+
rubygems_version: 3.1.2
|
|
175
|
+
signing_key:
|
|
177
176
|
specification_version: 4
|
|
178
177
|
summary: Coursemology polyglot definitions
|
|
179
178
|
test_files: []
|