trackler 2.2.1.34 → 2.2.1.35

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: 94f1ec75e4a06728b2a24c14a1bd8943129753a1
4
- data.tar.gz: e6db1170c98f5378116c98e2187104208f59435b
3
+ metadata.gz: 25d3a92dd75a43d8f4a6a449411bd76ba1a3a314
4
+ data.tar.gz: 47be5e25d79f8d872dcb60aad896ce31a899ec66
5
5
  SHA512:
6
- metadata.gz: 3a1f5ee1c91b627cec5a1131fe8d9601608db6189818c6e27ef5b1c5822cb80293b3c2017c462a506f580b52f224e32cf6e40b0758f31364c036509eacfd4e94
7
- data.tar.gz: e9a86d47b1a8497216affb89a5bffcae2f1515ce692c565b802488a672bc22e3215e5e62e4b958dbc499e36b8b20ba491dd052708356b28eca0d771e65843f0b
6
+ metadata.gz: 83a4a2144c5b8f37d7e757c200a8aa37637456b6bd86f198b9cce574e1998087c3e312fa50ba9a8640c987b5674cbd36c6022bc0148a43da7861bceaea8d1be1
7
+ data.tar.gz: 98ba226199288622a60349efcff70010118f5d2afac6901d061f53d22cee1c223d4eda7e6ee05a04484afa7d444eaa7830f98e450c7919c7eec36ce1cee63c28
@@ -1,3 +1,3 @@
1
1
  module Trackler
2
- VERSION = "2.2.1.34"
2
+ VERSION = "2.2.1.35"
3
3
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "exercise": "sum-of-multiples",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "cases": [
5
5
  {
6
6
  "description": "multiples of 3 or 5 up to 1",
@@ -16,6 +16,13 @@
16
16
  "limit": 4,
17
17
  "expected": 3
18
18
  },
19
+ {
20
+ "description": "multiples of 3 up to 7",
21
+ "property": "sum",
22
+ "factors": [3],
23
+ "limit": 7,
24
+ "expected": 9
25
+ },
19
26
  {
20
27
  "description": "multiples of 3 or 5 up to 10",
21
28
  "property": "sum",
@@ -2,6 +2,7 @@
2
2
  "language": "ColdFusion",
3
3
  "blurb" : "ColdFusion (CFML) is an open source and commercial (JIT) compiled dynamic and loosely typed JVM scripting language that embodies classic OO, and functional programming, making it easy to learn, fun to use. CFML brings the power and scalability of the J2EE ecosystem but without the boilerplate of Java.",
4
4
  "active": true,
5
+ "test_pattern": "Test.cfc",
5
6
  "solution_pattern": "Solution.cfc",
6
7
  "ignore_pattern": "Solution",
7
8
  "foregone": [
@@ -8,12 +8,6 @@ box task run TestRunner
8
8
  box task run TestRunner --watcher
9
9
  ```
10
10
 
11
- If you want to run the test suite against the solution:
12
-
13
- ```bash
14
- box task run TestRunner --solution
15
- ```
16
-
17
11
  The tests leverage a library called TestBox which supports xUnit and BDD style of testing. All test suites will be written in the [BDD style](https://testbox.ortusbooks.com/content/primers/bdd/specs.html) which uses closures to define test specs. You won't need to worry about installing TestBox. The CLI test runner will take care of that for you. You just need to be connected to the internet the first time you run it. You can read more about it here:
18
12
 
19
13
  [https://testbox.ortusbooks.com/content/](https://testbox.ortusbooks.com/content/)
@@ -1,6 +1,6 @@
1
1
  # xFSharp
2
2
 
3
- [![Build Status](https://travis-ci.org/exercism/xfsharp.svg?branch=master)](https://travis-ci.org/exercism/xfsharp) [![Build status](https://ci.appveyor.com/api/projects/status/7r5bbsonqonf7d8t/branch/master?svg=true)](https://ci.appveyor.com/project/ErikSchierboom/xfsharp-8gbdd/branch/master) [![CircleCI](https://circleci.com/gh/exercism/xfsharp.svg?style=svg)](https://circleci.com/gh/exercism/xfsharp)
3
+ [![Build Status](https://travis-ci.org/exercism/fsharp.svg?branch=master)](https://travis-ci.org/exercism/fsharp)
4
4
 
5
5
  Exercism exercises in F#
6
6
 
@@ -2,5 +2,6 @@
2
2
  .DS_Store
3
3
  bin/configlet
4
4
  bin/configlet.exe
5
+ tmp
5
6
  .apl.history
6
7
  *.log
@@ -1,5 +1,11 @@
1
1
  language: bash
2
2
 
3
- script:
3
+ before_install:
4
+ - wget ftp://ftp.gnu.org/gnu/apl/apl_1.6-1_amd64.deb
5
+ - sudo dpkg -i apl_1.6-1_amd64.deb
6
+ - cp -rv .travis/.gnu-apl ~
4
7
  - bin/fetch-configlet
8
+
9
+ script:
5
10
  - bin/configlet lint .
11
+ - bin/run-all-tests
@@ -0,0 +1,359 @@
1
+ ###############################################################################
2
+ #
3
+ # this file contains user preferences for GNU APL.
4
+ #
5
+ # It should live in:
6
+ #
7
+ # (1) in folder gnu-apl of the system configuration directory. or
8
+ # (2) in folder .gnu-apl in the user's home
9
+ #
10
+ # In both cases the file name should be 'preferences'
11
+ #
12
+ # The system configuration directory is usually /etc or /etc/local
13
+ # It can be overridden by ./configure --sysconfdir=something-else
14
+ #
15
+ # If both files are present then (1) is read before (2) so that for
16
+ # duplicate settings in both files (2) prevails.
17
+ #
18
+ # Command line options take precedence over settings in any of these files.
19
+ #
20
+ # The initial content of this files contains all possible settings, but
21
+ # commented out. You should not remove lines but rather comment or
22
+ # uncomment them.
23
+ #
24
+
25
+
26
+ ###############################################################################
27
+ #
28
+ # WELCOME MESSAGE
29
+ #
30
+ # Print (or don't) a welcome message on start-up
31
+ #
32
+ # The corresponding command line options is --silent
33
+ #
34
+ Welcome Yes (default)
35
+ # Welcome No
36
+
37
+
38
+ ###############################################################################
39
+ #
40
+ # OUTPUT COLORING
41
+ #
42
+ # Output coloring can cause problems when, for example:
43
+ #
44
+ # (a) you run GNU APL as script
45
+ # (b) you use a black background
46
+ # (c) you run GNU APL from emacs
47
+ # (d) you run GNU APL from a different terminal than color xterm
48
+ #
49
+ # In case (a) you should use the --script command line option and
50
+ # leave Color as is.
51
+ #
52
+ # In cases (b), (c), and (d) you can uncomment the 'Color No' line below.
53
+ # This only affects the initial state of output coloring; you can
54
+ # re-enable colors later with APL command ]XTERM ON.
55
+ #
56
+ # The corresponding command line options are --Color and --noColor
57
+ #
58
+ # If your terminal does not understand the ANSI escape sequences,
59
+ # or if you don't like to provide escape sequences, then you can set Color
60
+ # to "curses" and set color numbers instead of escape sequences below. This
61
+ # requires that certain environment variables (e.g. TERM) are set properly
62
+ # and that your terminfo database contains the terminal you use.
63
+ #
64
+ # Color ANSI (default)
65
+ Color CURSES
66
+ # Color No
67
+ #
68
+ # If you want to disable coloring initially, but switch to curses if the
69
+ # command ]COLOR (or the equivalent but now obsolete command ]XTERM)
70
+ # is given later on, then you can give the color command twice:
71
+ #
72
+ # Color CURSES
73
+ # Color No
74
+ #
75
+
76
+
77
+ ###############################################################################
78
+ #
79
+ # OUTPUT COLOR ESCAPE SEQUENCES FOR ANSI TERMINALS
80
+ #
81
+ # Output coloring is implemented as follows:
82
+ #
83
+ # There are 4 output channels called CIN, COUT, CERR, and UERR
84
+ #
85
+ # CIN is the echo of the input typed by the user,
86
+ # COUT is the normal output of the APL interpreter,
87
+ # CERR is additional error information, in particular logging.
88
+ # UERR is output of the APL interpreter containing error messages,
89
+ #
90
+ # CIN, COUT, and UERR appear on stdout while CERR appears on stderr.
91
+ # Normally stdout and stderr are both displayed on the same terminal,
92
+ # but output redirection in the shell can make a difference.
93
+ #
94
+ # When the interpreter changes from one output channel to another, for
95
+ # instance from CIN to COUT after the user has entered a line, then an
96
+ # escape sequence (actually, any short sequence of characters) is sent
97
+ # to the real output channel (i,e. stdout or stderr). The new channel
98
+ # determines which sequence is sent:
99
+ #
100
+ # CIN: CIN-SEQUENCE CLEAR-EOL
101
+ # COUT: COUT-SEQUENCE CLEAR-EOL
102
+ # CERR: CERR-SEQUENCE CLEAR-EOL
103
+ #UCERR: UERR-SEQUENCE CLEAR-EOL
104
+ #
105
+ # In addition, when the interpreter exists, then a sequence
106
+ #
107
+ # RESET-SEQUENCE CLEAR-EOL
108
+ #
109
+ # is sent which should set the colors to their initial state.
110
+ #
111
+ # The reason for sending CLEAR-EOL (i.e. clear to end of line) is to color
112
+ # the entire next line not only the chars printed on the next line.
113
+ #
114
+ # Unfortunately it is difficult, if not impossible, to read the current
115
+ # color setting from the terminal. Therefore the following is assumed:
116
+ #
117
+ # "GNU APL is started in a color xterm with white background".
118
+ #
119
+ # Color xterm is a VT100 (or ANSI) compatible terminal emulation.
120
+ # If this assumption is correct, then everything should be fine. Otherwise
121
+ # you may want to change the escape sequence sent to the terminal below.
122
+ # The numbers below are the decimal values of the bytes sent to the terminal;
123
+ # 27 is the escape character, for example. In order to change some or all
124
+ # sequences, uncomment the corresponding line and change the hex numbers
125
+ # (most likely the columns background and foreground).
126
+ # Each sequence can be up to 20 characters long.
127
+ #
128
+ # The default setting (i.e. for a white background) is this:
129
+ #
130
+ # VT100: foreground background
131
+ # color | | color
132
+ # V V
133
+ # // ESC [ 0 ; 3 fg ; 4 bg m
134
+ # CIN-SEQUENCE 1b 5b 30 3b 33 30 3b 34 37 6d // ESC [0;30;47m
135
+ # COUT-SEQUENCE 1b 5b 30 3b 33 30 3b 34 38 6d // ESC [0;30;48m
136
+ # CERR-SEQUENCE 1b 5b 30 3b 33 35 3b 34 38 6d // ESC [0;35;48m
137
+ # UERR-SEQUENCE 1b 5b 30 3b 33 35 3b 34 38 6d // ESC [0;35;48m
138
+ # RESET-SEQUENCE 1b 5b 30 3b 33 39 3b 34 39 6d // ESC [0;39;49m
139
+ # CLEAR-EOL-SEQUENCE 1b 5b 4B // ESC [K
140
+ # CLEAR-EOS-SEQUENCE 1b 5b 4A // ESC [J
141
+ #
142
+ # On a black background (still assuming VT100 so that the CLEAR-EOL-SEQUENCE
143
+ # does not need to be re-defined), the following may be more suitable:
144
+ #
145
+ # CIN-SEQUENCE 1b 5b 30 3b 33 32 3b 34 30 6d // ESC [0;32;40m
146
+ # COUT-SEQUENCE 1b 5b 30 3b 33 37 3b 34 30 6d // ESC [0;37;40m
147
+ # CERR-SEQUENCE 1b 5b 30 3b 33 31 3b 34 30 6d // ESC [0;31;40m
148
+ # UERR-SEQUENCE 1b 5b 30 3b 33 31 3b 34 30 6d // ESC [0;31;40m
149
+ # RESET-SEQUENCE 1b 5b 30 3b 33 37 3b 34 30 6d // ESC [0;37;48m
150
+ CIN-SEQUENCE 1b 5b 31 3b 33 32 6d // ESC [1;32m
151
+ COUT-SEQUENCE 1b 5b 30 3b 33 37 6d // ESC [0;37m
152
+ CERR-SEQUENCE 1b 5b 30 3b 33 31 6d // ESC [0;31m
153
+ UERR-SEQUENCE 1b 5b 30 3b 33 31 6d // ESC [0;31m
154
+ RESET-SEQUENCE 1b 5b 30 3b 33 37 6d // ESC [0;37;48m
155
+ #
156
+ #
157
+
158
+
159
+ ###############################################################################
160
+ #
161
+ # OUTPUT COLOR NUMBER FOR CURSES
162
+ #
163
+ # There is second way of specifying colors that uses the curses library.
164
+ # Instead of specifying the escape sequences sent to the terminal you
165
+ # only need to specify the colors wanted and curses will provide the escape
166
+ # sequences needed.
167
+ #
168
+ # Numbers for colors seem to be (nota bene: the author is color-blind):
169
+ #
170
+ # 0: black
171
+ # 1: blue
172
+ # 2: green
173
+ # 3: cyan
174
+ # 4: red
175
+ # 5: magenta
176
+ # 6: yellow
177
+ # 7: white
178
+ #
179
+ # The colors are specified as numbers like this:
180
+ #
181
+ # CIN-FOREGROUND 0
182
+ # CIN-BACKGROUND 7
183
+ # COUT-FOREGROUND 2
184
+ # COUT-BACKGROUND 7
185
+ # CERR-FOREGROUND 5
186
+ # CERR-BACKGROUND 8
187
+ # UERR-FOREGROUND 5
188
+ # UERR-BACKGROUND 8
189
+ #
190
+ # or, for dark background:
191
+ #
192
+ # CIN-FOREGROUND 2
193
+ # CIN-BACKGROUND 0
194
+ # COUT-FOREGROUND 7
195
+ # COUT-BACKGROUND 0
196
+ # CERR-FOREGROUND 5
197
+ # CERR-BACKGROUND 0
198
+ # UERR-FOREGROUND 5
199
+ # UERR-BACKGROUND 0
200
+ #
201
+ # Normally the two methods (escape sequences vs. color numbers) shall not
202
+ # be mixed. If they are mixed then the last entry in this file determines
203
+ # which method will be used. Also, the numbers for colors are different
204
+ # in both methods.
205
+ #
206
+
207
+ ###############################################################################
208
+ #
209
+ # INPUT ESC SEQUENCES
210
+ #
211
+ # Below you can configure the ESC (or other) sequence send by the cursor-up,
212
+ # cursor-down, cursor-left, cursor-right, Home, End, Ins, and Del keys of
213
+ # your keyboard.
214
+ #
215
+ # The sequences can be set explicitly (in the following) or via CURSES
216
+ # The latter (CURSES) may fail work because the sequences reported by
217
+ # CURSES may be different from the sequences sent by the keyboard.
218
+ #
219
+ Keyboard NOCURSES (default)
220
+ # Keyboard CURSES
221
+ #
222
+ # KEY-CURSOR-UP 1b 5b 41
223
+ # KEY-CURSOR-DOWN 1b 5b 42
224
+ # KEY-CURSOR-RIGHT 1b 5b 43
225
+ # KEY-CURSOR-LEFT 1b 5b 44
226
+ # KEY-CURSOR-END 1b 5b 46
227
+ # KEY-CURSOR-HOME 1b 5b 48
228
+ # KEY-INSMODE 1b 5b 32 7e
229
+ # KEY-DELETE 1b 5b 33 7e
230
+ #
231
+
232
+ ###############################################################################
233
+ #
234
+ # SHARED VARIABLES
235
+ #
236
+ # shared variables ⎕SVO, ⎕SVR, ... fork a helper process (APserver) to
237
+ # communicate with other APL processors. If you do not need these functions
238
+ # then you can prevent starting of APserver by setting SharedVars to Disabled.
239
+ # If SharedVars are disabled then GNU APL starts a little faster and, of
240
+ # course, ⎕SVO and friends won't work.
241
+ #
242
+ # The corresponding command line options are --SV and --noSV
243
+ #
244
+ SharedVars Enabled (default)
245
+ # SharedVars Disabled
246
+
247
+
248
+ ###############################################################################
249
+ #
250
+ # LOGGING FACILITIES
251
+ #
252
+ # If dynamic logging is disabled then these settings have no effect.
253
+ #
254
+ # Otherwise you can specify the Logging facilities (numbered 1-37 or more)
255
+ # that shall be turned on when the APL interpreter starts, This option can
256
+ # be used several times.
257
+ #
258
+ # See command ]LOG for available logging facilities
259
+ #
260
+ # The corresponding command line option is -l <num>
261
+ #
262
+ # Logging 1
263
+ # Logging 2
264
+ # ...
265
+ # Logging 37
266
+
267
+
268
+ ###############################################################################
269
+ #
270
+ # GNU APL uses library numbers from 0 to 9 in commands )LOAD, )SAVE, and )COPY,
271
+ # for example:
272
+ #
273
+ # )LOAD 1 workspace
274
+ #
275
+ # Commands )IN and )OUT use library number 0 implicitly;
276
+ # )LOAD, )SAVE, and )COPY use library number 0 implicitly when no
277
+ # library number is given.
278
+ #
279
+ # The directories corresponding to the library numbers can be configured below.
280
+ # library numbers 3, 4, and 5 are used (and overridden) libraries shipped with
281
+ # GNU APL
282
+ #
283
+ # LIBREF-0 /home/xyz/my-own-libs
284
+ # LIBREF-1 /home/xyz/my-group-libs
285
+ # LIBREF-2 /group/abc/other-libs
286
+ LIBREF-3 /usr/lib/apl/wslib3
287
+ LIBREF-4 /usr/lib/apl/wslib4
288
+ LIBREF-5 /usr/lib/apl/wslib5
289
+ # LIBREF-6 /usr/lib/gnu-apl/lib-6
290
+ # LIBREF-7 /usr/lib/gnu-apl/lib-7
291
+ # LIBREF-8 /usr/lib/gnu-apl/lib-8
292
+ # LIBREF-9 /usr/lib/gnu-apl/lib-9
293
+ #
294
+
295
+
296
+ ###############################################################################
297
+ #
298
+ # READLINE HISTORY PARAMETERS
299
+ #
300
+ # GNU APL provides a history of lines entered by the user in immediate
301
+ # execution mode and ∇-edit mode.
302
+ #
303
+ # Below the number of history lines and the location of the history file
304
+ # can be configured.
305
+ #
306
+ READLINE_HISTORY_LEN 500
307
+ READLINE_HISTORY_PATH .apl.history
308
+
309
+ # The history can serve two purposes: to recall lines that were previously
310
+ # and to list what was done (with command )HISTORY). For the latter purpose
311
+ # it is normally convenient to show the new ⎕CR of a function that was edited
312
+ # instead of the command that started the editor. The following parameter
313
+ # controls whether the editor command (like ∇foo ) or the new ⎕CR of the
314
+ # function shall be inserted into the history.
315
+ #
316
+ # The default (modified) shows the editor command if the function was opened
317
+ # but not changed and the new ⎕CR if the function was changed.
318
+ #
319
+ # NABLA-TO-HISTORY Never
320
+ NABLA-TO-HISTORY Modified (default)
321
+ # NABLA-TO-HISTORY Always
322
+
323
+
324
+ ###############################################################################
325
+ #
326
+ # CREATE BACKUP BEFORE )SAVE or )DUMP WORKSPACE
327
+ #
328
+ BACKUP_BEFORE_SAVE yes
329
+
330
+
331
+ ###############################################################################
332
+ #
333
+ # GNU APL assumes a particular layout of your keyboard (and assumes that you
334
+ # do your best to obtain that layout). That assumed layout is shown when you
335
+ # give the ]KEYB command.
336
+ #
337
+ # If your keyboard layout differs from the assumed keyboard for some reason,
338
+ # then the ]KEYB command will show the wrong layout. You can fix this by
339
+ # providing your own keyboard file which (when specified) is shown by the
340
+ # ]KEYB command instead of the assumed layout.
341
+ #
342
+ # You can use one of the files called 'keyboard1.txt' somewhere below the
343
+ # directory named 'support-files' as a starting point for your own layout
344
+ # and uncomment the following setting:
345
+ #
346
+ # KEYBOARD_LAYOUT_FILE /etc/gnu-apl.d/keyboard1.txt
347
+ #
348
+
349
+ ###############################################################################
350
+ #
351
+ # Normally you exit GNU APL by issuing the command )OFF and hitting
352
+ # ^D (aka. end-of-input) has no effect.
353
+ #
354
+ # You can make GNU APL exit after a number of ^Ds in a row by specifying
355
+ # a (small) positive number below. Note thsat the interpreter will always
356
+ # exit if a large number of ^Ds (or EOFs) are read within a short while.
357
+ #
358
+ CONTROL-Ds-TO-EXIT 0
359
+
@@ -0,0 +1,21 @@
1
+ #!/bin/bash
2
+
3
+ STATUS=0
4
+ APL=/usr/bin/apl
5
+ APL_OPTS='--silent --Color'
6
+
7
+ cp --recursive exercises tmp
8
+
9
+ for exercise in tmp/*; do
10
+ pushd $exercise
11
+ for example in *-example.apl; do
12
+ mv $example ${example/-example/}
13
+ done
14
+ if ! ${APL} ${APL_OPTS} -T *.tc; then
15
+ STATUS=1
16
+ fi
17
+ popd
18
+ done
19
+
20
+ echo "Exiting with status ${STATUS}."
21
+ exit $STATUS
@@ -16,7 +16,10 @@
16
16
  "core": true,
17
17
  "difficulty": 1,
18
18
  "slug": "two-fer",
19
- "topics": null,
19
+ "topics": [
20
+ "strings",
21
+ "conditionals"
22
+ ],
20
23
  "unlocked_by": null,
21
24
  "uuid": "74515d45-565b-4be2-96c4-77e58efa9257"
22
25
  },
@@ -1,6 +1,10 @@
1
1
  ## Recommended Learning Resources
2
2
 
3
- * [25 Resources to get you started with PHP from scratch](http://code.tutsplus.com/articles/25-resources-to-get-you-started-with-php-from-scratch--net-2223)
3
+ * [PHP The Right Way](http://www.phptherightway.com/)
4
+ * [PHP Best Practices](https://phpbestpractices.org/)
5
+ * [Best practices for Modern PHP Development](https://www.airpair.com/php/posts/best-practices-for-modern-php-development)
6
+ * [PHP Cheatsheets](http://phpcheatsheets.com/)
7
+ * [PHP Security Cheatsheet](https://www.owasp.org/index.php/PHP_Security_Cheat_Sheet)
4
8
 
5
9
  ## Recommended References
6
10
 
@@ -14,12 +14,12 @@ matrix:
14
14
  - ./xswift-test-spm
15
15
  env: JOB=SPM
16
16
  os: osx
17
- osx_image: xcode8.3
17
+ osx_image: xcode9
18
18
  - script:
19
19
  - bin/fetch-configlet
20
20
  - bin/configlet lint .
21
- - docker run -v `pwd`:/swift norionomura/sourcekit:302 bash -c "cd /swift && ./xswift-test-spm"
22
- env: JOB=Linux302
21
+ - docker run -v `pwd`:/swift norionomura/swift:4020170908a bash -c "cd /swift && ./xswift-test-spm"
22
+ env: JOB=Linux40
23
23
  sudo: required
24
24
  services: docker
25
25
  - script:
@@ -1,6 +1,6 @@
1
1
  machine:
2
2
  xcode:
3
- version: "8.2"
3
+ version: "9.0"
4
4
  test:
5
5
  override:
6
6
  - ./xswift-test-spm
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.34
4
+ version: 2.2.1.35
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-09-21 00:00:00.000000000 Z
11
+ date: 2017-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip
@@ -5217,9 +5217,11 @@ files:
5217
5217
  - tracks/gnu-apl/.git
5218
5218
  - tracks/gnu-apl/.gitignore
5219
5219
  - tracks/gnu-apl/.travis.yml
5220
+ - tracks/gnu-apl/.travis/.gnu-apl/preferences
5220
5221
  - tracks/gnu-apl/LICENSE
5221
5222
  - tracks/gnu-apl/README.md
5222
5223
  - tracks/gnu-apl/bin/fetch-configlet
5224
+ - tracks/gnu-apl/bin/run-all-tests
5223
5225
  - tracks/gnu-apl/config.json
5224
5226
  - tracks/gnu-apl/config/exercise-readme-insert.md
5225
5227
  - tracks/gnu-apl/config/exercise_readme.go.tmpl