Skip to content

Commit 891f5fe

Browse files
committed
Automated update
1 parent 9aa6e78 commit 891f5fe

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Adding dependency to pubspec.yaml
1414

1515
```
1616
dependencies:
17-
google_oauth2_v2_api: '>=0.4.10'
17+
google_oauth2_v2_api: '>=0.4.11'
1818
```
1919

2020
For web applications:
@@ -29,13 +29,13 @@ For console application:
2929
import "package:google_oauth2_v2_api/oauth2_v2_api_console.dart" as oauth2client;
3030
```
3131

32-
Working with out authentication the following constructor can be called:
32+
Working without authentication the following constructor can be called:
3333

3434
```
3535
var oauth2 = new oauth2client.Oauth2();
3636
```
3737

38-
Working with authentication then create a new `GoogleOAuth2` object and pass it to the constructor:
38+
To use authentication create a new `GoogleOAuth2` object and pass it to the constructor:
3939

4040

4141
```

pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: google_oauth2_v2_api
2-
version: 0.4.10
2+
version: 0.4.11
33
authors:
44
- Adam Singer <[email protected]>
55
- Gerwin Sturm <[email protected]>
66
- Kevin Moore <[email protected]>
77
description: Auto-generated client library for accessing the oauth2 v2 API
88
homepage: https://github.com/dart-gde/discovery_api_dart_client_generator
99
environment:
10-
sdk: '>=0.8.7'
10+
sdk: '>=0.8.10+6 <2.0.0'
1111
dependencies:
12-
google_oauth2_client: '>=0.3.0'
12+
google_oauth2_client: '>=0.3.2'
1313
dev_dependencies:
14-
hop: '>=0.26.0'
14+
hop: '>=0.27.1'

tool/hop_runner.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ library hop_runner;
33
import 'package:hop/hop.dart';
44
import 'package:hop/hop_tasks.dart';
55

6-
void main() {
6+
void main(List<String> args) {
77

88
List pathList = [
99
'lib/oauth2_v2_api_browser.dart',
@@ -15,5 +15,5 @@ void main() {
1515

1616
addTask('analyze', createAnalyzerTask(pathList));
1717

18-
runHop();
18+
runHop(args);
1919
}

0 commit comments

Comments
 (0)