coursemology-polyglot 0.3.5 → 0.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -0
- data/lib/coursemology/polyglot/language/python.rb +4 -0
- data/lib/coursemology/polyglot/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3fb55cc5c9f8af2c5981738037663f04c0016460866b47104c12280e89edb67
|
4
|
+
data.tar.gz: 1ac4a82c2ec78b40ca2b59eee89eebb9b96cb325b08d22c3a210c4814ac520b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0504a6da57e245e239b9fd49e0c94b10888f679913f0d74e5614ab1a5d03f87efe674b2b039bfa430b15ce023e88ac40a90e7f92c2ef965a030b902cab543390
|
7
|
+
data.tar.gz: 43962ec4df6bc26d334a6a485896924f1abc0558f7dcd26d1fd86f9f15d5061089a9441edd4d56df462b5cadb55aaa9892570b1d3041b58ba5c9488edb2329cc
|
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
|
+
```
|
@@ -29,4 +29,8 @@ class Coursemology::Polyglot::Language::Python < Coursemology::Polyglot::Languag
|
|
29
29
|
class Python3Point10 < Coursemology::Polyglot::Language::Python
|
30
30
|
concrete_language 'Python 3.10', docker_image: 'python:3.10'
|
31
31
|
end
|
32
|
+
|
33
|
+
class Python3Point10 < Coursemology::Polyglot::Language::Python
|
34
|
+
concrete_language 'Python 3.12', docker_image: 'python:3.12'
|
35
|
+
end
|
32
36
|
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.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:
|
11
|
+
date: 2024-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|