coursemology-polyglot 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5362954fc3f5ce4201052cca9dc8f60423d801e2
4
- data.tar.gz: 28c1d21015e9025394f35eded6cdba6ea66bf43a
3
+ metadata.gz: 850d32419c179c3627a42a164b050d921653edd8
4
+ data.tar.gz: 46c77e2e07ccb7a675794444417572020298e040
5
5
  SHA512:
6
- metadata.gz: 0c34a0c52348298a4ad937ab75ab2316cea1a337ad038b8a69dd2f616da1c18022cbe798d4490d7e07a00d8c0f6b8367b2a43b93f7d3bcdfc7a26aa3479001fc
7
- data.tar.gz: 03e2719ad1119acff8c6b2bbd8f5acb8f372d92b8d1558942cf122cdb0ec9a03094e370c433eb6878630f7b3c2dd02f58ef8564ad602e7c4d36aee45ac730194
6
+ metadata.gz: 0dffa9713608433eb21132a169fc1c223d69424e2164ce35babdd61a18249abb8fda874caae00b2125df027b0cf1d61877b0810ed81f00c67fd05675a7144c05
7
+ data.tar.gz: 8728f66494d2e31d79d08218f2dd09101f5f8daad8c8c9ada38c71f276b8282ed6e4023aac8900dbba37a7f985b654ef507848fb49f146d3bc2a8504562a2b74
@@ -14,7 +14,6 @@
14
14
  <content url="file://$MODULE_DIR$" />
15
15
  <orderEntry type="inheritedJdk" />
16
16
  <orderEntry type="sourceFolder" forTests="false" />
17
- <orderEntry type="library" scope="PROVIDED" name="json (v1.8.3, ruby-2.3.0-p7) [gem]" level="application" />
18
17
  <orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, ruby-2.3.0-p7) [gem]" level="application" />
19
18
  </component>
20
19
  </module>
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # Coursemology Polyglot [![Build Status](https://travis-ci.org/Coursemology/polyglot.svg?branch=master)](https://travis-ci.org/Coursemology/polyglot)
2
- [![Code Climate](https://codeclimate.com/github/Coursemology/polyglot/badges/gpa.svg)](https://codeclimate.com/github/Coursemology/polyglot) [![Coverage Status](https://coveralls.io/repos/Coursemology/polyglot/badge.svg?branch=master&service=github)](https://coveralls.io/github/Coursemology/polyglot?branch=master) [![Security](https://hakiri.io/github/Coursemology/polyglot/master.svg)](https://hakiri.io/github/Coursemology/polyglot/master) [![Inline docs](http://inch-ci.org/github/coursemology/polyglot.svg?branch=master)](http://inch-ci.org/github/coursemology/polyglot)
2
+ [![Code Climate](https://codeclimate.com/github/Coursemology/polyglot/badges/gpa.svg)](https://codeclimate.com/github/Coursemology/polyglot) [![Coverage Status](https://coveralls.io/repos/Coursemology/polyglot/badge.svg?branch=master&service=github)](https://coveralls.io/github/Coursemology/polyglot?branch=master) [![Security](https://hakiri.io/github/Coursemology/polyglot/master.svg)](https://hakiri.io/github/Coursemology/polyglot/master) [![Inline docs](http://inch-ci.org/github/coursemology/polyglot.svg?branch=master)](http://inch-ci.org/github/coursemology/polyglot) [![Gem Version](https://badge.fury.io/rb/coursemology-polyglot.svg)](https://badge.fury.io/rb/coursemology-polyglot)
3
3
 
4
4
  This is the library common between the web application and the evaluator for determining the
5
5
  programming languages supported in Coursemology.
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  Common definitions shared between the web application and the evaluator for determining the
16
16
  programming languages supported in Coursemology.
17
17
  DESC
18
- spec.homepage = 'http://coursemology.org'
18
+ spec.homepage = 'https://github.com/Coursemology/polyglot'
19
19
  spec.files = `git ls-files -z`.split("\x0").
20
20
  reject { |f| f.match(/^(test|spec|features)\//) }
21
21
  spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
@@ -0,0 +1,4 @@
1
+ class Coursemology::Polyglot::Language::JavaScript < Coursemology::Polyglot::Language
2
+ syntax_highlighter 'javascript'
3
+ concrete_language 'javascript'
4
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module Coursemology; end
3
3
  module Coursemology::Polyglot
4
- VERSION = '0.1.0'.freeze
4
+ VERSION = '0.2.0'.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.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Low
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-04 00:00:00.000000000 Z
11
+ date: 2016-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -160,9 +160,10 @@ files:
160
160
  - lib/coursemology/polyglot/concrete_language/class_methods.rb
161
161
  - lib/coursemology/polyglot/engine.rb
162
162
  - lib/coursemology/polyglot/language.rb
163
+ - lib/coursemology/polyglot/language/java_script.rb
163
164
  - lib/coursemology/polyglot/language/python.rb
164
165
  - lib/coursemology/polyglot/version.rb
165
- homepage: http://coursemology.org
166
+ homepage: https://github.com/Coursemology/polyglot
166
167
  licenses:
167
168
  - MIT
168
169
  metadata: {}