| OLD | NEW |
| 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 } |
| OLD | NEW |