first commit

This commit is contained in:
Seth Ladd
2015-10-20 11:52:12 -07:00
commit dff6292124
11 changed files with 115 additions and 0 deletions

9
packages/flutter_image/.gitignore vendored Normal file
View File

@ -0,0 +1,9 @@
.buildlog
.DS_Store
.idea
.pub/
.settings/
build/
packages
.packages
pubspec.lock

View File

@ -0,0 +1,3 @@
{
"test_package": true
}

View File

@ -0,0 +1,15 @@
language: dart
script: ./tool/travis.sh
# Speed up builds by using containerization. Disable this if you need to use
# sudo in your scripts.
sudo: false
branches:
only:
- master
cache:
directories:
- $HOME/.pub-cache

View File

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

View File

@ -0,0 +1,5 @@
# Changelog
## 0.0.1
- Initial version

View File

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

View File

@ -0,0 +1,9 @@
# REPLACE_ME
A library for Flutter developers. It is awesome.
## Features and bugs
Please file feature requests and bugs at the [issue tracker][tracker].
[tracker]: https://github.com/flutter/REPLACE_ME/issues

View File

@ -0,0 +1,5 @@
// Copyright (c) 2015, the Flutter project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
main() => print('foo');

View File

@ -0,0 +1,14 @@
name: REPLACE_ME
version: 0.0.1
description: A sample library.
author: Flutter Team <flutter-dev@googlegroups.com>
homepage: https://github.com/flutter/REPLACE_ME
environment:
sdk: '>=1.0.0 <2.0.0'
#dependencies:
# lib_name: any
dev_dependencies:
# change this to a specific version range when you create your project
test: REPLACE_ME

View File

@ -0,0 +1,12 @@
// Copyright (c) 2015, the Flutter project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:sample/sample.dart';
import 'package:test/test.dart';
main() {
group('A group of tests', () {
test('First Test', () {});
});
}

View File

@ -0,0 +1,11 @@
- rename project in pubspec.yaml
- update description in pubspec.yaml
- update the homepage: field in pubspec.yaml
- rename project in readme.md
- update description in readme.md
- update the [tracker] url in readme.md
- (optionally) add a codereview.settings file
- delete todo.txt :)