Various comment updates and little fixes (#51)

* Update travis.sh to use .analysis_options…

Was accidentally pointing to a non-existing file before.

* Replace uses of !<collection>isEmpty with

… isNotEmpty, as-per Dart style guide.

* Run all tests when calculating coverage

* Various comment cleanups, specifically…

… around having the first line be standalone (more readable) and not repeating comments too much. No actual changes otherwise.

* Remove unneeded @TestOn/library directives.

* Address comments.
4 files changed
tree: 5fe219e43abacabcb4cd534c7a253301435612b2
  1. contrib/
  2. lib/
  3. test/
  4. tool/
  5. .analysis_options
  6. .gitignore
  7. .travis.yml
  8. CHANGELOG.md
  9. LICENSE
  10. pubspec.yaml
  11. README.md
README.md

Build Status Coverage Status

File

A generic file system abstraction for Dart.

Like dart:io, package:file supplies a rich Dart-idiomatic API for accessing a file system.

Unlike dart:io, package:file:

  • Can be used to implement custom file systems.
  • Comes with an in-memory implementation out-of-the-box, making it super-easy to test code that works with the file system.
  • Allows using multiple file systems simultaneously. A file system is a first-class object. Instantiate however many you want and use them all.

Usage

Implement your own custom file system:

import 'package:file/file.dart';

class FooBarFileSystem implements FileSystem { ... }

Use the in-memory file system:

import 'package:file/memory.dart';

var fs = new MemoryFileSystem();

Use the local file system (requires dart:io access):

import 'package:file/local.dart';

var fs = const LocalFileSystem();