A high level git url parser for common git providers.
import 'package:git_url_parse/git-url-parse.dart' show gitUrlParse;
void main(){
Map<String,dynamic> gitUrlInfo = gitUrlParse('https+git@github.com:gpmer/gpm.js.git');
print(urlInfo);
}
# print out
{
"href": "https+git@github.com:gpmer/gpm.js.git",
"protocols": [
"https",
"git"
],
"protocol": "https",
"port": 443,
"host": "github.com",
"user": "gpmer",
"password": "",
"origin": "https+git@github.com",
"path": "/gpm.js.git",
"query": "",
"hash": "",
"source": "github.com",
"name": "gpm.js",
"owner": "gpmer",
"full_name": "gpmer/gpm.js"
}
./TEST
git clone https://github.com/axetroy/git-url-parse.git && cd ./git-url-parse
pub get
./TEST
The MIT License
Add this to your package's pubspec.yaml file:
dependencies:
git_url_parse: ^0.1.0
You can install packages from the command line:
with pub:
$ pub get
Alternatively, your editor might support pub get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:git_url_parse/git-url-parse.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
0.1.0 | Mar 2, 2017 |
|
|
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
0
|
Health:
Code health derived from static analysis.
[more]
|
--
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
--
|
Overall:
Weighted score of the above.
[more]
|
0
|
The package version is not analyzed, because it does not support Dart 2. Until this is resolved, the package will receive a health and maintenance score of 0.
Support Dart 2 in pubspec.yaml
.
The SDK constraint in pubspec.yaml
doesn't allow the Dart 2.0.0 release. For information about upgrading it to be Dart 2 compatible, please see https://www.dartlang.org/dart-2#migration.
Make sure dartdoc
successfully runs on your package's source files. (-10 points)
Dependencies were not resolved.