Skip to content

Commit d8e59e6

Browse files
committed
Merge pull request flutter#3 from dart-lang/license
License updates.
2 parents 223d564 + 6443ffb commit d8e59e6

File tree

7 files changed

+62
-4
lines changed

7 files changed

+62
-4
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Don’t commit the following directories created by pub.
22
build/
3-
packages/
3+
packages
44
.buildlog
55

6+
# Or settings
7+
.settings
8+
.project
9+
610
# Or the files created by dart2js.
711
*.dart.js
812
*.dart.precompiled.js

AUTHORS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Names should be added to this file with this pattern:
2+
#
3+
# For individuals:
4+
# Name <email address>
5+
#
6+
# For organizations:
7+
# Organization <fnmatch pattern>
8+
#
9+
Google Inc. <*@google.com>
10+
Sean Eagan <[email protected]>
11+

CONTRIBUTING.md

Lines changed: 33 additions & 0 deletions
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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
Copyright 2015, the when project authors. All rights reserved.
1+
Copyright 2015, the Dart project authors. All rights reserved.
22
Redistribution and use in source and binary forms, with or without
33
modification, are permitted provided that the following conditions are
44
met:
5+
56
* Redistributions of source code must retain the above copyright
67
notice, this list of conditions and the following disclaimer.
78
* Redistributions in binary form must reproduce the above
@@ -11,6 +12,7 @@ met:
1112
* Neither the name of Google Inc. nor the names of its
1213
contributors may be used to endorse or promote products derived
1314
from this software without specific prior written permission.
15+
1416
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1517
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1618
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR

lib/when.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
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.
14

25
library when;
36

pubspec.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: when
22
version: 0.1.0
3-
author: Sean Eagan <[email protected]>
3+
authors:
4+
Dart Team <[email protected]>
5+
Sean Eagan <[email protected]>
46
description: Register callbacks on code which is conditionally sync or async.
5-
homepage: https://github.com/seaneagan/when.dart
7+
homepage: https://github.com/dart-lang/when
68
dev_dependencies:
79
unittest: '>=0.11.4 <0.12.0'

test/when_test.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
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.
14

25
library when.test;
36

0 commit comments

Comments
 (0)