coursemology-polyglot 0.3.6 → 0.3.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3fb55cc5c9f8af2c5981738037663f04c0016460866b47104c12280e89edb67
4
- data.tar.gz: 1ac4a82c2ec78b40ca2b59eee89eebb9b96cb325b08d22c3a210c4814ac520b7
3
+ metadata.gz: 9b14fa173c8307393ebda4e463b0090517746b24ba746b9ff448df41acb56737
4
+ data.tar.gz: 60b1b40f59e4756a81b41fdd6bddc13fc80229ab822c72bfe2f9b5844ffe562d
5
5
  SHA512:
6
- metadata.gz: 0504a6da57e245e239b9fd49e0c94b10888f679913f0d74e5614ab1a5d03f87efe674b2b039bfa430b15ce023e88ac40a90e7f92c2ef965a030b902cab543390
7
- data.tar.gz: 43962ec4df6bc26d334a6a485896924f1abc0558f7dcd26d1fd86f9f15d5061089a9441edd4d56df462b5cadb55aaa9892570b1d3041b58ba5c9488edb2329cc
6
+ metadata.gz: eefe3d539ce98748d807773cf019579ef658c51568aa24ff41d9a196c8b85847fd57c06c41aba963236686e81f126c2ca5ff3b6fe20a8a0778885e482209c163
7
+ data.tar.gz: f75df85f25ffe98b20ea11c992f8b8214d0318b36b05625634f687065ffc43057105fc80795c18a9b4b888fdaffda6ca09d59708348cee0586ca3a67ae48533a
data/.gitignore CHANGED
@@ -20,3 +20,6 @@
20
20
  .idea/modules.xml
21
21
  .idea/misc.xml
22
22
  .idea/inspectionProfiles/Project_Default.xml
23
+
24
+ # Ignore Ruby version
25
+ .ruby-version
data/.hound.yml CHANGED
@@ -1,8 +1,8 @@
1
- ruby:
2
- config_file: .rubocop.yml
1
+ fail_on_violations: true
3
2
 
4
- java_script:
5
- config_file: .jshintrc
3
+ rubocop:
4
+ config_file: .rubocop.yml
5
+ version: 1.22.1
6
6
 
7
- scss:
8
- config_file: .scss-lint.yml
7
+ javascript:
8
+ enabled: false
data/.rubocop.unhound.yml CHANGED
@@ -100,10 +100,10 @@ Style/WhenThen:
100
100
  Lint/EachWithObjectArgument:
101
101
  Enabled: true
102
102
 
103
- Lint/HandleExceptions:
103
+ Lint/SuppressedException:
104
104
  Enabled: true
105
105
 
106
- Lint/LiteralInCondition:
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
- - 'vendor/bundle/**/*'
10
- TargetRubyVersion: 3.0.4
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/IndentHash:
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
@@ -30,7 +30,7 @@ class Coursemology::Polyglot::Language::Python < Coursemology::Polyglot::Languag
30
30
  concrete_language 'Python 3.10', docker_image: 'python:3.10'
31
31
  end
32
32
 
33
- class Python3Point10 < Coursemology::Polyglot::Language::Python
33
+ class Python3Point12 < Coursemology::Polyglot::Language::Python
34
34
  concrete_language 'Python 3.12', docker_image: 'python:3.12'
35
35
  end
36
36
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module Coursemology; end
3
3
  module Coursemology::Polyglot
4
- VERSION = '0.3.6'.freeze
4
+ VERSION = '0.3.8'.freeze
5
5
  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.6
4
+ version: 0.3.8
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-08 00:00:00.000000000 Z
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
- rubyforge_project:
175
- rubygems_version: 2.7.6
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: []