Sha256: 58436a64d641d4c3ac69eb8b2b8a7a5f5c019d69dec12b1c9db497b15b3628e9

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

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

  class Python3Point9 < Coursemology::Polyglot::Language::Python
    concrete_language 'Python 3.9', docker_image: 'python:3.9'
  end

  class Python3Point10 < Coursemology::Polyglot::Language::Python
    concrete_language 'Python 3.10', docker_image: 'python:3.10'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
coursemology-polyglot-0.3.5 lib/coursemology/polyglot/language/python.rb