Updated angel_auth_twitter
This commit is contained in:
parent
b76b36b38a
commit
8d0606faf3
3 changed files with 24 additions and 17 deletions
|
@ -43,6 +43,7 @@
|
||||||
* Updated angel_container_generator to 2.0.0
|
* Updated angel_container_generator to 2.0.0
|
||||||
* Updated angel_file_service to 3.0.0
|
* Updated angel_file_service to 3.0.0
|
||||||
* Updated angel_eventsource to 2.0.0 (use a fork of eventsource)
|
* Updated angel_eventsource to 2.0.0 (use a fork of eventsource)
|
||||||
|
* Updated angel_auth_twitter to 3.0.0 (use a fork of twitter and oauth)
|
||||||
|
|
||||||
# 2.2.0
|
# 2.2.0
|
||||||
* Changed Dart SDK requirements for all packages to ">=2.10.0 <2.12.0"
|
* Changed Dart SDK requirements for all packages to ">=2.10.0 <2.12.0"
|
||||||
|
|
|
@ -1,22 +1,28 @@
|
||||||
author: "Tobe O <thosakwe@gmail.com>"
|
name: "angel_auth_twitter"
|
||||||
|
#author: "Tobe O <thosakwe@gmail.com>"
|
||||||
description: "package:angel_auth strategy for Twitter login. Auto-signs requests."
|
description: "package:angel_auth strategy for Twitter login. Auto-signs requests."
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.10.0 <2.12.0"
|
sdk: ">=2.10.0 <3.0.0"
|
||||||
homepage: "https://github.com/angel-dart/auth_twitter.git"
|
homepage: "https://github.com/angel-dart/auth_twitter.git"
|
||||||
name: "angel_auth_twitter"
|
version: 3.0.0
|
||||||
version: 2.0.0
|
publish_to: none
|
||||||
dependencies:
|
dependencies:
|
||||||
angel_auth: # ^2.0.0
|
angel_auth:
|
||||||
path: ../auth
|
git:
|
||||||
angel_framework: # ^2.0.0-alpha
|
url: https://github.com/dukefirehawk/angel.git
|
||||||
path: ../framework
|
ref: sdk-2.12.x
|
||||||
http: ">=0.11.0 <0.13.0"
|
path: packages/auth
|
||||||
|
angel_framework:
|
||||||
|
git:
|
||||||
|
url: https://github.com/dukefirehawk/angel.git
|
||||||
|
ref: sdk-2.12.x
|
||||||
|
path: packages/framework
|
||||||
|
http: ^0.13.0
|
||||||
path: ^1.0.0
|
path: ^1.0.0
|
||||||
# oauth:
|
twitter:
|
||||||
# git:
|
git:
|
||||||
# url: git://github.com/sh4869/oauth.dart.git
|
url: https://github.com/dukefirehawk/twitter.dart.git
|
||||||
# ref: develop
|
ref: sdk-2.12.x
|
||||||
twitter: ^1.0.0
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
logging: ^0.11.0
|
logging: ^1.0.0
|
||||||
pedantic: ^1.0.0
|
pedantic: ^1.11.0
|
||||||
|
|
|
@ -43,7 +43,7 @@ class ControllerCommand extends Command {
|
||||||
const MakerDependency('angel_framework', '^2.0.0')
|
const MakerDependency('angel_framework', '^2.0.0')
|
||||||
];
|
];
|
||||||
|
|
||||||
// ${pubspec.name}.src.models.${rc.snakeCase}
|
//${pubspec.name}.src.models.${rc.snakeCase}
|
||||||
|
|
||||||
var rc = new ReCase(name);
|
var rc = new ReCase(name);
|
||||||
var controllerLib = new Library((controllerLib) {
|
var controllerLib = new Library((controllerLib) {
|
||||||
|
|
Loading…
Reference in a new issue