trackler 2.2.1.113 → 2.2.1.114

Sign up to get free protection for your applications and to get access to all the features.
Files changed (213) hide show
  1. checksums.yaml +4 -4
  2. data/lib/trackler/version.rb +1 -1
  3. data/tracks/bash/exercises/hello-world/hello_world.sh +1 -1
  4. data/tracks/c/config.json +24 -0
  5. data/tracks/c/exercises/two-fer/README.md +12 -0
  6. data/tracks/c/exercises/two-fer/makefile +25 -0
  7. data/tracks/c/exercises/two-fer/src/example.c +11 -0
  8. data/tracks/c/exercises/two-fer/src/example.h +6 -0
  9. data/tracks/c/exercises/two-fer/test/test_two_fer.c +51 -0
  10. data/tracks/c/exercises/two-fer/test/vendor/unity.c +1300 -0
  11. data/tracks/c/exercises/two-fer/test/vendor/unity.h +274 -0
  12. data/tracks/c/exercises/two-fer/test/vendor/unity_internals.h +701 -0
  13. data/tracks/c/exercises/wordy/README.md +51 -0
  14. data/tracks/c/exercises/wordy/makefile +25 -0
  15. data/tracks/c/exercises/wordy/src/example.c +53 -0
  16. data/tracks/c/exercises/wordy/src/example.h +7 -0
  17. data/tracks/c/exercises/wordy/test/test_wordy.c +206 -0
  18. data/tracks/c/exercises/wordy/test/vendor/unity.c +1300 -0
  19. data/tracks/c/exercises/wordy/test/vendor/unity.h +274 -0
  20. data/tracks/c/exercises/wordy/test/vendor/unity_internals.h +701 -0
  21. data/tracks/dart/.gitignore +6 -7
  22. data/tracks/dart/bin/create_exercise.dart +17 -17
  23. data/tracks/dart/exercises/anagram/lib/anagram.dart +1 -1
  24. data/tracks/dart/exercises/anagram/test/anagram_test.dart +27 -31
  25. data/tracks/dart/exercises/bob/lib/example.dart +7 -1
  26. data/tracks/dart/exercises/bob/test/bob_test.dart +81 -43
  27. data/tracks/dart/exercises/difference-of-squares/lib/example.dart +3 -3
  28. data/tracks/dart/exercises/difference-of-squares/test/difference_of_squares_test.dart +26 -17
  29. data/tracks/dart/pubspec.lock +28 -16
  30. data/tracks/dart/pubspec.yaml +2 -2
  31. data/tracks/elixir/.travis.yml +3 -3
  32. data/tracks/elixir/README.md +1 -1
  33. data/tracks/elixir/config.json +12 -0
  34. data/tracks/elixir/exercises/alphametics/README.md +73 -0
  35. data/tracks/elixir/exercises/alphametics/alphametics.exs +21 -0
  36. data/tracks/elixir/exercises/alphametics/alphametics_test.exs +162 -0
  37. data/tracks/elixir/exercises/alphametics/example.exs +70 -0
  38. data/tracks/elixir/mix.exs +1 -1
  39. data/tracks/elixir/mix.lock +0 -1
  40. data/tracks/elm/config.json +9 -0
  41. data/tracks/elm/exercises/accumulate/Accumulate.elm +6 -1
  42. data/tracks/elm/exercises/accumulate/Accumulate.example.elm +1 -1
  43. data/tracks/elm/exercises/acronym/Acronym.elm +6 -1
  44. data/tracks/elm/exercises/acronym/Acronym.example.elm +1 -1
  45. data/tracks/elm/exercises/all-your-base/AllYourBase.elm +6 -1
  46. data/tracks/elm/exercises/all-your-base/AllYourBase.example.elm +1 -1
  47. data/tracks/elm/exercises/allergies/Allergies.elm +11 -1
  48. data/tracks/elm/exercises/allergies/Allergies.example.elm +1 -1
  49. data/tracks/elm/exercises/anagram/Anagram.elm +6 -1
  50. data/tracks/elm/exercises/anagram/Anagram.example.elm +1 -1
  51. data/tracks/elm/exercises/atbash-cipher/AtbashCipher.elm +11 -1
  52. data/tracks/elm/exercises/atbash-cipher/AtbashCipher.example.elm +1 -1
  53. data/tracks/elm/exercises/binary-search/BinarySearch.elm +1 -2
  54. data/tracks/elm/exercises/bob/Bob.elm +6 -1
  55. data/tracks/elm/exercises/bob/Bob.example.elm +1 -1
  56. data/tracks/elm/exercises/collatz-conjecture/CollatzConjecture.elm +5 -1
  57. data/tracks/elm/exercises/difference-of-squares/DifferenceOfSquares.elm +16 -1
  58. data/tracks/elm/exercises/difference-of-squares/DifferenceOfSquares.example.elm +1 -1
  59. data/tracks/elm/exercises/etl/Etl.elm +5 -0
  60. data/tracks/elm/exercises/gigasecond/Gigasecond.elm +5 -0
  61. data/tracks/elm/exercises/grade-school/GradeSchool.elm +32 -1
  62. data/tracks/elm/exercises/grade-school/GradeSchool.example.elm +1 -1
  63. data/tracks/elm/exercises/grains/Grains.elm +5 -1
  64. data/tracks/elm/exercises/grains/Grains.example.elm +1 -1
  65. data/tracks/elm/exercises/hamming/Hamming.elm +6 -1
  66. data/tracks/elm/exercises/hello-world/HelloWorld.elm +2 -2
  67. data/tracks/elm/exercises/hello-world/HelloWorld.example.elm +1 -1
  68. data/tracks/elm/exercises/isogram/Isogram.elm +6 -1
  69. data/tracks/elm/exercises/largest-series-product/LargestSeriesProduct.elm +5 -0
  70. data/tracks/elm/exercises/leap/Leap.elm +6 -1
  71. data/tracks/elm/exercises/leap/Leap.example.elm +1 -1
  72. data/tracks/elm/exercises/list-ops/ListOps.elm +51 -1
  73. data/tracks/elm/exercises/list-ops/ListOps.example.elm +11 -1
  74. data/tracks/elm/exercises/list-ops/tests/Tests.elm +1 -1
  75. data/tracks/elm/exercises/luhn/Luhn.elm +6 -1
  76. data/tracks/elm/exercises/nucleotide-count/NucleotideCount.elm +14 -1
  77. data/tracks/elm/exercises/nucleotide-count/NucleotideCount.example.elm +1 -1
  78. data/tracks/elm/exercises/pangram/Pangram.elm +6 -1
  79. data/tracks/elm/exercises/pangram/Pangram.example.elm +1 -1
  80. data/tracks/elm/exercises/pascals-triangle/Triangle.elm +6 -1
  81. data/tracks/elm/exercises/phone-number/PhoneNumber.elm +11 -1
  82. data/tracks/elm/exercises/phone-number/PhoneNumber.example.elm +1 -1
  83. data/tracks/elm/exercises/raindrops/Raindrops.elm +6 -1
  84. data/tracks/elm/exercises/raindrops/Raindrops.example.elm +1 -1
  85. data/tracks/elm/exercises/rna-transcription/RNATranscription.elm +6 -1
  86. data/tracks/elm/exercises/robot-simulator/RobotSimulator.elm +48 -1
  87. data/tracks/elm/exercises/robot-simulator/RobotSimulator.example.elm +10 -1
  88. data/tracks/elm/exercises/roman-numerals/RomanNumerals.elm +5 -0
  89. data/tracks/elm/exercises/run-length-encoding/RunLengthEncoding.elm +11 -2
  90. data/tracks/elm/exercises/say/Say.elm +11 -1
  91. data/tracks/elm/exercises/scrabble-score/ScrabbleScore.elm +6 -1
  92. data/tracks/elm/exercises/scrabble-score/ScrabbleScore.example.elm +1 -1
  93. data/tracks/elm/exercises/series/Series.elm +6 -1
  94. data/tracks/elm/exercises/series/Series.example.elm +1 -1
  95. data/tracks/elm/exercises/space-age/SpaceAge.elm +6 -1
  96. data/tracks/elm/exercises/space-age/SpaceAge.example.elm +1 -1
  97. data/tracks/elm/exercises/strain/Strain.elm +11 -1
  98. data/tracks/elm/exercises/strain/Strain.example.elm +1 -1
  99. data/tracks/elm/exercises/sublist/Sublist.elm +13 -1
  100. data/tracks/elm/exercises/sublist/Sublist.example.elm +1 -1
  101. data/tracks/elm/exercises/sum-of-multiples/SumOfMultiples.elm +6 -1
  102. data/tracks/elm/exercises/sum-of-multiples/SumOfMultiples.example.elm +1 -1
  103. data/tracks/elm/exercises/transpose/README.md +95 -0
  104. data/tracks/elm/exercises/transpose/Transpose.elm +6 -0
  105. data/tracks/elm/exercises/transpose/Transpose.example.elm +47 -0
  106. data/tracks/elm/exercises/transpose/elm-package.json +15 -0
  107. data/tracks/elm/exercises/transpose/tests/Tests.elm +202 -0
  108. data/tracks/elm/exercises/transpose/tests/elm-package.json +16 -0
  109. data/tracks/elm/exercises/triangle/Triangle.elm +12 -1
  110. data/tracks/elm/exercises/triangle/Triangle.example.elm +1 -1
  111. data/tracks/elm/exercises/twelve-days/TwelveDays.elm +6 -1
  112. data/tracks/elm/exercises/word-count/WordCount.elm +3 -1
  113. data/tracks/elm/exercises/word-count/WordCount.example.elm +1 -1
  114. data/tracks/go/exercises/crypto-square/crypto_square_test.go +9 -9
  115. data/tracks/go/exercises/crypto-square/example.go +7 -0
  116. data/tracks/idris/docs/INSTALLATION.md +4 -4
  117. data/tracks/java/config.json +13 -0
  118. data/tracks/java/exercises/alphametics/.meta/version +1 -0
  119. data/tracks/java/exercises/go-counting/.meta/src/reference/java/GoCounting.java +152 -0
  120. data/tracks/java/exercises/go-counting/.meta/src/reference/java/Player.java +3 -0
  121. data/tracks/java/exercises/go-counting/.meta/version +2 -0
  122. data/tracks/java/exercises/go-counting/README.md +50 -0
  123. data/tracks/java/exercises/go-counting/build.gradle +18 -0
  124. data/tracks/java/exercises/go-counting/src/main/java/.keep +0 -0
  125. data/tracks/java/exercises/go-counting/src/main/java/Player.java +3 -0
  126. data/tracks/java/exercises/go-counting/src/test/java/GoCountingTest.java +178 -0
  127. data/tracks/java/exercises/isogram/.meta/version +1 -1
  128. data/tracks/java/exercises/perfect-numbers/.meta/version +1 -1
  129. data/tracks/java/exercises/settings.gradle +1 -0
  130. data/tracks/javascript/.eslintignore +0 -1
  131. data/tracks/javascript/exercises/minesweeper/example.js +15 -15
  132. data/tracks/javascript/package-lock.json +7 -14
  133. data/tracks/javascript/package.json +1 -1
  134. data/tracks/perl6/exercises/grains/.meta/exercise-data.yaml +2 -2
  135. data/tracks/perl6/exercises/grains/grains.t +34 -13
  136. data/tracks/r/config.json +13 -0
  137. data/tracks/r/exercises/bob/README.md +2 -0
  138. data/tracks/r/exercises/bob/example.R +5 -0
  139. data/tracks/r/exercises/bob/test_bob.R +1 -1
  140. data/tracks/r/exercises/crypto-square/README.md +84 -0
  141. data/tracks/r/exercises/crypto-square/crypto-square.R +15 -0
  142. data/tracks/r/exercises/crypto-square/example.R +47 -0
  143. data/tracks/r/exercises/crypto-square/test_crypto-square.R +65 -0
  144. data/tracks/rust/exercises/allergies/tests/allergies.rs +36 -36
  145. data/tracks/rust/exercises/book-store/Cargo-example.toml +1 -2
  146. data/tracks/rust/exercises/book-store/Cargo.toml +1 -1
  147. data/tracks/rust/exercises/book-store/example.rs +10 -14
  148. data/tracks/rust/exercises/book-store/src/lib.rs +1 -1
  149. data/tracks/rust/exercises/book-store/tests/book-store.rs +15 -15
  150. data/tracks/rust/exercises/dominoes/example.rs +3 -3
  151. data/tracks/rust/exercises/dominoes/tests/dominoes.rs +26 -26
  152. data/tracks/rust/exercises/grade-school/tests/grade-school.rs +5 -5
  153. data/tracks/rust/exercises/poker/tests/poker.rs +55 -55
  154. data/tracks/rust/exercises/react/tests/react.rs +28 -28
  155. data/tracks/rust/exercises/rectangles/example.rs +1 -1
  156. data/tracks/rust/exercises/rectangles/tests/rectangles.rs +26 -26
  157. data/tracks/rust/exercises/simple-linked-list/tests/simple-linked-list.rs +1 -1
  158. data/tracks/rust/exercises/sum-of-multiples/tests/sum-of-multiples.rs +12 -12
  159. data/tracks/rust/exercises/variable-length-quantity/example.rs +9 -3
  160. data/tracks/rust/exercises/variable-length-quantity/src/lib.rs +7 -1
  161. data/tracks/rust/exercises/variable-length-quantity/tests/variable-length-quantity.rs +3 -3
  162. data/tracks/rust/exercises/word-count/tests/word-count.rs +20 -20
  163. data/tracks/scala/exercises/secret-handshake/src/test/scala/SecretHandshakeTest.scala +2 -2
  164. data/tracks/scala/exercises/sieve/src/test/scala/SieveTest.scala +12 -12
  165. data/tracks/scala/testgen/src/main/scala/SecretHandshakeTestGenerator.scala +2 -2
  166. data/tracks/scala/testgen/src/main/scala/SieveTestGenerator.scala +2 -2
  167. data/tracks/typescript/config.json +68 -0
  168. data/tracks/typescript/exercises/armstrong-numbers/README.md +44 -0
  169. data/tracks/typescript/exercises/armstrong-numbers/armstrong-numbers.example.ts +11 -0
  170. data/tracks/typescript/exercises/armstrong-numbers/armstrong-numbers.test.ts +35 -0
  171. data/tracks/typescript/exercises/armstrong-numbers/armstrong-numbers.ts +0 -0
  172. data/tracks/typescript/exercises/armstrong-numbers/package.json +36 -0
  173. data/tracks/typescript/exercises/armstrong-numbers/tsconfig.json +22 -0
  174. data/tracks/typescript/exercises/armstrong-numbers/tslint.json +127 -0
  175. data/tracks/typescript/exercises/armstrong-numbers/yarn.lock +2624 -0
  176. data/tracks/typescript/exercises/perfect-numbers/README.md +50 -0
  177. data/tracks/typescript/exercises/perfect-numbers/package.json +36 -0
  178. data/tracks/typescript/exercises/perfect-numbers/perfect-numbers.example.ts +55 -0
  179. data/tracks/typescript/exercises/perfect-numbers/perfect-numbers.test.ts +72 -0
  180. data/tracks/typescript/exercises/perfect-numbers/perfect-numbers.ts +0 -0
  181. data/tracks/typescript/exercises/perfect-numbers/tsconfig.json +22 -0
  182. data/tracks/typescript/exercises/perfect-numbers/tslint.json +127 -0
  183. data/tracks/typescript/exercises/perfect-numbers/yarn.lock +2624 -0
  184. data/tracks/typescript/exercises/rational-numbers/README.md +61 -0
  185. data/tracks/typescript/exercises/rational-numbers/package.json +36 -0
  186. data/tracks/typescript/exercises/rational-numbers/rational-numbers.example.ts +76 -0
  187. data/tracks/typescript/exercises/rational-numbers/rational-numbers.test.ts +197 -0
  188. data/tracks/typescript/exercises/rational-numbers/rational-numbers.ts +0 -0
  189. data/tracks/typescript/exercises/rational-numbers/tsconfig.json +22 -0
  190. data/tracks/typescript/exercises/rational-numbers/tslint.json +127 -0
  191. data/tracks/typescript/exercises/rational-numbers/yarn.lock +2624 -0
  192. data/tracks/typescript/exercises/run-length-encoding/README.md +56 -0
  193. data/tracks/typescript/exercises/run-length-encoding/package.json +36 -0
  194. data/tracks/typescript/exercises/run-length-encoding/run-length-encoding.example.ts +15 -0
  195. data/tracks/typescript/exercises/run-length-encoding/run-length-encoding.test.ts +71 -0
  196. data/tracks/typescript/exercises/run-length-encoding/run-length-encoding.ts +0 -0
  197. data/tracks/typescript/exercises/run-length-encoding/tsconfig.json +22 -0
  198. data/tracks/typescript/exercises/run-length-encoding/tslint.json +127 -0
  199. data/tracks/typescript/exercises/run-length-encoding/yarn.lock +2624 -0
  200. data/tracks/typescript/exercises/secret-handshake/README.md +61 -0
  201. data/tracks/typescript/exercises/secret-handshake/package.json +36 -0
  202. data/tracks/typescript/exercises/secret-handshake/secret-handshake.example.ts +43 -0
  203. data/tracks/typescript/exercises/secret-handshake/secret-handshake.test.ts +69 -0
  204. data/tracks/typescript/exercises/secret-handshake/secret-handshake.ts +0 -0
  205. data/tracks/typescript/exercises/secret-handshake/tsconfig.json +22 -0
  206. data/tracks/typescript/exercises/secret-handshake/tslint.json +127 -0
  207. data/tracks/typescript/exercises/secret-handshake/yarn.lock +2624 -0
  208. metadata +81 -7
  209. data/tracks/dart/exercises/anagram/pubspec.lock +0 -293
  210. data/tracks/dart/exercises/bob/pubspec.lock +0 -293
  211. data/tracks/dart/exercises/difference-of-squares/pubspec.lock +0 -293
  212. data/tracks/java/exercises/alphametics/.meta/src/version +0 -1
  213. data/tracks/r/exercises/bob/.meta/description.md +0 -10
@@ -1,293 +0,0 @@
1
- # Generated by pub
2
- # See http://pub.dartlang.org/doc/glossary.html#lockfile
3
- packages:
4
- analyzer:
5
- description:
6
- name: analyzer
7
- url: "https://pub.dartlang.org"
8
- source: hosted
9
- version: "0.30.0+4"
10
- args:
11
- description:
12
- name: args
13
- url: "https://pub.dartlang.org"
14
- source: hosted
15
- version: "1.0.1"
16
- async:
17
- description:
18
- name: async
19
- url: "https://pub.dartlang.org"
20
- source: hosted
21
- version: "1.13.3"
22
- barback:
23
- description:
24
- name: barback
25
- url: "https://pub.dartlang.org"
26
- source: hosted
27
- version: "0.15.2+13"
28
- boolean_selector:
29
- description:
30
- name: boolean_selector
31
- url: "https://pub.dartlang.org"
32
- source: hosted
33
- version: "1.0.2"
34
- charcode:
35
- description:
36
- name: charcode
37
- url: "https://pub.dartlang.org"
38
- source: hosted
39
- version: "1.1.1"
40
- cli_util:
41
- description:
42
- name: cli_util
43
- url: "https://pub.dartlang.org"
44
- source: hosted
45
- version: "0.1.2+1"
46
- collection:
47
- description:
48
- name: collection
49
- url: "https://pub.dartlang.org"
50
- source: hosted
51
- version: "1.14.3"
52
- convert:
53
- description:
54
- name: convert
55
- url: "https://pub.dartlang.org"
56
- source: hosted
57
- version: "2.0.1"
58
- crypto:
59
- description:
60
- name: crypto
61
- url: "https://pub.dartlang.org"
62
- source: hosted
63
- version: "2.0.2+1"
64
- csslib:
65
- description:
66
- name: csslib
67
- url: "https://pub.dartlang.org"
68
- source: hosted
69
- version: "0.14.1"
70
- front_end:
71
- description:
72
- name: front_end
73
- url: "https://pub.dartlang.org"
74
- source: hosted
75
- version: "0.1.0-alpha.4.1"
76
- glob:
77
- description:
78
- name: glob
79
- url: "https://pub.dartlang.org"
80
- source: hosted
81
- version: "1.1.5"
82
- html:
83
- description:
84
- name: html
85
- url: "https://pub.dartlang.org"
86
- source: hosted
87
- version: "0.13.2"
88
- http:
89
- description:
90
- name: http
91
- url: "https://pub.dartlang.org"
92
- source: hosted
93
- version: "0.11.3+16"
94
- http_multi_server:
95
- description:
96
- name: http_multi_server
97
- url: "https://pub.dartlang.org"
98
- source: hosted
99
- version: "2.0.4"
100
- http_parser:
101
- description:
102
- name: http_parser
103
- url: "https://pub.dartlang.org"
104
- source: hosted
105
- version: "3.1.1"
106
- isolate:
107
- description:
108
- name: isolate
109
- url: "https://pub.dartlang.org"
110
- source: hosted
111
- version: "1.1.0"
112
- js:
113
- description:
114
- name: js
115
- url: "https://pub.dartlang.org"
116
- source: hosted
117
- version: "0.6.1"
118
- kernel:
119
- description:
120
- name: kernel
121
- url: "https://pub.dartlang.org"
122
- source: hosted
123
- version: "0.3.0-alpha.1.1"
124
- logging:
125
- description:
126
- name: logging
127
- url: "https://pub.dartlang.org"
128
- source: hosted
129
- version: "0.11.3+1"
130
- matcher:
131
- description:
132
- name: matcher
133
- url: "https://pub.dartlang.org"
134
- source: hosted
135
- version: "0.12.1+4"
136
- meta:
137
- description:
138
- name: meta
139
- url: "https://pub.dartlang.org"
140
- source: hosted
141
- version: "1.1.2"
142
- mime:
143
- description:
144
- name: mime
145
- url: "https://pub.dartlang.org"
146
- source: hosted
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"
154
- package_config:
155
- description:
156
- name: package_config
157
- url: "https://pub.dartlang.org"
158
- source: hosted
159
- version: "1.0.3"
160
- package_resolver:
161
- description:
162
- name: package_resolver
163
- url: "https://pub.dartlang.org"
164
- source: hosted
165
- version: "1.0.2"
166
- path:
167
- description:
168
- name: path
169
- url: "https://pub.dartlang.org"
170
- source: hosted
171
- version: "1.4.2"
172
- plugin:
173
- description:
174
- name: plugin
175
- url: "https://pub.dartlang.org"
176
- source: hosted
177
- version: "0.2.0+2"
178
- pool:
179
- description:
180
- name: pool
181
- url: "https://pub.dartlang.org"
182
- source: hosted
183
- version: "1.3.3"
184
- pub_semver:
185
- description:
186
- name: pub_semver
187
- url: "https://pub.dartlang.org"
188
- source: hosted
189
- version: "1.3.2"
190
- shelf:
191
- description:
192
- name: shelf
193
- url: "https://pub.dartlang.org"
194
- source: hosted
195
- version: "0.7.0"
196
- shelf_packages_handler:
197
- description:
198
- name: shelf_packages_handler
199
- url: "https://pub.dartlang.org"
200
- source: hosted
201
- version: "1.0.3"
202
- shelf_static:
203
- description:
204
- name: shelf_static
205
- url: "https://pub.dartlang.org"
206
- source: hosted
207
- version: "0.2.6"
208
- shelf_web_socket:
209
- description:
210
- name: shelf_web_socket
211
- url: "https://pub.dartlang.org"
212
- source: hosted
213
- version: "0.2.2"
214
- source_map_stack_trace:
215
- description:
216
- name: source_map_stack_trace
217
- url: "https://pub.dartlang.org"
218
- source: hosted
219
- version: "1.1.4"
220
- source_maps:
221
- description:
222
- name: source_maps
223
- url: "https://pub.dartlang.org"
224
- source: hosted
225
- version: "0.10.4"
226
- source_span:
227
- description:
228
- name: source_span
229
- url: "https://pub.dartlang.org"
230
- source: hosted
231
- version: "1.4.0"
232
- stack_trace:
233
- description:
234
- name: stack_trace
235
- url: "https://pub.dartlang.org"
236
- source: hosted
237
- version: "1.8.2"
238
- stream_channel:
239
- description:
240
- name: stream_channel
241
- url: "https://pub.dartlang.org"
242
- source: hosted
243
- version: "1.6.2"
244
- string_scanner:
245
- description:
246
- name: string_scanner
247
- url: "https://pub.dartlang.org"
248
- source: hosted
249
- version: "1.0.2"
250
- term_glyph:
251
- description:
252
- name: term_glyph
253
- url: "https://pub.dartlang.org"
254
- source: hosted
255
- version: "1.0.0"
256
- test:
257
- description:
258
- name: test
259
- url: "https://pub.dartlang.org"
260
- source: hosted
261
- version: "0.12.24+8"
262
- typed_data:
263
- description:
264
- name: typed_data
265
- url: "https://pub.dartlang.org"
266
- source: hosted
267
- version: "1.1.5"
268
- utf:
269
- description:
270
- name: utf
271
- url: "https://pub.dartlang.org"
272
- source: hosted
273
- version: "0.9.0+3"
274
- watcher:
275
- description:
276
- name: watcher
277
- url: "https://pub.dartlang.org"
278
- source: hosted
279
- version: "0.9.7+4"
280
- web_socket_channel:
281
- description:
282
- name: web_socket_channel
283
- url: "https://pub.dartlang.org"
284
- source: hosted
285
- version: "1.0.6"
286
- yaml:
287
- description:
288
- name: yaml
289
- url: "https://pub.dartlang.org"
290
- source: hosted
291
- version: "2.1.13"
292
- sdks:
293
- dart: ">=1.23.0 <2.0.0-dev.infinity"
@@ -1,293 +0,0 @@
1
- # Generated by pub
2
- # See http://pub.dartlang.org/doc/glossary.html#lockfile
3
- packages:
4
- analyzer:
5
- description:
6
- name: analyzer
7
- url: "https://pub.dartlang.org"
8
- source: hosted
9
- version: "0.30.0+4"
10
- args:
11
- description:
12
- name: args
13
- url: "https://pub.dartlang.org"
14
- source: hosted
15
- version: "1.0.1"
16
- async:
17
- description:
18
- name: async
19
- url: "https://pub.dartlang.org"
20
- source: hosted
21
- version: "1.13.3"
22
- barback:
23
- description:
24
- name: barback
25
- url: "https://pub.dartlang.org"
26
- source: hosted
27
- version: "0.15.2+13"
28
- boolean_selector:
29
- description:
30
- name: boolean_selector
31
- url: "https://pub.dartlang.org"
32
- source: hosted
33
- version: "1.0.2"
34
- charcode:
35
- description:
36
- name: charcode
37
- url: "https://pub.dartlang.org"
38
- source: hosted
39
- version: "1.1.1"
40
- cli_util:
41
- description:
42
- name: cli_util
43
- url: "https://pub.dartlang.org"
44
- source: hosted
45
- version: "0.1.2+1"
46
- collection:
47
- description:
48
- name: collection
49
- url: "https://pub.dartlang.org"
50
- source: hosted
51
- version: "1.14.3"
52
- convert:
53
- description:
54
- name: convert
55
- url: "https://pub.dartlang.org"
56
- source: hosted
57
- version: "2.0.1"
58
- crypto:
59
- description:
60
- name: crypto
61
- url: "https://pub.dartlang.org"
62
- source: hosted
63
- version: "2.0.2+1"
64
- csslib:
65
- description:
66
- name: csslib
67
- url: "https://pub.dartlang.org"
68
- source: hosted
69
- version: "0.14.1"
70
- front_end:
71
- description:
72
- name: front_end
73
- url: "https://pub.dartlang.org"
74
- source: hosted
75
- version: "0.1.0-alpha.4.1"
76
- glob:
77
- description:
78
- name: glob
79
- url: "https://pub.dartlang.org"
80
- source: hosted
81
- version: "1.1.5"
82
- html:
83
- description:
84
- name: html
85
- url: "https://pub.dartlang.org"
86
- source: hosted
87
- version: "0.13.2"
88
- http:
89
- description:
90
- name: http
91
- url: "https://pub.dartlang.org"
92
- source: hosted
93
- version: "0.11.3+16"
94
- http_multi_server:
95
- description:
96
- name: http_multi_server
97
- url: "https://pub.dartlang.org"
98
- source: hosted
99
- version: "2.0.4"
100
- http_parser:
101
- description:
102
- name: http_parser
103
- url: "https://pub.dartlang.org"
104
- source: hosted
105
- version: "3.1.1"
106
- isolate:
107
- description:
108
- name: isolate
109
- url: "https://pub.dartlang.org"
110
- source: hosted
111
- version: "1.1.0"
112
- js:
113
- description:
114
- name: js
115
- url: "https://pub.dartlang.org"
116
- source: hosted
117
- version: "0.6.1"
118
- kernel:
119
- description:
120
- name: kernel
121
- url: "https://pub.dartlang.org"
122
- source: hosted
123
- version: "0.3.0-alpha.1.1"
124
- logging:
125
- description:
126
- name: logging
127
- url: "https://pub.dartlang.org"
128
- source: hosted
129
- version: "0.11.3+1"
130
- matcher:
131
- description:
132
- name: matcher
133
- url: "https://pub.dartlang.org"
134
- source: hosted
135
- version: "0.12.1+4"
136
- meta:
137
- description:
138
- name: meta
139
- url: "https://pub.dartlang.org"
140
- source: hosted
141
- version: "1.1.2"
142
- mime:
143
- description:
144
- name: mime
145
- url: "https://pub.dartlang.org"
146
- source: hosted
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"
154
- package_config:
155
- description:
156
- name: package_config
157
- url: "https://pub.dartlang.org"
158
- source: hosted
159
- version: "1.0.3"
160
- package_resolver:
161
- description:
162
- name: package_resolver
163
- url: "https://pub.dartlang.org"
164
- source: hosted
165
- version: "1.0.2"
166
- path:
167
- description:
168
- name: path
169
- url: "https://pub.dartlang.org"
170
- source: hosted
171
- version: "1.4.2"
172
- plugin:
173
- description:
174
- name: plugin
175
- url: "https://pub.dartlang.org"
176
- source: hosted
177
- version: "0.2.0+2"
178
- pool:
179
- description:
180
- name: pool
181
- url: "https://pub.dartlang.org"
182
- source: hosted
183
- version: "1.3.3"
184
- pub_semver:
185
- description:
186
- name: pub_semver
187
- url: "https://pub.dartlang.org"
188
- source: hosted
189
- version: "1.3.2"
190
- shelf:
191
- description:
192
- name: shelf
193
- url: "https://pub.dartlang.org"
194
- source: hosted
195
- version: "0.7.0"
196
- shelf_packages_handler:
197
- description:
198
- name: shelf_packages_handler
199
- url: "https://pub.dartlang.org"
200
- source: hosted
201
- version: "1.0.3"
202
- shelf_static:
203
- description:
204
- name: shelf_static
205
- url: "https://pub.dartlang.org"
206
- source: hosted
207
- version: "0.2.6"
208
- shelf_web_socket:
209
- description:
210
- name: shelf_web_socket
211
- url: "https://pub.dartlang.org"
212
- source: hosted
213
- version: "0.2.2"
214
- source_map_stack_trace:
215
- description:
216
- name: source_map_stack_trace
217
- url: "https://pub.dartlang.org"
218
- source: hosted
219
- version: "1.1.4"
220
- source_maps:
221
- description:
222
- name: source_maps
223
- url: "https://pub.dartlang.org"
224
- source: hosted
225
- version: "0.10.4"
226
- source_span:
227
- description:
228
- name: source_span
229
- url: "https://pub.dartlang.org"
230
- source: hosted
231
- version: "1.4.0"
232
- stack_trace:
233
- description:
234
- name: stack_trace
235
- url: "https://pub.dartlang.org"
236
- source: hosted
237
- version: "1.8.2"
238
- stream_channel:
239
- description:
240
- name: stream_channel
241
- url: "https://pub.dartlang.org"
242
- source: hosted
243
- version: "1.6.2"
244
- string_scanner:
245
- description:
246
- name: string_scanner
247
- url: "https://pub.dartlang.org"
248
- source: hosted
249
- version: "1.0.2"
250
- term_glyph:
251
- description:
252
- name: term_glyph
253
- url: "https://pub.dartlang.org"
254
- source: hosted
255
- version: "1.0.0"
256
- test:
257
- description:
258
- name: test
259
- url: "https://pub.dartlang.org"
260
- source: hosted
261
- version: "0.12.24+8"
262
- typed_data:
263
- description:
264
- name: typed_data
265
- url: "https://pub.dartlang.org"
266
- source: hosted
267
- version: "1.1.5"
268
- utf:
269
- description:
270
- name: utf
271
- url: "https://pub.dartlang.org"
272
- source: hosted
273
- version: "0.9.0+3"
274
- watcher:
275
- description:
276
- name: watcher
277
- url: "https://pub.dartlang.org"
278
- source: hosted
279
- version: "0.9.7+4"
280
- web_socket_channel:
281
- description:
282
- name: web_socket_channel
283
- url: "https://pub.dartlang.org"
284
- source: hosted
285
- version: "1.0.6"
286
- yaml:
287
- description:
288
- name: yaml
289
- url: "https://pub.dartlang.org"
290
- source: hosted
291
- version: "2.1.13"
292
- sdks:
293
- dart: ">=1.23.0 <2.0.0-dev.infinity"