trackler 2.2.1.24 → 2.2.1.25
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/trackler/version.rb +1 -1
- data/problem-specifications/TOPICS.txt +73 -73
- data/tracks/bash/config.json +82 -73
- data/tracks/bash/config/maintainers.json +9 -9
- data/tracks/bash/exercises/nucleotide-count/README.md +38 -0
- data/tracks/bash/exercises/nucleotide-count/example.sh +38 -0
- data/tracks/bash/exercises/nucleotide-count/nucleotide_count_test.sh +29 -0
- data/tracks/csharp/.travis.yml +9 -2
- data/tracks/csharp/build.cake +7 -34
- data/tracks/csharp/build.ps1 +2 -2
- data/tracks/csharp/build.sh +2 -2
- data/tracks/csharp/docs/GENERATORS.md +102 -0
- data/tracks/csharp/exercises/Exercises.sln +669 -0
- data/tracks/csharp/exercises/queen-attack/Example.cs +14 -1
- data/tracks/csharp/exercises/queen-attack/QueenAttack.cs +6 -1
- data/tracks/csharp/exercises/queen-attack/QueenAttackTest.cs +57 -19
- data/tracks/csharp/generators/Exercises/QueenAttack.cs +85 -0
- data/tracks/d/README.md +3 -2
- data/tracks/d/docs/SNIPPET.txt +7 -0
- data/tracks/d/exercises/crypto-square/.dub/dub.json +6 -0
- data/tracks/d/exercises/crypto-square/example/crypto_square.d +4 -2
- data/tracks/dart/exercises/bob/pubspec.lock +28 -16
- data/tracks/dart/exercises/bob/pubspec.yaml +1 -1
- data/tracks/dart/exercises/bob/test/bob_test.dart +2 -0
- data/tracks/dart/exercises/difference-of-squares/pubspec.lock +28 -16
- data/tracks/dart/exercises/difference-of-squares/pubspec.yaml +1 -1
- data/tracks/dart/exercises/gigasecond/pubspec.lock +28 -16
- data/tracks/dart/exercises/gigasecond/pubspec.yaml +1 -1
- data/tracks/dart/exercises/hamming/pubspec.lock +28 -16
- data/tracks/dart/exercises/hamming/pubspec.yaml +1 -1
- data/tracks/dart/exercises/hello-world/pubspec.lock +28 -16
- data/tracks/dart/exercises/hello-world/pubspec.yaml +1 -1
- data/tracks/dart/exercises/hello-world/test/hello_world_test.dart +13 -15
- data/tracks/dart/exercises/leap/pubspec.lock +28 -16
- data/tracks/dart/exercises/leap/pubspec.yaml +1 -1
- data/tracks/dart/exercises/rna-transcription/pubspec.lock +28 -16
- data/tracks/dart/exercises/rna-transcription/pubspec.yaml +1 -1
- data/tracks/elixir/exercises/pig-latin/example.exs +17 -18
- data/tracks/elixir/exercises/pig-latin/pig_latin_test.exs +16 -1
- data/tracks/fsharp/build.cake +0 -2
- data/tracks/go/exercises/error-handling/.meta/description.md +39 -0
- data/tracks/go/exercises/error-handling/.meta/hints.md +5 -0
- data/tracks/go/exercises/error-handling/.meta/metadata.yml +2 -0
- data/tracks/go/exercises/error-handling/README.md +43 -5
- data/tracks/go/exercises/error-handling/common.go +4 -3
- data/tracks/go/exercises/error-handling/error_handling_test.go +1 -38
- data/tracks/go/exercises/secret-handshake/secret_handshake_test.go +3 -1
- data/tracks/haxe/docs/LEARNING.md +8 -0
- data/tracks/java/.gitignore +2 -1
- data/tracks/java/config.json +337 -491
- data/tracks/java/config/maintainers.json +26 -26
- data/tracks/java/exercises/bob/src/test/java/BobTest.java +7 -1
- data/tracks/java/exercises/rna-transcription/src/example/java/RnaTranscription.java +4 -2
- data/tracks/java/exercises/rna-transcription/src/main/java/RnaTranscription.java +5 -3
- data/tracks/java/exercises/rna-transcription/src/test/java/RnaTranscriptionTest.java +21 -26
- data/tracks/javascript/config.json +662 -664
- data/tracks/javascript/config/maintainers.json +35 -35
- data/tracks/javascript/exercises/simple-cipher/simple-cipher.spec.js +7 -3
- data/tracks/plsql/config.json +52 -66
- data/tracks/plsql/docs/SNIPPET.txt +6 -0
- data/tracks/plsql/exercises/hello-world/example.plsql +20 -0
- data/tracks/plsql/exercises/hello-world/hello_world#.plsql +20 -0
- data/tracks/plsql/exercises/hello-world/ut_hello_world#.plsql +60 -0
- data/tracks/sml/Makefile +5 -0
- data/tracks/sml/bin/generate +3 -4
- data/tracks/sml/config.json +55 -5
- data/tracks/sml/exercises/collatz-conjecture/README.md +63 -0
- data/tracks/sml/exercises/collatz-conjecture/collatz-conjecture.sml +4 -0
- data/tracks/sml/exercises/collatz-conjecture/example.sml +17 -0
- data/tracks/sml/exercises/collatz-conjecture/test.sml +30 -0
- data/tracks/sml/exercises/collatz-conjecture/testlib.sml +159 -0
- data/tracks/sml/exercises/leap/README.md +63 -0
- data/tracks/sml/exercises/leap/example.sml +2 -0
- data/tracks/sml/exercises/leap/leap.sml +2 -0
- data/tracks/sml/exercises/leap/test.sml +24 -0
- data/tracks/sml/exercises/leap/testlib.sml +159 -0
- data/tracks/sml/exercises/rna-transcription/README.md +55 -0
- data/tracks/sml/exercises/rna-transcription/example.sml +20 -0
- data/tracks/sml/exercises/rna-transcription/rna-transcription.sml +2 -0
- data/tracks/sml/exercises/rna-transcription/test.sml +36 -0
- data/tracks/sml/exercises/rna-transcription/testlib.sml +159 -0
- data/tracks/sml/exercises/sum-of-multiples/README.md +48 -0
- data/tracks/sml/exercises/sum-of-multiples/example.sml +8 -0
- data/tracks/sml/exercises/sum-of-multiples/sum-of-multiples.sml +2 -0
- data/tracks/sml/exercises/sum-of-multiples/test.sml +48 -0
- data/tracks/sml/exercises/sum-of-multiples/testlib.sml +159 -0
- data/tracks/sml/exercises/two-fer/README.md +78 -0
- data/tracks/sml/exercises/two-fer/example.sml +1 -0
- data/tracks/sml/exercises/two-fer/test.sml +21 -0
- data/tracks/sml/exercises/two-fer/testlib.sml +159 -0
- data/tracks/sml/exercises/two-fer/two-fer.sml +2 -0
- metadata +43 -5
- data/tracks/csharp/exercises/Exercises.All.sln +0 -1545
- data/tracks/csharp/exercises/Exercises.Default.sln +0 -1503
- data/tracks/csharp/exercises/Exercises.Refactoring.sln +0 -61
@@ -42,13 +42,13 @@ packages:
|
|
42
42
|
name: cli_util
|
43
43
|
url: "https://pub.dartlang.org"
|
44
44
|
source: hosted
|
45
|
-
version: "0.1.
|
45
|
+
version: "0.1.2"
|
46
46
|
collection:
|
47
47
|
description:
|
48
48
|
name: collection
|
49
49
|
url: "https://pub.dartlang.org"
|
50
50
|
source: hosted
|
51
|
-
version: "1.14.
|
51
|
+
version: "1.14.3"
|
52
52
|
convert:
|
53
53
|
description:
|
54
54
|
name: convert
|
@@ -60,7 +60,7 @@ packages:
|
|
60
60
|
name: crypto
|
61
61
|
url: "https://pub.dartlang.org"
|
62
62
|
source: hosted
|
63
|
-
version: "2.0.
|
63
|
+
version: "2.0.2"
|
64
64
|
csslib:
|
65
65
|
description:
|
66
66
|
name: csslib
|
@@ -90,7 +90,7 @@ packages:
|
|
90
90
|
name: http
|
91
91
|
url: "https://pub.dartlang.org"
|
92
92
|
source: hosted
|
93
|
-
version: "0.11.3+
|
93
|
+
version: "0.11.3+14"
|
94
94
|
http_multi_server:
|
95
95
|
description:
|
96
96
|
name: http_multi_server
|
@@ -109,6 +109,12 @@ packages:
|
|
109
109
|
url: "https://pub.dartlang.org"
|
110
110
|
source: hosted
|
111
111
|
version: "1.0.0"
|
112
|
+
js:
|
113
|
+
description:
|
114
|
+
name: js
|
115
|
+
url: "https://pub.dartlang.org"
|
116
|
+
source: hosted
|
117
|
+
version: "0.6.1"
|
112
118
|
kernel:
|
113
119
|
description:
|
114
120
|
name: kernel
|
@@ -126,25 +132,31 @@ packages:
|
|
126
132
|
name: matcher
|
127
133
|
url: "https://pub.dartlang.org"
|
128
134
|
source: hosted
|
129
|
-
version: "0.12.1+
|
135
|
+
version: "0.12.1+2"
|
130
136
|
meta:
|
131
137
|
description:
|
132
138
|
name: meta
|
133
139
|
url: "https://pub.dartlang.org"
|
134
140
|
source: hosted
|
135
|
-
version: "1.
|
141
|
+
version: "1.1.1"
|
136
142
|
mime:
|
137
143
|
description:
|
138
144
|
name: mime
|
139
145
|
url: "https://pub.dartlang.org"
|
140
146
|
source: hosted
|
141
147
|
version: "0.9.3"
|
148
|
+
node_preamble:
|
149
|
+
description:
|
150
|
+
name: node_preamble
|
151
|
+
url: "https://pub.dartlang.org"
|
152
|
+
source: hosted
|
153
|
+
version: "1.4.0"
|
142
154
|
package_config:
|
143
155
|
description:
|
144
156
|
name: package_config
|
145
157
|
url: "https://pub.dartlang.org"
|
146
158
|
source: hosted
|
147
|
-
version: "1.0.
|
159
|
+
version: "1.0.2"
|
148
160
|
package_resolver:
|
149
161
|
description:
|
150
162
|
name: package_resolver
|
@@ -162,7 +174,7 @@ packages:
|
|
162
174
|
name: plugin
|
163
175
|
url: "https://pub.dartlang.org"
|
164
176
|
source: hosted
|
165
|
-
version: "0.2.0"
|
177
|
+
version: "0.2.0+1"
|
166
178
|
pool:
|
167
179
|
description:
|
168
180
|
name: pool
|
@@ -180,19 +192,19 @@ packages:
|
|
180
192
|
name: shelf
|
181
193
|
url: "https://pub.dartlang.org"
|
182
194
|
source: hosted
|
183
|
-
version: "0.
|
195
|
+
version: "0.7.0"
|
184
196
|
shelf_packages_handler:
|
185
197
|
description:
|
186
198
|
name: shelf_packages_handler
|
187
199
|
url: "https://pub.dartlang.org"
|
188
200
|
source: hosted
|
189
|
-
version: "1.0.
|
201
|
+
version: "1.0.2"
|
190
202
|
shelf_static:
|
191
203
|
description:
|
192
204
|
name: shelf_static
|
193
205
|
url: "https://pub.dartlang.org"
|
194
206
|
source: hosted
|
195
|
-
version: "0.2.
|
207
|
+
version: "0.2.5"
|
196
208
|
shelf_web_socket:
|
197
209
|
description:
|
198
210
|
name: shelf_web_socket
|
@@ -222,7 +234,7 @@ packages:
|
|
222
234
|
name: stack_trace
|
223
235
|
url: "https://pub.dartlang.org"
|
224
236
|
source: hosted
|
225
|
-
version: "1.
|
237
|
+
version: "1.8.0"
|
226
238
|
stream_channel:
|
227
239
|
description:
|
228
240
|
name: stream_channel
|
@@ -246,13 +258,13 @@ packages:
|
|
246
258
|
name: test
|
247
259
|
url: "https://pub.dartlang.org"
|
248
260
|
source: hosted
|
249
|
-
version: "0.12.
|
261
|
+
version: "0.12.24+2"
|
250
262
|
typed_data:
|
251
263
|
description:
|
252
264
|
name: typed_data
|
253
265
|
url: "https://pub.dartlang.org"
|
254
266
|
source: hosted
|
255
|
-
version: "1.1.
|
267
|
+
version: "1.1.4"
|
256
268
|
utf:
|
257
269
|
description:
|
258
270
|
name: utf
|
@@ -270,7 +282,7 @@ packages:
|
|
270
282
|
name: web_socket_channel
|
271
283
|
url: "https://pub.dartlang.org"
|
272
284
|
source: hosted
|
273
|
-
version: "1.0.
|
285
|
+
version: "1.0.5"
|
274
286
|
yaml:
|
275
287
|
description:
|
276
288
|
name: yaml
|
@@ -278,4 +290,4 @@ packages:
|
|
278
290
|
source: hosted
|
279
291
|
version: "2.1.12"
|
280
292
|
sdks:
|
281
|
-
dart: ">=1.23.0 <2.0.0"
|
293
|
+
dart: ">=1.23.0 <2.0.0-dev.infinity"
|
@@ -2,23 +2,21 @@ import "package:test/test.dart";
|
|
2
2
|
import "package:hello_world/hello_world.dart";
|
3
3
|
|
4
4
|
void main() {
|
5
|
-
|
6
|
-
var helloWorld = new HelloWorld();
|
5
|
+
var helloWorld = new HelloWorld();
|
7
6
|
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
test("should work", () {
|
8
|
+
helloWorld.hello();
|
9
|
+
});
|
11
10
|
|
12
|
-
|
13
|
-
|
14
|
-
|
11
|
+
test("says hello world with no name", () {
|
12
|
+
expect(helloWorld.hello(), equals("Hello, World!"));
|
13
|
+
}, skip: true);
|
15
14
|
|
16
|
-
|
17
|
-
|
18
|
-
|
15
|
+
test("says hello to bob", () {
|
16
|
+
expect(helloWorld.hello("Bob"), equals("Hello, Bob!"));
|
17
|
+
}, skip: true);
|
19
18
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
});
|
19
|
+
test("says hello to sally", () {
|
20
|
+
expect(helloWorld.hello("Sally"), equals("Hello, Sally!"));
|
21
|
+
}, skip: true);
|
24
22
|
}
|
@@ -42,13 +42,13 @@ packages:
|
|
42
42
|
name: cli_util
|
43
43
|
url: "https://pub.dartlang.org"
|
44
44
|
source: hosted
|
45
|
-
version: "0.1.
|
45
|
+
version: "0.1.2"
|
46
46
|
collection:
|
47
47
|
description:
|
48
48
|
name: collection
|
49
49
|
url: "https://pub.dartlang.org"
|
50
50
|
source: hosted
|
51
|
-
version: "1.14.
|
51
|
+
version: "1.14.3"
|
52
52
|
convert:
|
53
53
|
description:
|
54
54
|
name: convert
|
@@ -60,7 +60,7 @@ packages:
|
|
60
60
|
name: crypto
|
61
61
|
url: "https://pub.dartlang.org"
|
62
62
|
source: hosted
|
63
|
-
version: "2.0.
|
63
|
+
version: "2.0.2"
|
64
64
|
csslib:
|
65
65
|
description:
|
66
66
|
name: csslib
|
@@ -90,7 +90,7 @@ packages:
|
|
90
90
|
name: http
|
91
91
|
url: "https://pub.dartlang.org"
|
92
92
|
source: hosted
|
93
|
-
version: "0.11.3+
|
93
|
+
version: "0.11.3+14"
|
94
94
|
http_multi_server:
|
95
95
|
description:
|
96
96
|
name: http_multi_server
|
@@ -109,6 +109,12 @@ packages:
|
|
109
109
|
url: "https://pub.dartlang.org"
|
110
110
|
source: hosted
|
111
111
|
version: "1.0.0"
|
112
|
+
js:
|
113
|
+
description:
|
114
|
+
name: js
|
115
|
+
url: "https://pub.dartlang.org"
|
116
|
+
source: hosted
|
117
|
+
version: "0.6.1"
|
112
118
|
kernel:
|
113
119
|
description:
|
114
120
|
name: kernel
|
@@ -126,25 +132,31 @@ packages:
|
|
126
132
|
name: matcher
|
127
133
|
url: "https://pub.dartlang.org"
|
128
134
|
source: hosted
|
129
|
-
version: "0.12.1+
|
135
|
+
version: "0.12.1+2"
|
130
136
|
meta:
|
131
137
|
description:
|
132
138
|
name: meta
|
133
139
|
url: "https://pub.dartlang.org"
|
134
140
|
source: hosted
|
135
|
-
version: "1.
|
141
|
+
version: "1.1.1"
|
136
142
|
mime:
|
137
143
|
description:
|
138
144
|
name: mime
|
139
145
|
url: "https://pub.dartlang.org"
|
140
146
|
source: hosted
|
141
147
|
version: "0.9.3"
|
148
|
+
node_preamble:
|
149
|
+
description:
|
150
|
+
name: node_preamble
|
151
|
+
url: "https://pub.dartlang.org"
|
152
|
+
source: hosted
|
153
|
+
version: "1.4.0"
|
142
154
|
package_config:
|
143
155
|
description:
|
144
156
|
name: package_config
|
145
157
|
url: "https://pub.dartlang.org"
|
146
158
|
source: hosted
|
147
|
-
version: "1.0.
|
159
|
+
version: "1.0.2"
|
148
160
|
package_resolver:
|
149
161
|
description:
|
150
162
|
name: package_resolver
|
@@ -162,7 +174,7 @@ packages:
|
|
162
174
|
name: plugin
|
163
175
|
url: "https://pub.dartlang.org"
|
164
176
|
source: hosted
|
165
|
-
version: "0.2.0"
|
177
|
+
version: "0.2.0+1"
|
166
178
|
pool:
|
167
179
|
description:
|
168
180
|
name: pool
|
@@ -180,19 +192,19 @@ packages:
|
|
180
192
|
name: shelf
|
181
193
|
url: "https://pub.dartlang.org"
|
182
194
|
source: hosted
|
183
|
-
version: "0.
|
195
|
+
version: "0.7.0"
|
184
196
|
shelf_packages_handler:
|
185
197
|
description:
|
186
198
|
name: shelf_packages_handler
|
187
199
|
url: "https://pub.dartlang.org"
|
188
200
|
source: hosted
|
189
|
-
version: "1.0.
|
201
|
+
version: "1.0.2"
|
190
202
|
shelf_static:
|
191
203
|
description:
|
192
204
|
name: shelf_static
|
193
205
|
url: "https://pub.dartlang.org"
|
194
206
|
source: hosted
|
195
|
-
version: "0.2.
|
207
|
+
version: "0.2.5"
|
196
208
|
shelf_web_socket:
|
197
209
|
description:
|
198
210
|
name: shelf_web_socket
|
@@ -222,7 +234,7 @@ packages:
|
|
222
234
|
name: stack_trace
|
223
235
|
url: "https://pub.dartlang.org"
|
224
236
|
source: hosted
|
225
|
-
version: "1.
|
237
|
+
version: "1.8.0"
|
226
238
|
stream_channel:
|
227
239
|
description:
|
228
240
|
name: stream_channel
|
@@ -246,13 +258,13 @@ packages:
|
|
246
258
|
name: test
|
247
259
|
url: "https://pub.dartlang.org"
|
248
260
|
source: hosted
|
249
|
-
version: "0.12.
|
261
|
+
version: "0.12.24+2"
|
250
262
|
typed_data:
|
251
263
|
description:
|
252
264
|
name: typed_data
|
253
265
|
url: "https://pub.dartlang.org"
|
254
266
|
source: hosted
|
255
|
-
version: "1.1.
|
267
|
+
version: "1.1.4"
|
256
268
|
utf:
|
257
269
|
description:
|
258
270
|
name: utf
|
@@ -270,7 +282,7 @@ packages:
|
|
270
282
|
name: web_socket_channel
|
271
283
|
url: "https://pub.dartlang.org"
|
272
284
|
source: hosted
|
273
|
-
version: "1.0.
|
285
|
+
version: "1.0.5"
|
274
286
|
yaml:
|
275
287
|
description:
|
276
288
|
name: yaml
|
@@ -278,4 +290,4 @@ packages:
|
|
278
290
|
source: hosted
|
279
291
|
version: "2.1.12"
|
280
292
|
sdks:
|
281
|
-
dart: ">=1.23.0 <2.0.0"
|
293
|
+
dart: ">=1.23.0 <2.0.0-dev.infinity"
|
@@ -42,13 +42,13 @@ packages:
|
|
42
42
|
name: cli_util
|
43
43
|
url: "https://pub.dartlang.org"
|
44
44
|
source: hosted
|
45
|
-
version: "0.1.
|
45
|
+
version: "0.1.2"
|
46
46
|
collection:
|
47
47
|
description:
|
48
48
|
name: collection
|
49
49
|
url: "https://pub.dartlang.org"
|
50
50
|
source: hosted
|
51
|
-
version: "1.14.
|
51
|
+
version: "1.14.3"
|
52
52
|
convert:
|
53
53
|
description:
|
54
54
|
name: convert
|
@@ -60,7 +60,7 @@ packages:
|
|
60
60
|
name: crypto
|
61
61
|
url: "https://pub.dartlang.org"
|
62
62
|
source: hosted
|
63
|
-
version: "2.0.
|
63
|
+
version: "2.0.2"
|
64
64
|
csslib:
|
65
65
|
description:
|
66
66
|
name: csslib
|
@@ -90,7 +90,7 @@ packages:
|
|
90
90
|
name: http
|
91
91
|
url: "https://pub.dartlang.org"
|
92
92
|
source: hosted
|
93
|
-
version: "0.11.3+
|
93
|
+
version: "0.11.3+14"
|
94
94
|
http_multi_server:
|
95
95
|
description:
|
96
96
|
name: http_multi_server
|
@@ -109,6 +109,12 @@ packages:
|
|
109
109
|
url: "https://pub.dartlang.org"
|
110
110
|
source: hosted
|
111
111
|
version: "1.0.0"
|
112
|
+
js:
|
113
|
+
description:
|
114
|
+
name: js
|
115
|
+
url: "https://pub.dartlang.org"
|
116
|
+
source: hosted
|
117
|
+
version: "0.6.1"
|
112
118
|
kernel:
|
113
119
|
description:
|
114
120
|
name: kernel
|
@@ -126,25 +132,31 @@ packages:
|
|
126
132
|
name: matcher
|
127
133
|
url: "https://pub.dartlang.org"
|
128
134
|
source: hosted
|
129
|
-
version: "0.12.1+
|
135
|
+
version: "0.12.1+2"
|
130
136
|
meta:
|
131
137
|
description:
|
132
138
|
name: meta
|
133
139
|
url: "https://pub.dartlang.org"
|
134
140
|
source: hosted
|
135
|
-
version: "1.
|
141
|
+
version: "1.1.1"
|
136
142
|
mime:
|
137
143
|
description:
|
138
144
|
name: mime
|
139
145
|
url: "https://pub.dartlang.org"
|
140
146
|
source: hosted
|
141
147
|
version: "0.9.3"
|
148
|
+
node_preamble:
|
149
|
+
description:
|
150
|
+
name: node_preamble
|
151
|
+
url: "https://pub.dartlang.org"
|
152
|
+
source: hosted
|
153
|
+
version: "1.4.0"
|
142
154
|
package_config:
|
143
155
|
description:
|
144
156
|
name: package_config
|
145
157
|
url: "https://pub.dartlang.org"
|
146
158
|
source: hosted
|
147
|
-
version: "1.0.
|
159
|
+
version: "1.0.2"
|
148
160
|
package_resolver:
|
149
161
|
description:
|
150
162
|
name: package_resolver
|
@@ -162,7 +174,7 @@ packages:
|
|
162
174
|
name: plugin
|
163
175
|
url: "https://pub.dartlang.org"
|
164
176
|
source: hosted
|
165
|
-
version: "0.2.0"
|
177
|
+
version: "0.2.0+1"
|
166
178
|
pool:
|
167
179
|
description:
|
168
180
|
name: pool
|
@@ -180,19 +192,19 @@ packages:
|
|
180
192
|
name: shelf
|
181
193
|
url: "https://pub.dartlang.org"
|
182
194
|
source: hosted
|
183
|
-
version: "0.
|
195
|
+
version: "0.7.0"
|
184
196
|
shelf_packages_handler:
|
185
197
|
description:
|
186
198
|
name: shelf_packages_handler
|
187
199
|
url: "https://pub.dartlang.org"
|
188
200
|
source: hosted
|
189
|
-
version: "1.0.
|
201
|
+
version: "1.0.2"
|
190
202
|
shelf_static:
|
191
203
|
description:
|
192
204
|
name: shelf_static
|
193
205
|
url: "https://pub.dartlang.org"
|
194
206
|
source: hosted
|
195
|
-
version: "0.2.
|
207
|
+
version: "0.2.5"
|
196
208
|
shelf_web_socket:
|
197
209
|
description:
|
198
210
|
name: shelf_web_socket
|
@@ -222,7 +234,7 @@ packages:
|
|
222
234
|
name: stack_trace
|
223
235
|
url: "https://pub.dartlang.org"
|
224
236
|
source: hosted
|
225
|
-
version: "1.
|
237
|
+
version: "1.8.0"
|
226
238
|
stream_channel:
|
227
239
|
description:
|
228
240
|
name: stream_channel
|
@@ -246,13 +258,13 @@ packages:
|
|
246
258
|
name: test
|
247
259
|
url: "https://pub.dartlang.org"
|
248
260
|
source: hosted
|
249
|
-
version: "0.12.
|
261
|
+
version: "0.12.24+2"
|
250
262
|
typed_data:
|
251
263
|
description:
|
252
264
|
name: typed_data
|
253
265
|
url: "https://pub.dartlang.org"
|
254
266
|
source: hosted
|
255
|
-
version: "1.1.
|
267
|
+
version: "1.1.4"
|
256
268
|
utf:
|
257
269
|
description:
|
258
270
|
name: utf
|
@@ -270,7 +282,7 @@ packages:
|
|
270
282
|
name: web_socket_channel
|
271
283
|
url: "https://pub.dartlang.org"
|
272
284
|
source: hosted
|
273
|
-
version: "1.0.
|
285
|
+
version: "1.0.5"
|
274
286
|
yaml:
|
275
287
|
description:
|
276
288
|
name: yaml
|
@@ -278,4 +290,4 @@ packages:
|
|
278
290
|
source: hosted
|
279
291
|
version: "2.1.12"
|
280
292
|
sdks:
|
281
|
-
dart: ">=1.23.0 <2.0.0"
|
293
|
+
dart: ">=1.23.0 <2.0.0-dev.infinity"
|