trackler 2.2.1.11 → 2.2.1.12
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 +4 -4
- data/lib/trackler/version.rb +1 -1
- data/tracks/csharp/README.md +4 -5
- data/tracks/d/config/maintainers.json +25 -0
- data/tracks/d/config.json +0 -2
- data/tracks/groovy/config/exercise_readme.go.tmpl +14 -4
- data/tracks/groovy/docs/INSTALLATION.md +13 -1
- data/tracks/groovy/docs/RESOURCES.md +2 -1
- data/tracks/groovy/exercises/difference-of-squares/README.md +1 -1
- data/tracks/groovy/exercises/gigasecond/README.md +1 -1
- data/tracks/groovy/exercises/hamming/README.md +1 -1
- data/tracks/groovy/exercises/leap/README.md +1 -1
- data/tracks/groovy/exercises/nth-prime/README.md +1 -1
- data/tracks/groovy/exercises/phone-number/README.md +1 -1
- data/tracks/groovy/exercises/raindrops/README.md +1 -1
- data/tracks/groovy/exercises/rna-transcription/README.md +1 -1
- data/tracks/groovy/exercises/robot-name/README.md +1 -1
- data/tracks/groovy/exercises/roman-numerals/README.md +1 -1
- data/tracks/groovy/exercises/word-count/README.md +1 -1
- data/tracks/java/exercises/word-count/src/example/java/WordCount.java +1 -1
- data/tracks/java/exercises/word-count/src/test/java/WordCountTest.java +1 -1
- data/tracks/purescript/config.json +72 -3
- metadata +3 -5
- data/tracks/csharp/appveyor.yml +0 -7
- data/tracks/csharp/circle.yml +0 -15
- data/tracks/groovy/docs/EXERCISE_README_INSERT.md +0 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 470dad2a5f3c954b1edd9a90c6647b0d49de1fe9
|
|
4
|
+
data.tar.gz: 64691a2098334551e818a7475e54a091e5323199
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5aec9958c8003f45c576a9cfb54290c4ec30118869f413ea756f8640e9bcf0f6895b0134f150b940ba8a51ab47291c85a509c5ddeaaa67fb250cae4d6f8b1e6
|
|
7
|
+
data.tar.gz: 2e9d7f0176e6b8264008d2210bab27a1cfb723aaf546bd2fc90863bd3cc7f96b4e28522589a3b43ee4005eabb831c8836bf7a3259356843230b39205bc668ce6
|
data/lib/trackler/version.rb
CHANGED
data/tracks/csharp/README.md
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Exercism C# Track
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/exercism/csharp)
|
|
4
4
|
|
|
5
5
|
Exercism exercises in C#
|
|
6
6
|
|
|
7
7
|
## Contributing Guide
|
|
8
8
|
|
|
9
|
-
Please see the [contributing guide](https://github.com/exercism/x-api/blob/master/CONTRIBUTING.md
|
|
9
|
+
Please see the [contributing guide](https://github.com/exercism/x-api/blob/master/CONTRIBUTING.md)
|
|
10
10
|
|
|
11
11
|
## Support
|
|
12
|
-
Need
|
|
13
|
-
|
|
12
|
+
Need assistance? Check out our Gitter Channel at https://gitter.im/exercism/xcsharp where you can get support and ask questions related to the C# track.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"maintainers": [
|
|
3
|
+
{
|
|
4
|
+
"github_username": "celavek",
|
|
5
|
+
"show_on_website": false,
|
|
6
|
+
"alumnus": false,
|
|
7
|
+
"name": null,
|
|
8
|
+
"bio": null,
|
|
9
|
+
"link_text": null,
|
|
10
|
+
"link_url": null,
|
|
11
|
+
"avatar_url": null
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"github_username": "tmccombs",
|
|
15
|
+
"show_on_website": false,
|
|
16
|
+
"alumnus": false,
|
|
17
|
+
"name": null,
|
|
18
|
+
"bio": null,
|
|
19
|
+
"link_text": null,
|
|
20
|
+
"link_url": null,
|
|
21
|
+
"avatar_url": null
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"docs_url": "https://github.com/exercism/docs/blob/master/maintaining-a-track/maintainer-configuration.md"
|
|
25
|
+
}
|
data/tracks/d/config.json
CHANGED
|
@@ -4,10 +4,20 @@
|
|
|
4
4
|
{{- with .Hints }}
|
|
5
5
|
{{ . }}
|
|
6
6
|
{{ end }}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
For installation and learning resources, refer to the
|
|
8
|
+
[exercism help page](http://exercism.io/languages/groovy).
|
|
9
|
+
|
|
10
|
+
Run the tests by executing the test script.
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
$ groovy ./{{ .Spec.MixedCaseName }}Spec.groovy
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
17
|
+
|
|
18
|
+
When all tests pass, congratulations!
|
|
19
|
+
|
|
20
|
+
{{ with .Spec.Credits -}}
|
|
11
21
|
## Source
|
|
12
22
|
|
|
13
23
|
{{ . }}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
### Installation
|
|
2
2
|
|
|
3
|
-
#### Installing Groovy
|
|
3
|
+
#### Installing Groovy on Unix (Mac OSX, Linux, Solaris or FreeBSD)
|
|
4
4
|
|
|
5
5
|
The preferred method of installing Groovy is [SDKman](http://sdkman.io/).
|
|
6
6
|
|
|
@@ -11,4 +11,16 @@ Detailed instructions can be found [here](http://sdkman.io/install.html). Breif
|
|
|
11
11
|
1. `sdk install java`
|
|
12
12
|
1. `sdk install groovy`
|
|
13
13
|
|
|
14
|
+
Side note: this method is also suitable for Cygwin on Windows
|
|
15
|
+
|
|
16
|
+
#### Installing Groovy on Windows
|
|
17
|
+
|
|
18
|
+
1. You should have JDK installed and `JAVA_HOME` environment variable set correctly.
|
|
19
|
+
You can test it by issuing `javac -v` command.
|
|
20
|
+
To install JDK follow [this instructions](https://docs.oracle.com/javase/8/docs/technotes/guides/install/windows_jdk_install.html)
|
|
21
|
+
1. Download Windows Installer from [Groovy Download page](http://groovy-lang.org/download.html)
|
|
22
|
+
1. Make sure Groovy is accessible in your console by issuing `groovy -v`
|
|
23
|
+
1. If you receive an error message saying `'groovy' is not recognized as an internal or external command`
|
|
24
|
+
you'll have to set `GROOVY_HOME` environment variable as described [here](http://groovy-lang.org/install.html#_install_binary)
|
|
25
|
+
|
|
14
26
|
Other methods of installing Groovy can be found [here](http://groovy-lang.org/install.html).
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
## Documentation
|
|
4
4
|
|
|
5
|
-
*
|
|
5
|
+
* [Groovy Language Documentation](http://docs.groovy-lang.org/docs/latest/html/documentation/)
|
|
6
|
+
* [Groovy JDK API Documentation](http://groovy-lang.org/gdk.html)
|
|
6
7
|
* Apache's [Groovy Documentation](http://www.groovy-lang.org/documentation.html), including the great [Learn Groovy](http://www.groovy-lang.org/learn.html) section
|
|
7
8
|
|
|
8
9
|
## Tools
|
|
@@ -18,7 +18,7 @@ For installation and learning resources, refer to the
|
|
|
18
18
|
Run the tests by executing the test script.
|
|
19
19
|
|
|
20
20
|
```
|
|
21
|
-
$ groovy ./
|
|
21
|
+
$ groovy ./DifferenceOfSquaresSpec.groovy
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
@@ -10,7 +10,7 @@ For installation and learning resources, refer to the
|
|
|
10
10
|
Run the tests by executing the test script.
|
|
11
11
|
|
|
12
12
|
```
|
|
13
|
-
$ groovy ./
|
|
13
|
+
$ groovy ./GigasecondSpec.groovy
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
@@ -41,7 +41,7 @@ For installation and learning resources, refer to the
|
|
|
41
41
|
Run the tests by executing the test script.
|
|
42
42
|
|
|
43
43
|
```
|
|
44
|
-
$ groovy ./
|
|
44
|
+
$ groovy ./HammingSpec.groovy
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
@@ -32,7 +32,7 @@ For installation and learning resources, refer to the
|
|
|
32
32
|
Run the tests by executing the test script.
|
|
33
33
|
|
|
34
34
|
```
|
|
35
|
-
$ groovy ./
|
|
35
|
+
$ groovy ./LeapSpec.groovy
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
@@ -14,7 +14,7 @@ For installation and learning resources, refer to the
|
|
|
14
14
|
Run the tests by executing the test script.
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
$ groovy ./
|
|
17
|
+
$ groovy ./NthPrimeSpec.groovy
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
@@ -33,7 +33,7 @@ For installation and learning resources, refer to the
|
|
|
33
33
|
Run the tests by executing the test script.
|
|
34
34
|
|
|
35
35
|
```
|
|
36
|
-
$ groovy ./
|
|
36
|
+
$ groovy ./PhoneNumberSpec.groovy
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
@@ -23,7 +23,7 @@ For installation and learning resources, refer to the
|
|
|
23
23
|
Run the tests by executing the test script.
|
|
24
24
|
|
|
25
25
|
```
|
|
26
|
-
$ groovy ./
|
|
26
|
+
$ groovy ./RaindropsSpec.groovy
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
@@ -24,7 +24,7 @@ For installation and learning resources, refer to the
|
|
|
24
24
|
Run the tests by executing the test script.
|
|
25
25
|
|
|
26
26
|
```
|
|
27
|
-
$ groovy ./
|
|
27
|
+
$ groovy ./RnaTranscriptionSpec.groovy
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
@@ -21,7 +21,7 @@ For installation and learning resources, refer to the
|
|
|
21
21
|
Run the tests by executing the test script.
|
|
22
22
|
|
|
23
23
|
```
|
|
24
|
-
$ groovy ./
|
|
24
|
+
$ groovy ./RobotNameSpec.groovy
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
@@ -48,7 +48,7 @@ For installation and learning resources, refer to the
|
|
|
48
48
|
Run the tests by executing the test script.
|
|
49
49
|
|
|
50
50
|
```
|
|
51
|
-
$ groovy ./
|
|
51
|
+
$ groovy ./RomanNumeralsSpec.groovy
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
@@ -18,7 +18,7 @@ For installation and learning resources, refer to the
|
|
|
18
18
|
Run the tests by executing the test script.
|
|
19
19
|
|
|
20
20
|
```
|
|
21
|
-
$ groovy ./
|
|
21
|
+
$ groovy ./WordCountSpec.groovy
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
@@ -6,7 +6,7 @@ import java.util.Map;
|
|
|
6
6
|
public class WordCount {
|
|
7
7
|
|
|
8
8
|
public Map<String, Integer> phrase( String input ) {
|
|
9
|
-
Map<String, Integer> countMap = new HashMap
|
|
9
|
+
Map<String, Integer> countMap = new HashMap<>();
|
|
10
10
|
input = input.trim().toLowerCase().replaceAll("[\\W]", " ");
|
|
11
11
|
final String[] tokenizedInput = input.split("\\s+");
|
|
12
12
|
for( String aWord : tokenizedInput ) {
|
|
@@ -3,42 +3,60 @@
|
|
|
3
3
|
"active": false,
|
|
4
4
|
"exercises": [
|
|
5
5
|
{
|
|
6
|
+
"uuid": "c41a2961-f7ca-4eaf-83cf-48762fc39c06",
|
|
6
7
|
"slug": "hello-world",
|
|
8
|
+
"core": false,
|
|
9
|
+
"unlocked_by": null,
|
|
7
10
|
"difficulty": 1,
|
|
8
11
|
"topics": [
|
|
9
12
|
"maybe"
|
|
10
13
|
]
|
|
11
14
|
},
|
|
12
15
|
{
|
|
16
|
+
"uuid": "1a95beb7-5bb2-44c4-aee7-5790bcb38865",
|
|
13
17
|
"slug": "leap",
|
|
18
|
+
"core": false,
|
|
19
|
+
"unlocked_by": null,
|
|
14
20
|
"difficulty": 1,
|
|
15
21
|
"topics": [
|
|
16
22
|
"modulo"
|
|
17
23
|
]
|
|
18
24
|
},
|
|
19
25
|
{
|
|
26
|
+
"uuid": "021a1f60-6086-4d8f-a8be-0f64cfd9620d",
|
|
20
27
|
"slug": "bob",
|
|
28
|
+
"core": false,
|
|
29
|
+
"unlocked_by": null,
|
|
21
30
|
"difficulty": 1,
|
|
22
31
|
"topics": [
|
|
23
32
|
"strings"
|
|
24
33
|
]
|
|
25
34
|
},
|
|
26
35
|
{
|
|
36
|
+
"uuid": "f0ce38ee-402f-451d-abd0-e3dc56d5cde4",
|
|
27
37
|
"slug": "raindrops",
|
|
38
|
+
"core": false,
|
|
39
|
+
"unlocked_by": null,
|
|
28
40
|
"difficulty": 1,
|
|
29
41
|
"topics": [
|
|
30
42
|
"modulo"
|
|
31
43
|
]
|
|
32
44
|
},
|
|
33
45
|
{
|
|
46
|
+
"uuid": "3cd10a88-9cc0-4dcd-a2f3-1f5bcb5eaf07",
|
|
34
47
|
"slug": "hamming",
|
|
48
|
+
"core": false,
|
|
49
|
+
"unlocked_by": null,
|
|
35
50
|
"difficulty": 1,
|
|
36
51
|
"topics": [
|
|
37
52
|
"Iterating over two lists at once"
|
|
38
53
|
]
|
|
39
54
|
},
|
|
40
55
|
{
|
|
56
|
+
"uuid": "aaf7a72c-ada0-4e43-8cc1-78d9e60ee151",
|
|
41
57
|
"slug": "pangram",
|
|
58
|
+
"core": false,
|
|
59
|
+
"unlocked_by": null,
|
|
42
60
|
"difficulty": 1,
|
|
43
61
|
"topics": [
|
|
44
62
|
"strings",
|
|
@@ -46,7 +64,10 @@
|
|
|
46
64
|
]
|
|
47
65
|
},
|
|
48
66
|
{
|
|
67
|
+
"uuid": "c956e70b-4e34-451b-9374-19b9f2aefa37",
|
|
49
68
|
"slug": "scrabble-score",
|
|
69
|
+
"core": false,
|
|
70
|
+
"unlocked_by": null,
|
|
50
71
|
"difficulty": 1,
|
|
51
72
|
"topics": [
|
|
52
73
|
"strings",
|
|
@@ -54,7 +75,10 @@
|
|
|
54
75
|
]
|
|
55
76
|
},
|
|
56
77
|
{
|
|
78
|
+
"uuid": "d530077b-1eed-44cd-9791-5f78001c7372",
|
|
57
79
|
"slug": "accumulate",
|
|
80
|
+
"core": false,
|
|
81
|
+
"unlocked_by": null,
|
|
58
82
|
"difficulty": 1,
|
|
59
83
|
"topics": [
|
|
60
84
|
"recursion",
|
|
@@ -63,7 +87,10 @@
|
|
|
63
87
|
]
|
|
64
88
|
},
|
|
65
89
|
{
|
|
90
|
+
"uuid": "79a091fa-7987-44e1-9146-fffa28352ee2",
|
|
66
91
|
"slug": "acronym",
|
|
92
|
+
"core": false,
|
|
93
|
+
"unlocked_by": null,
|
|
67
94
|
"difficulty": 2,
|
|
68
95
|
"topics": [
|
|
69
96
|
"strings",
|
|
@@ -71,7 +98,10 @@
|
|
|
71
98
|
]
|
|
72
99
|
},
|
|
73
100
|
{
|
|
101
|
+
"uuid": "d8d3d3dd-01f8-4289-afe2-60595a580240",
|
|
74
102
|
"slug": "triangle",
|
|
103
|
+
"core": false,
|
|
104
|
+
"unlocked_by": null,
|
|
75
105
|
"difficulty": 2,
|
|
76
106
|
"topics": [
|
|
77
107
|
"algebraic data types",
|
|
@@ -79,35 +109,50 @@
|
|
|
79
109
|
]
|
|
80
110
|
},
|
|
81
111
|
{
|
|
112
|
+
"uuid": "d9bda7fe-51c1-42f0-9631-fcb7ddd163b8",
|
|
82
113
|
"slug": "word-count",
|
|
114
|
+
"core": false,
|
|
115
|
+
"unlocked_by": null,
|
|
83
116
|
"difficulty": 1,
|
|
84
117
|
"topics": [
|
|
85
118
|
"strings"
|
|
86
119
|
]
|
|
87
120
|
},
|
|
88
121
|
{
|
|
122
|
+
"uuid": "d0942b01-fe68-46b3-be66-8e19592f666b",
|
|
89
123
|
"slug": "meetup",
|
|
124
|
+
"core": false,
|
|
125
|
+
"unlocked_by": null,
|
|
90
126
|
"difficulty": 1,
|
|
91
127
|
"topics": [
|
|
92
128
|
"dates"
|
|
93
129
|
]
|
|
94
130
|
},
|
|
95
131
|
{
|
|
132
|
+
"uuid": "d077a175-2219-439c-9bfa-3098239e4cd6",
|
|
96
133
|
"slug": "atbash-cipher",
|
|
134
|
+
"core": false,
|
|
135
|
+
"unlocked_by": null,
|
|
97
136
|
"difficulty": 1,
|
|
98
137
|
"topics": [
|
|
99
138
|
"strings"
|
|
100
139
|
]
|
|
101
140
|
},
|
|
102
141
|
{
|
|
142
|
+
"uuid": "dd60d894-9bab-4d53-96a2-11e77aa3e7f8",
|
|
103
143
|
"slug": "bracket-push",
|
|
144
|
+
"core": false,
|
|
145
|
+
"unlocked_by": null,
|
|
104
146
|
"difficulty": 1,
|
|
105
147
|
"topics": [
|
|
106
148
|
"dates"
|
|
107
149
|
]
|
|
108
150
|
},
|
|
109
151
|
{
|
|
152
|
+
"uuid": "9270773b-20f0-4e82-b0fd-e651af9d8415",
|
|
110
153
|
"slug": "allergies",
|
|
154
|
+
"core": false,
|
|
155
|
+
"unlocked_by": null,
|
|
111
156
|
"difficulty": 1,
|
|
112
157
|
"topics": [
|
|
113
158
|
"maps",
|
|
@@ -115,35 +160,50 @@
|
|
|
115
160
|
]
|
|
116
161
|
},
|
|
117
162
|
{
|
|
163
|
+
"uuid": "79011a26-c8b8-4fea-bdce-f8e3d37bee23",
|
|
118
164
|
"slug": "all-your-base",
|
|
165
|
+
"core": false,
|
|
166
|
+
"unlocked_by": null,
|
|
119
167
|
"difficulty": 1,
|
|
120
168
|
"topics": [
|
|
121
169
|
"base conversion"
|
|
122
170
|
]
|
|
123
171
|
},
|
|
124
172
|
{
|
|
173
|
+
"uuid": "0029ced5-503b-4491-a309-7f0176598dd0",
|
|
125
174
|
"slug": "binary-search",
|
|
175
|
+
"core": false,
|
|
176
|
+
"unlocked_by": null,
|
|
126
177
|
"difficulty": 1,
|
|
127
178
|
"topics": [
|
|
128
179
|
"binary search"
|
|
129
180
|
]
|
|
130
181
|
},
|
|
131
182
|
{
|
|
183
|
+
"uuid": "864d3c8b-fffe-4228-87f3-a56173b14eb4",
|
|
132
184
|
"slug": "difference-of-squares",
|
|
185
|
+
"core": false,
|
|
186
|
+
"unlocked_by": null,
|
|
133
187
|
"difficulty": 1,
|
|
134
188
|
"topics": [
|
|
135
189
|
"arithmetics"
|
|
136
190
|
]
|
|
137
191
|
},
|
|
138
192
|
{
|
|
193
|
+
"uuid": "bbaa71d1-be6a-444f-8661-006a40ef8a09",
|
|
139
194
|
"slug": "diamond",
|
|
195
|
+
"core": false,
|
|
196
|
+
"unlocked_by": null,
|
|
140
197
|
"difficulty": 1,
|
|
141
198
|
"topics": [
|
|
142
199
|
"strings"
|
|
143
200
|
]
|
|
144
201
|
},
|
|
145
202
|
{
|
|
203
|
+
"uuid": "e4f49f2e-87bd-4506-9184-d90bec0adde5",
|
|
146
204
|
"slug": "crypto-square",
|
|
205
|
+
"core": false,
|
|
206
|
+
"unlocked_by": null,
|
|
147
207
|
"difficulty": 1,
|
|
148
208
|
"topics": [
|
|
149
209
|
"strings",
|
|
@@ -151,7 +211,10 @@
|
|
|
151
211
|
]
|
|
152
212
|
},
|
|
153
213
|
{
|
|
214
|
+
"uuid": "9cb54162-d19c-4155-aca9-e2b26f4d4da5",
|
|
154
215
|
"slug": "isogram",
|
|
216
|
+
"core": false,
|
|
217
|
+
"unlocked_by": null,
|
|
155
218
|
"difficulty": 1,
|
|
156
219
|
"topics": [
|
|
157
220
|
"strings",
|
|
@@ -159,29 +222,35 @@
|
|
|
159
222
|
]
|
|
160
223
|
},
|
|
161
224
|
{
|
|
225
|
+
"uuid": "750d7b11-8201-4a83-b743-f2751d1743f6",
|
|
162
226
|
"slug": "etl",
|
|
227
|
+
"core": false,
|
|
228
|
+
"unlocked_by": null,
|
|
163
229
|
"difficulty": 1,
|
|
164
230
|
"topics": [
|
|
165
231
|
"maps"
|
|
166
232
|
]
|
|
167
233
|
},
|
|
168
234
|
{
|
|
235
|
+
"uuid": "78527833-8200-4085-8427-650aafb1990c",
|
|
169
236
|
"slug": "largest-series-product",
|
|
237
|
+
"core": false,
|
|
238
|
+
"unlocked_by": null,
|
|
170
239
|
"difficulty": 1,
|
|
171
240
|
"topics": [
|
|
172
241
|
"strings"
|
|
173
242
|
]
|
|
174
243
|
},
|
|
175
244
|
{
|
|
245
|
+
"uuid": "83b533f1-a712-4d6a-bc97-505c6e7c9161",
|
|
176
246
|
"slug": "pascals-triangle",
|
|
247
|
+
"core": false,
|
|
248
|
+
"unlocked_by": null,
|
|
177
249
|
"difficulty": 1,
|
|
178
250
|
"topics": [
|
|
179
251
|
"arrays"
|
|
180
252
|
]
|
|
181
253
|
}
|
|
182
|
-
],
|
|
183
|
-
"deprecated": [
|
|
184
|
-
|
|
185
254
|
],
|
|
186
255
|
"foregone": [
|
|
187
256
|
|
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.2.1.
|
|
4
|
+
version: 2.2.1.12
|
|
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-08-
|
|
11
|
+
date: 2017-08-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|
|
@@ -1743,12 +1743,10 @@ files:
|
|
|
1743
1743
|
- tracks/csharp/.travis.yml
|
|
1744
1744
|
- tracks/csharp/LICENSE
|
|
1745
1745
|
- tracks/csharp/README.md
|
|
1746
|
-
- tracks/csharp/appveyor.yml
|
|
1747
1746
|
- tracks/csharp/bin/fetch-configlet
|
|
1748
1747
|
- tracks/csharp/build.cake
|
|
1749
1748
|
- tracks/csharp/build.ps1
|
|
1750
1749
|
- tracks/csharp/build.sh
|
|
1751
|
-
- tracks/csharp/circle.yml
|
|
1752
1750
|
- tracks/csharp/config.json
|
|
1753
1751
|
- tracks/csharp/config/exercise_readme.go.tmpl
|
|
1754
1752
|
- tracks/csharp/config/maintainers.json
|
|
@@ -2401,6 +2399,7 @@ files:
|
|
|
2401
2399
|
- tracks/d/bin/test-exercise
|
|
2402
2400
|
- tracks/d/config.json
|
|
2403
2401
|
- tracks/d/config/exercise_readme.go.tmpl
|
|
2402
|
+
- tracks/d/config/maintainers.json
|
|
2404
2403
|
- tracks/d/docs/ABOUT.md
|
|
2405
2404
|
- tracks/d/docs/EXERCISE_README_INSERT.md
|
|
2406
2405
|
- tracks/d/docs/INSTALLATION.md
|
|
@@ -4866,7 +4865,6 @@ files:
|
|
|
4866
4865
|
- tracks/groovy/config/exercise_readme.go.tmpl
|
|
4867
4866
|
- tracks/groovy/config/maintainers.json
|
|
4868
4867
|
- tracks/groovy/docs/ABOUT.md
|
|
4869
|
-
- tracks/groovy/docs/EXERCISE_README_INSERT.md
|
|
4870
4868
|
- tracks/groovy/docs/INSTALLATION.md
|
|
4871
4869
|
- tracks/groovy/docs/LEARNING.md
|
|
4872
4870
|
- tracks/groovy/docs/RESOURCES.md
|
data/tracks/csharp/appveyor.yml
DELETED
data/tracks/csharp/circle.yml
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
version: 2
|
|
2
|
-
jobs:
|
|
3
|
-
build:
|
|
4
|
-
working_directory: /exercism/xcsharp
|
|
5
|
-
docker:
|
|
6
|
-
- image: microsoft/dotnet:sdk
|
|
7
|
-
environment:
|
|
8
|
-
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
|
|
9
|
-
DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
|
10
|
-
steps:
|
|
11
|
-
- checkout
|
|
12
|
-
- run: apt-get -qq update; apt-get -y install unzip
|
|
13
|
-
- run: ./bin/fetch-configlet
|
|
14
|
-
- run: ./bin/configlet lint .
|
|
15
|
-
- run: ./build.sh
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
For installation and learning resources, refer to the
|
|
2
|
-
[exercism help page](http://exercism.io/languages/groovy).
|
|
3
|
-
|
|
4
|
-
Run the tests by executing the test script.
|
|
5
|
-
|
|
6
|
-
```
|
|
7
|
-
$ groovy ./HelloWorldSpec.groovy
|
|
8
|
-
```
|
|
9
|
-
|
|
10
|
-
After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.
|
|
11
|
-
|
|
12
|
-
When all tests pass, congratulations!
|