Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: pubspec.yaml

Issue 1152453009: pkg/scheduled_test: fix analyzer hints (Closed) Base URL: https://github.com/dart-lang/scheduled_test.git@master
Patch Set: more better? Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 name: scheduled_test 1 name: scheduled_test
2 version: 0.12.0 2 version: 0.12.1-dev
nweiz 2015/06/04 19:20:10 Go ahead and make this 0.12.0+1.
kevmoo 2015/06/04 19:23:46 Done.
3 author: Dart Team <misc@dartlang.org> 3 author: Dart Team <misc@dartlang.org>
4 description: > 4 description: >
5 A package for writing readable tests of asynchronous behavior. 5 A package for writing readable tests of asynchronous behavior.
6 6
7 This package works by building up a queue of asynchronous tasks called a 7 This package works by building up a queue of asynchronous tasks called a
8 "schedule", then executing those tasks in order. This allows the tests to 8 "schedule", then executing those tasks in order. This allows the tests to
9 read like synchronous, linear code, despite executing asynchronously. 9 read like synchronous, linear code, despite executing asynchronously.
10 10
11 homepage: https://github.com/dart-lang/scheduled_test 11 homepage: https://github.com/dart-lang/scheduled_test
12 environment: 12 environment:
13 sdk: '>=1.8.0 <2.0.0' 13 sdk: '>=1.8.0 <2.0.0'
14 dependencies: 14 dependencies:
15 http_multi_server: '>=1.0.0 <2.0.0' 15 http_multi_server: '>=1.0.0 <2.0.0'
16 http: '>=0.9.0 <0.12.0' 16 http: '>=0.9.0 <0.12.0'
17 path: '>=0.9.0 <2.0.0' 17 path: '>=0.9.0 <2.0.0'
18 shelf: '>=0.4.0 <0.7.0' 18 shelf: '>=0.4.0 <0.7.0'
19 stack_trace: '>=0.9.1 <2.0.0' 19 stack_trace: '>=0.9.1 <2.0.0'
20 20
21 # Because scheduled_test exports test, it needs to keep its version constraint 21 # Because scheduled_test exports test, it needs to keep its version constraint
22 # tight to ensure that a constraint on scheduled_test properly constraints all 22 # tight to ensure that a constraint on scheduled_test properly constraints all
23 # features it provides. 23 # features it provides.
24 test: '>=0.12.3 <0.12.4' 24 test: '>=0.12.3 <0.12.4'
25 dev_dependencies: 25 dev_dependencies:
26 metatest: "^0.2.0" 26 metatest: "^0.2.0"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698