coursemology-polyglot 0.3.2 → 0.3.6

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: 4c0f87808237817c596edac6ca947524023bb99fbe259c7ec066abe7543d7d35
4
- data.tar.gz: bcbae8b7f2e857f2d574c738e13a2df65b4cda056e992a2085f30f8f46038e8a
3
+ metadata.gz: a3fb55cc5c9f8af2c5981738037663f04c0016460866b47104c12280e89edb67
4
+ data.tar.gz: 1ac4a82c2ec78b40ca2b59eee89eebb9b96cb325b08d22c3a210c4814ac520b7
5
5
  SHA512:
6
- metadata.gz: f9c9288ff62d5a2b3cf230b7565b5016f2b06a88f5c83cb406e1a091586be1d98c5ca797ee279328066be22397b4eb35bed7c9516dafead732e20996f3c48929
7
- data.tar.gz: 0d0491cb3952f62db93fce56b88474e4ba62de24fe502d3ce5ea521fd7870c2701a7b5279c7f9157576e87d543fad46f12a04ee03ece7d768249a10b45212dd3
6
+ metadata.gz: 0504a6da57e245e239b9fd49e0c94b10888f679913f0d74e5614ab1a5d03f87efe674b2b039bfa430b15ce023e88ac40a90e7f92c2ef965a030b902cab543390
7
+ data.tar.gz: 43962ec4df6bc26d334a6a485896924f1abc0558f7dcd26d1fd86f9f15d5061089a9441edd4d56df462b5cadb55aaa9892570b1d3041b58ba5c9488edb2329cc
data/.gitignore CHANGED
@@ -15,3 +15,8 @@
15
15
 
16
16
  # Ignore RSpec state
17
17
  /spec/examples.txt
18
+ .idea/vcs.xml
19
+ .idea/polyglot.iml
20
+ .idea/modules.xml
21
+ .idea/misc.xml
22
+ .idea/inspectionProfiles/Project_Default.xml
data/.rubocop.yml CHANGED
@@ -7,7 +7,7 @@ AllCops:
7
7
  - '**/Rakefile'
8
8
  Exclude:
9
9
  - 'vendor/bundle/**/*'
10
- TargetRubyVersion: 2.1
10
+ TargetRubyVersion: 3.0.4
11
11
 
12
12
  Metrics/LineLength:
13
13
  Max: 100
data/.travis.yml CHANGED
@@ -1,8 +1,8 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
  rvm:
4
- - 2.3.0
5
4
  - 2.5.3
5
+ - 3.0.4
6
6
  - ruby-head
7
7
  matrix:
8
8
  allow_failures:
data/README.md CHANGED
@@ -44,3 +44,13 @@ The SQL command below summarizes the necessary changes, to be run *right before*
44
44
  ```
45
45
  UPDATE polyglot_languages SET type = 'Coursemology::Polyglot::Language::Java::Java8', name = 'Java 8' where type = 'Coursemology::Polyglot::Language::Java';
46
46
  ```
47
+
48
+ ### Updating the gem
49
+
50
+ You will need the login credentials for `coursemology` to push the updated gem to [rubygems](https://rubygems.org/gems/coursemology-polyglot).
51
+
52
+ ```sh
53
+ gem build coursemology-polyglot
54
+ gem push coursemology-polyglot-<version>.gem
55
+ rm coursemology-polyglot-*.gem
56
+ ```
@@ -28,9 +28,9 @@ programming languages supported in Coursemology.
28
28
  spec.add_development_dependency 'coveralls'
29
29
  spec.add_development_dependency 'codeclimate-test-reporter'
30
30
 
31
- spec.add_dependency 'activesupport', '>= 4.2', '< 6'
31
+ spec.add_dependency 'activesupport', '>= 4.2'
32
32
 
33
33
  # For autoloading in Rails applications, as well as the Ace modes inclusion. Keep this as the
34
34
  # same as ActiveSupport version.
35
- spec.add_development_dependency 'railties', '>= 4.2', '< 6'
35
+ spec.add_development_dependency 'railties', '>= 4.2'
36
36
  end
@@ -25,4 +25,12 @@ class Coursemology::Polyglot::Language::Python < Coursemology::Polyglot::Languag
25
25
  class Python3Point9 < Coursemology::Polyglot::Language::Python
26
26
  concrete_language 'Python 3.9', docker_image: 'python:3.9'
27
27
  end
28
+
29
+ class Python3Point10 < Coursemology::Polyglot::Language::Python
30
+ concrete_language 'Python 3.10', docker_image: 'python:3.10'
31
+ end
32
+
33
+ class Python3Point10 < Coursemology::Polyglot::Language::Python
34
+ concrete_language 'Python 3.12', docker_image: 'python:3.12'
35
+ end
28
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.2'.freeze
4
+ VERSION = '0.3.6'.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.2
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Low
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-26 00:00:00.000000000 Z
11
+ date: 2024-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -101,9 +101,6 @@ dependencies:
101
101
  - - ">="
102
102
  - !ruby/object:Gem::Version
103
103
  version: '4.2'
104
- - - "<"
105
- - !ruby/object:Gem::Version
106
- version: '6'
107
104
  type: :runtime
108
105
  prerelease: false
109
106
  version_requirements: !ruby/object:Gem::Requirement
@@ -111,9 +108,6 @@ dependencies:
111
108
  - - ">="
112
109
  - !ruby/object:Gem::Version
113
110
  version: '4.2'
114
- - - "<"
115
- - !ruby/object:Gem::Version
116
- version: '6'
117
111
  - !ruby/object:Gem::Dependency
118
112
  name: railties
119
113
  requirement: !ruby/object:Gem::Requirement
@@ -121,9 +115,6 @@ dependencies:
121
115
  - - ">="
122
116
  - !ruby/object:Gem::Version
123
117
  version: '4.2'
124
- - - "<"
125
- - !ruby/object:Gem::Version
126
- version: '6'
127
118
  type: :development
128
119
  prerelease: false
129
120
  version_requirements: !ruby/object:Gem::Requirement
@@ -131,9 +122,6 @@ dependencies:
131
122
  - - ">="
132
123
  - !ruby/object:Gem::Version
133
124
  version: '4.2'
134
- - - "<"
135
- - !ruby/object:Gem::Version
136
- version: '6'
137
125
  description: |
138
126
  Common definitions shared between the web application and the evaluator for determining the
139
127
  programming languages supported in Coursemology.