trackler 2.0.6.44 → 2.0.7.0

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
  SHA1:
3
- metadata.gz: e22e92816145327ce2071b3930d8ede4ffc175b8
4
- data.tar.gz: 07bc3bf77b11fdb37e8b2cacf629ec3a96b29d03
3
+ metadata.gz: 32aa25b39ab986b550a5ea333d13b998fb0cbcf4
4
+ data.tar.gz: 5262d80d6be0f50a3a9f59614f9d04cbf1e58fb7
5
5
  SHA512:
6
- metadata.gz: 4f85dea3808a59c08bb536fb023a0335b90f5c7d042371a927b6fc109192ca1fad66c322863bcaee0a77d50a7e9830ac07cb23d60a143c53a02132d990320805
7
- data.tar.gz: 1e3f404b70a1dc3e7e3ed5efde77f99e0c9256b4bbc487843fffed137f426d05c9f5376d66c9a6a96de0e5b4b0e7a02554b445b5e430815e890a0a3ad96e7a25
6
+ metadata.gz: 53ef63c74da16dd524573bb94e5c30e45f98dc830bf31679faf52a8a9e5f4d9039d0e77480c7ca4232e168b9ade7e085bf25a2c512649f34079dd3456495cfac
7
+ data.tar.gz: 9fb7b89b0eb4449aef8c4c907a38c7315d733ac9e87e014287866e74e5233d7e6363fd79ccdc3f1e4166297c7bee27ac5bc4531a431963e2d557e19f65fc14fd
@@ -169,3 +169,6 @@
169
169
  [submodule "tracks/typescript"]
170
170
  path = tracks/typescript
171
171
  url = https://github.com/exercism/xtypescript
172
+ [submodule "tracks/vimscript"]
173
+ path = tracks/vimscript
174
+ url = https://github.com/exercism/xvimscript
@@ -1,3 +1,3 @@
1
1
  module Trackler
2
- VERSION = "2.0.6.44"
2
+ VERSION = "2.0.7.0"
3
3
  end
@@ -0,0 +1,9 @@
1
+ **What programming language should we add?**
2
+
3
+ **What is the official website for the language?**
4
+
5
+ **Is this a language that comes in many variants? If so, which variant should we support?**
6
+
7
+ **Is there a testing framework available for the language?**
8
+
9
+ **Who will be leading the effort to launch the track?**
@@ -0,0 +1,4 @@
1
+ *.swp
2
+ .DS_Store
3
+ bin/configlet
4
+ bin/configlet.exe
@@ -0,0 +1,5 @@
1
+ language: bash
2
+
3
+ script:
4
+ - bin/fetch-configlet
5
+ - bin/configlet .
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2017 Exercism, Inc
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,11 @@
1
+ # Exercism Vim script Track
2
+
3
+ Exercism exercises in Vim script.
4
+
5
+ ## TODO
6
+
7
+ _Document how to contribute to the Vim script track._
8
+
9
+ ## Contributing Guide
10
+
11
+ Please see the [contributing guide](https://github.com/exercism/x-common/blob/master/CONTRIBUTING.md).
File without changes
@@ -0,0 +1,32 @@
1
+ #!/bin/bash
2
+
3
+ LATEST=https://github.com/exercism/configlet/releases/latest
4
+
5
+ OS=$(
6
+ case $(uname) in
7
+ (Darwin*)
8
+ echo "mac";;
9
+ (Linux*)
10
+ echo "linux";;
11
+ (Windows*)
12
+ echo "windows";;
13
+ (*)
14
+ echo "linux";;
15
+ esac)
16
+
17
+ ARCH=$(
18
+ case $(uname -m) in
19
+ (*64*)
20
+ echo 64bit;;
21
+ (*686*)
22
+ echo 32bit;;
23
+ (*386*)
24
+ echo 32bit;;
25
+ (*)
26
+ echo 64bit;;
27
+ esac)
28
+
29
+ VERSION="$(curl --head --silent $LATEST | awk -v FS=/ '/Location:/{print $NF}' | tr -d '\r')"
30
+ URL=https://github.com/exercism/configlet/releases/download/$VERSION/configlet-$OS-${ARCH}.tgz
31
+
32
+ curl -s --location $URL | tar xz -C bin/
@@ -0,0 +1,21 @@
1
+ {
2
+ "slug": "vimscript",
3
+ "language": "Vim script",
4
+ "repository": "https://github.com/exercism/xvimscript",
5
+ "active": false,
6
+ "test_pattern": "TODO",
7
+ "exercises": [
8
+
9
+ ],
10
+ "deprecated": [
11
+
12
+ ],
13
+ "ignored": [
14
+ "bin",
15
+ "img",
16
+ "docs"
17
+ ],
18
+ "foregone": [
19
+
20
+ ]
21
+ }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trackler
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.6.44
4
+ version: 2.0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Katrina Owen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-19 00:00:00.000000000 Z
11
+ date: 2017-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip
@@ -7962,6 +7962,22 @@ files:
7962
7962
  - tracks/vbnet/exercises/crypto-square/CryptoSquareTest.vb
7963
7963
  - tracks/vbnet/exercises/crypto-square/Example.vb
7964
7964
  - tracks/vbnet/img/icon.png
7965
+ - tracks/vimscript/.git
7966
+ - tracks/vimscript/.github/ISSUE_TEMPLATE.md
7967
+ - tracks/vimscript/.gitignore
7968
+ - tracks/vimscript/.travis.yml
7969
+ - tracks/vimscript/LICENSE
7970
+ - tracks/vimscript/README.md
7971
+ - tracks/vimscript/SETUP.md
7972
+ - tracks/vimscript/bin/fetch-configlet
7973
+ - tracks/vimscript/config.json
7974
+ - tracks/vimscript/docs/ABOUT.md
7975
+ - tracks/vimscript/docs/INSTALLATION.md
7976
+ - tracks/vimscript/docs/LEARNING.md
7977
+ - tracks/vimscript/docs/RESOURCES.md
7978
+ - tracks/vimscript/docs/TESTS.md
7979
+ - tracks/vimscript/exercises/.keep
7980
+ - tracks/vimscript/img/.keep
7965
7981
  homepage: http://exercism.io
7966
7982
  licenses:
7967
7983
  - MIT