From dff6292124df5b4c92bd017d0de8e25ab8855312 Mon Sep 17 00:00:00 2001 From: Seth Ladd Date: Tue, 20 Oct 2015 11:52:12 -0700 Subject: [PATCH] first commit --- packages/flutter_image/.gitignore | 9 ++++++++ packages/flutter_image/.test_config | 3 +++ packages/flutter_image/.travis.yml | 15 +++++++++++++ packages/flutter_image/AUTHORS | 6 ++++++ packages/flutter_image/CHANGELOG.md | 5 +++++ packages/flutter_image/LICENSE | 26 +++++++++++++++++++++++ packages/flutter_image/README.md | 9 ++++++++ packages/flutter_image/lib/sample.dart | 5 +++++ packages/flutter_image/pubspec.yaml | 14 ++++++++++++ packages/flutter_image/test/all_test.dart | 12 +++++++++++ packages/flutter_image/todo.txt | 11 ++++++++++ 11 files changed, 115 insertions(+) create mode 100644 packages/flutter_image/.gitignore create mode 100644 packages/flutter_image/.test_config create mode 100644 packages/flutter_image/.travis.yml create mode 100644 packages/flutter_image/AUTHORS create mode 100644 packages/flutter_image/CHANGELOG.md create mode 100644 packages/flutter_image/LICENSE create mode 100644 packages/flutter_image/README.md create mode 100644 packages/flutter_image/lib/sample.dart create mode 100644 packages/flutter_image/pubspec.yaml create mode 100644 packages/flutter_image/test/all_test.dart create mode 100644 packages/flutter_image/todo.txt diff --git a/packages/flutter_image/.gitignore b/packages/flutter_image/.gitignore new file mode 100644 index 0000000000..25a1df3326 --- /dev/null +++ b/packages/flutter_image/.gitignore @@ -0,0 +1,9 @@ +.buildlog +.DS_Store +.idea +.pub/ +.settings/ +build/ +packages +.packages +pubspec.lock diff --git a/packages/flutter_image/.test_config b/packages/flutter_image/.test_config new file mode 100644 index 0000000000..352d2feeec --- /dev/null +++ b/packages/flutter_image/.test_config @@ -0,0 +1,3 @@ +{ + "test_package": true +} diff --git a/packages/flutter_image/.travis.yml b/packages/flutter_image/.travis.yml new file mode 100644 index 0000000000..b35c9f67d8 --- /dev/null +++ b/packages/flutter_image/.travis.yml @@ -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 diff --git a/packages/flutter_image/AUTHORS b/packages/flutter_image/AUTHORS new file mode 100644 index 0000000000..e8063a8cd6 --- /dev/null +++ b/packages/flutter_image/AUTHORS @@ -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 + +Google Inc. diff --git a/packages/flutter_image/CHANGELOG.md b/packages/flutter_image/CHANGELOG.md new file mode 100644 index 0000000000..2a2d63cf8e --- /dev/null +++ b/packages/flutter_image/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## 0.0.1 + +- Initial version diff --git a/packages/flutter_image/LICENSE b/packages/flutter_image/LICENSE new file mode 100644 index 0000000000..c9d23b9aa9 --- /dev/null +++ b/packages/flutter_image/LICENSE @@ -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. diff --git a/packages/flutter_image/README.md b/packages/flutter_image/README.md new file mode 100644 index 0000000000..f18a24c5d0 --- /dev/null +++ b/packages/flutter_image/README.md @@ -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 diff --git a/packages/flutter_image/lib/sample.dart b/packages/flutter_image/lib/sample.dart new file mode 100644 index 0000000000..edadc95e46 --- /dev/null +++ b/packages/flutter_image/lib/sample.dart @@ -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'); diff --git a/packages/flutter_image/pubspec.yaml b/packages/flutter_image/pubspec.yaml new file mode 100644 index 0000000000..6c169cb1b5 --- /dev/null +++ b/packages/flutter_image/pubspec.yaml @@ -0,0 +1,14 @@ +name: REPLACE_ME +version: 0.0.1 +description: A sample library. +author: Flutter Team +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 diff --git a/packages/flutter_image/test/all_test.dart b/packages/flutter_image/test/all_test.dart new file mode 100644 index 0000000000..4183821a01 --- /dev/null +++ b/packages/flutter_image/test/all_test.dart @@ -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', () {}); + }); +} diff --git a/packages/flutter_image/todo.txt b/packages/flutter_image/todo.txt new file mode 100644 index 0000000000..1495a55c14 --- /dev/null +++ b/packages/flutter_image/todo.txt @@ -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 :)