File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Adding dependency to pubspec.yaml
14
14
15
15
```
16
16
dependencies:
17
- google_oauth2_v2_api: '>=0.4.10 '
17
+ google_oauth2_v2_api: '>=0.4.11 '
18
18
```
19
19
20
20
For web applications:
@@ -29,13 +29,13 @@ For console application:
29
29
import "package:google_oauth2_v2_api/oauth2_v2_api_console.dart" as oauth2client;
30
30
```
31
31
32
- Working with out authentication the following constructor can be called:
32
+ Working without authentication the following constructor can be called:
33
33
34
34
```
35
35
var oauth2 = new oauth2client.Oauth2();
36
36
```
37
37
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:
39
39
40
40
41
41
```
Original file line number Diff line number Diff line change 1
1
name : google_oauth2_v2_api
2
- version : 0.4.10
2
+ version : 0.4.11
3
3
authors :
4
4
5
5
-
Gerwin Sturm <[email protected] >
6
6
7
7
description : Auto-generated client library for accessing the oauth2 v2 API
8
8
homepage : https://github.com/dart-gde/discovery_api_dart_client_generator
9
9
environment :
10
- sdk : ' >=0.8.7 '
10
+ sdk : ' >=0.8.10+6 <2.0.0 '
11
11
dependencies :
12
- google_oauth2_client : ' >=0.3.0 '
12
+ google_oauth2_client : ' >=0.3.2 '
13
13
dev_dependencies :
14
- hop : ' >=0.26.0 '
14
+ hop : ' >=0.27.1 '
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ library hop_runner;
3
3
import 'package:hop/hop.dart' ;
4
4
import 'package:hop/hop_tasks.dart' ;
5
5
6
- void main () {
6
+ void main (List < String > args ) {
7
7
8
8
List pathList = [
9
9
'lib/oauth2_v2_api_browser.dart' ,
@@ -15,5 +15,5 @@ void main() {
15
15
16
16
addTask ('analyze' , createAnalyzerTask (pathList));
17
17
18
- runHop ();
18
+ runHop (args );
19
19
}
You can’t perform that action at this time.
0 commit comments