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

Unified Diff: utils/pub/pub.dart

Issue 11569046: Add a pub command for managing uploaders for packages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « utils/pub/oauth2.dart ('k') | utils/tests/pub/oauth2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/pub.dart
diff --git a/utils/pub/pub.dart b/utils/pub/pub.dart
index 835a09d5f0e8cfa0f84658caf682027d6b13f81b..86dbe5659980372e6006c064b25a1a4c2354b8ed 100644
--- a/utils/pub/pub.dart
+++ b/utils/pub/pub.dart
@@ -10,11 +10,13 @@ library pub;
import '../../pkg/args/lib/args.dart';
import 'dart:io';
import 'dart:math';
+import 'http.dart';
import 'io.dart';
import 'command_help.dart';
import 'command_install.dart';
import 'command_lish.dart';
import 'command_update.dart';
+import 'command_uploader.dart';
import 'command_version.dart';
import 'entrypoint.dart';
import 'exit_codes.dart' as exit_codes;
@@ -39,6 +41,7 @@ Map<String, PubCommand> get pubCommands {
'install': new InstallCommand(),
'publish': new LishCommand(),
'update': new UpdateCommand(),
+ 'uploader': new UploaderCommand(),
'version': new VersionCommand()
};
for (var command in commands.values) {
« no previous file with comments | « utils/pub/oauth2.dart ('k') | utils/tests/pub/oauth2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698