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

Side by Side Diff: sdk/lib/_internal/pub/lib/src/command/version.dart

Issue 805393002: Update pub to use the new command runner API in args. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 5 years, 11 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library pub.command.version; 5 library pub.command.version;
6 6
7 import 'dart:async';
8
9 import '../command.dart'; 7 import '../command.dart';
10 import '../log.dart' as log; 8 import '../log.dart' as log;
11 import '../sdk.dart' as sdk; 9 import '../sdk.dart' as sdk;
12 10
13 /// Handles the `version` pub command. 11 /// Handles the `version` pub command.
14 class VersionCommand extends PubCommand { 12 class VersionCommand extends PubCommand {
13 String get name => "version";
15 String get description => "Print pub version."; 14 String get description => "Print pub version.";
16 String get usage => "pub version"; 15 String get invocation => "pub version";
17 16
18 Future onRun() { 17 void run() {
19 log.message("Pub ${sdk.version}"); 18 log.message("Pub ${sdk.version}");
20 return null;
21 } 19 }
22 } 20 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/uploader.dart ('k') | sdk/lib/_internal/pub/lib/src/command_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698