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

Side by Side Diff: utils/pub/git_source.dart

Issue 10442023: Get rid of #source in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Respond to (verbal) review. Created 8 years, 7 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
« no previous file with comments | « utils/pub/entrypoint.dart ('k') | utils/pub/io.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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('git_source');
6
7 #import('io.dart');
8 #import('package.dart');
9 #import('source.dart');
10 #import('utils.dart');
11
5 /** 12 /**
6 * A package source that installs packages from Git repos. 13 * A package source that installs packages from Git repos.
7 */ 14 */
8 class GitSource extends Source { 15 class GitSource extends Source {
9 final String name = "git"; 16 final String name = "git";
10 17
11 // TODO(rnystrom): Git packages could in theory be cached, but that adds a 18 // TODO(rnystrom): Git packages could in theory be cached, but that adds a
12 // lot of complexity. When you install a git package, you are installing 19 // lot of complexity. When you install a git package, you are installing
13 // and pinning to a specific commit. That means different installs of the 20 // and pinning to a specific commit. That means different installs of the
14 // same git path but at different commits need to be disambiguated in the 21 // same git path but at different commits need to be disambiguated in the
(...skipping 30 matching lines...) Expand all
45 52
46 /** 53 /**
47 * Ensures [description] is a Git URL. 54 * Ensures [description] is a Git URL.
48 */ 55 */
49 void validateDescription(description) { 56 void validateDescription(description) {
50 if (description is! String) { 57 if (description is! String) {
51 throw new FormatException("The description must be a git URL."); 58 throw new FormatException("The description must be a git URL.");
52 } 59 }
53 } 60 }
54 } 61 }
OLDNEW
« no previous file with comments | « utils/pub/entrypoint.dart ('k') | utils/pub/io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698