Skip to content

Commit 0cdd4e1

Browse files
committed
Add template files.
1 parent 5aabadf commit 0cdd4e1

7 files changed

+131
-0
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.buildlog
2+
.DS_Store
3+
.idea
4+
.pub/
5+
.settings/
6+
build/
7+
packages
8+
pubspec.lock

pub.status .status

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22
# for details. All rights reserved. Use of this source code is governed by a
33
# BSD-style license that can be found in the LICENSE file.
44

5+
# Skip non-test files ending with "_test".
6+
packages/*: SkipByDesign
7+
*/packages/*: SkipByDesign
8+
*/*/packages/*: SkipByDesign
9+
*/*/*/packages/*: SkipByDesign
10+
*/*/*/*packages/*: SkipByDesign
11+
*/*/*/*/*packages/*: SkipByDesign
12+
13+
# Only run tests from the test directory, since we don't care about the
14+
# difference between transformed an untransformed code.
15+
build/test/*: SkipByDesign
16+
build/test/*/*: SkipByDesign
17+
build/test/*/*/*: SkipByDesign
18+
build/test/*/*/*/*: SkipByDesign
19+
20+
# Don't run library files as tests
21+
lib/*: SkipByDesign
22+
lib/*/*: SkipByDesign
23+
lib/*/*/*: SkipByDesign
24+
lib/*/*/*/*: SkipByDesign
25+
526
test/dart2js/compiles_generated_file_from_dependency_test: Pass, Slow
627
test/serve/web_socket/url_to_asset_id_test: Pass, Slow
728
test/transformer/loads_a_diamond_transformer_dependency_graph_test: Pass, Slow

AUTHORS

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Below is a list of people and organizations that have contributed
2+
# to the project. Names should be added to the list like so:
3+
#
4+
# Name/Organization <email address>
5+
6+
Google Inc.

CONTRIBUTING.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
Want to contribute? Great! First, read this page (including the small print at
2+
the end).
3+
4+
### Before you contribute
5+
Before we can use your code, you must sign the
6+
[Google Individual Contributor License Agreement](https://cla.developers.google.com/about/google-individual)
7+
(CLA), which you can do online. The CLA is necessary mainly because you own the
8+
copyright to your changes, even after your contribution becomes part of our
9+
codebase, so we need your permission to use and distribute your code. We also
10+
need to be sure of various other things—for instance that you'll tell us if you
11+
know that your code infringes on other people's patents. You don't have to sign
12+
the CLA until after you've submitted your code for review and a member has
13+
approved it, but you must do it before we can put your code into our codebase.
14+
15+
Before you start working on a larger contribution, you should get in touch with
16+
us first through the issue tracker with your idea so that we can help out and
17+
possibly guide you. Coordinating up front makes it much easier to avoid
18+
frustration later on.
19+
20+
### Code reviews
21+
All submissions, including submissions by project members, require review.
22+
23+
### File headers
24+
All files in the project must start with the following header.
25+
26+
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
27+
// for details. All rights reserved. Use of this source code is governed by a
28+
// BSD-style license that can be found in the LICENSE file.
29+
30+
### The small print
31+
Contributions made by corporations are covered by a different agreement than the
32+
one above, the
33+
[Software Grant and Corporate Contributor License Agreement](https://developers.google.com/open-source/cla/corporate).

LICENSE

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Copyright 2015, the Dart project authors. All rights reserved.
2+
Redistribution and use in source and binary forms, with or without
3+
modification, are permitted provided that the following conditions are
4+
met:
5+
6+
* Redistributions of source code must retain the above copyright
7+
notice, this list of conditions and the following disclaimer.
8+
* Redistributions in binary form must reproduce the above
9+
copyright notice, this list of conditions and the following
10+
disclaimer in the documentation and/or other materials provided
11+
with the distribution.
12+
* Neither the name of Google Inc. nor the names of its
13+
contributors may be used to endorse or promote products derived
14+
from this software without specific prior written permission.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

codereview.settings

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CODE_REVIEW_SERVER: https://codereview.chromium.org/
2+
VIEW_VC: https://github.com/dart-lang/pub/commit/
3+

pubspec.yaml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: pub
2+
3+
# Pub is not yet ready to release as a user-accessible package.
4+
version: 1.0.0-unreleased
5+
6+
dependencies:
7+
analyzer: "^0.25.0"
8+
args: "^0.13.0"
9+
barback: "^0.15.2"
10+
crypto: "^0.9.0"
11+
glob: "^1.0.0"
12+
http: "^0.11.0"
13+
http_multi_server: "^1.0.0"
14+
http_parser: "^0.0.2"
15+
http_throttle: "^1.0.0"
16+
json_rpc_2: "^1.0.0"
17+
mime: "^0.9.0"
18+
oauth2: "^0.9.1"
19+
path: "^1.2.0"
20+
pool: "^1.0.0"
21+
pub_semver: "^1.2.0"
22+
shelf: "^0.5.0"
23+
shelf_web_socket: "^0.0.1"
24+
source_span: "^1.0.0"
25+
stack_trace: "^1.0.0"
26+
string_scanner: "^0.1.0"
27+
watcher: "^0.9.2"
28+
yaml: "^2.0.0"
29+
30+
dev_dependencies:
31+
scheduled_test: "^0.11.8"
32+
source_maps: "^0.9.0"
33+
unittest: "^0.11.0"
34+

0 commit comments

Comments
 (0)