Sha256: 8c475e40a95082bf37367b2933f39684aefdf4cdef19c9f33c1702fc40c32162
Contents?: true
Size: 821 Bytes
Versions: 2
Compression:
Stored size: 821 Bytes
Contents
# frozen_string_literal: true class Coursemology::Polyglot::Language::Python < Coursemology::Polyglot::Language syntax_highlighter 'python' class Python2Point7 < Coursemology::Polyglot::Language::Python concrete_language 'Python 2.7', docker_image: 'python:2.7' end class Python3Point4 < Coursemology::Polyglot::Language::Python concrete_language 'Python 3.4', docker_image: 'python:3.4' end class Python3Point5 < Coursemology::Polyglot::Language::Python concrete_language 'Python 3.5', docker_image: 'python:3.5' end class Python3Point6 < Coursemology::Polyglot::Language::Python concrete_language 'Python 3.6', docker_image: 'python:3.6' end class Python3Point7 < Coursemology::Polyglot::Language::Python concrete_language 'Python 3.7', docker_image: 'python:3.7' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
coursemology-polyglot-0.3 | lib/coursemology/polyglot/language/python.rb |
coursemology-polyglot-0.2.9.4 | lib/coursemology/polyglot/language/python.rb |