Skip to content

Commit 67f8f7f

Browse files
author
Peter Bryant
committed
🎉 Initial commit
0 parents  commit 67f8f7f

8 files changed

+66
-0
lines changed

.github/workflows/main.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Setup Dart
12+
uses: dart-lang/setup-dart@v1
13+
14+
- name: Install dependencies
15+
run: dart pub get
16+
17+
- name: Verify formatting
18+
run: dart format --output=none --set-exit-if-changed .
19+
20+
- name: Analyze project source
21+
run: dart analyze
22+
23+
- name: Check imports
24+
run: dart pub run import_sorter:main --exit-if-changed
25+
26+
- name: Run tests
27+
run: dart test

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Files and directories created by pub
2+
.dart_tool/
3+
.packages
4+
5+
# Omit commiting pubspec.lock for library packages:
6+
# https://dart.dev/guides/libraries/private-files#pubspeclock
7+
pubspec.lock
8+
9+
# Conventional directory for build outputs
10+
build/
11+
12+
# Directory created by dartdoc
13+
doc/api/

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 1.0.0
2+
3+
- Initial version, created by Stagehand

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Passputter
2+
3+
Easily authenticate using OAuth 2.0 client/password grants.

analysis_options.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include: package:very_good_analysis/analysis_options.yaml

example/passputter_example.dart

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import 'package:passputter/passputter.dart';
2+
3+
void main() {}

lib/passputter.dart

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/// Easily authenticate using OAuth 2.0 client/password grants.
2+
library passputter;

pubspec.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: passputter
2+
description: Easily authenticate using OAuth 2.0 client/password grants.
3+
version: 1.0.0
4+
5+
environment:
6+
sdk: ">=2.12.0 <3.0.0"
7+
8+
dev_dependencies:
9+
import_sorter: ^4.5.0
10+
test: ^1.17.3
11+
very_good_analysis: ^2.0.3
12+
13+
import_sorter:
14+
emojis: true

0 commit comments

Comments
 (0)