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('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 Loading... |
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 } |
OLD | NEW |