├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── bin └── fasttrack.dart ├── lib └── src │ ├── appstore │ ├── client.dart │ ├── commands │ │ ├── command.dart │ │ ├── prepare.dart │ │ ├── rollout.dart │ │ ├── status.dart │ │ └── submit.dart │ └── config.dart │ ├── common │ ├── command.dart │ ├── config.dart │ ├── context.dart │ └── metadata.dart │ └── playstore │ ├── client.dart │ ├── commands │ ├── command.dart │ ├── promote.dart │ ├── rollout.dart │ └── status.dart │ └── config.dart ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/fasttrack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/bin/fasttrack.dart -------------------------------------------------------------------------------- /lib/src/appstore/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/appstore/client.dart -------------------------------------------------------------------------------- /lib/src/appstore/commands/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/appstore/commands/command.dart -------------------------------------------------------------------------------- /lib/src/appstore/commands/prepare.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/appstore/commands/prepare.dart -------------------------------------------------------------------------------- /lib/src/appstore/commands/rollout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/appstore/commands/rollout.dart -------------------------------------------------------------------------------- /lib/src/appstore/commands/status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/appstore/commands/status.dart -------------------------------------------------------------------------------- /lib/src/appstore/commands/submit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/appstore/commands/submit.dart -------------------------------------------------------------------------------- /lib/src/appstore/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/appstore/config.dart -------------------------------------------------------------------------------- /lib/src/common/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/common/command.dart -------------------------------------------------------------------------------- /lib/src/common/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/common/config.dart -------------------------------------------------------------------------------- /lib/src/common/context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/common/context.dart -------------------------------------------------------------------------------- /lib/src/common/metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/common/metadata.dart -------------------------------------------------------------------------------- /lib/src/playstore/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/playstore/client.dart -------------------------------------------------------------------------------- /lib/src/playstore/commands/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/playstore/commands/command.dart -------------------------------------------------------------------------------- /lib/src/playstore/commands/promote.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/playstore/commands/promote.dart -------------------------------------------------------------------------------- /lib/src/playstore/commands/rollout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/playstore/commands/rollout.dart -------------------------------------------------------------------------------- /lib/src/playstore/commands/status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/playstore/commands/status.dart -------------------------------------------------------------------------------- /lib/src/playstore/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/lib/src/playstore/config.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programmierbar/fasttrack/HEAD/pubspec.yaml --------------------------------------------------------------------------------