Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Roman Lacko
gitlab_api
Commits
7ac95366
Commit
7ac95366
authored
Sep 29, 2016
by
Roman Lacko
Browse files
Update README.md
parent
624202db
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
7ac95366
#
``
GitLab::API
``
# GitLab::API
Lightweight implementation of
``
GitLab
``
's API
in Perl.
Lightweight implementation of
[
GitLab
CE API
](
https://docs.gitlab.com/ce/api/
)
in Perl.
## Quick start
...
...
@@ -14,5 +14,33 @@ my $gitlab = GitLab::API->new(
);
my $users = $gitlab->users();
say "Users in GitLab:";
foreach my $user (@$users) {
say $user->{name};
}
my $groups = $gitlab->groups(search => "pb161");
```
\ No newline at end of file
```
## Documentation
-
[
official GitLab API documentation
](
https://docs.gitlab.com/ce/api/
)
-
core modules
-
[
`GitLab`
](
pod-GitLab.md
)
-
[
`GitLab::API`
](
pod-GitLab-API.md
)
-
extensions
-
[
`GitLab::Groups`
](
pod-GitLab-Groups.md
)
-
[
`GitLab::Namespaces`
](
pod-GitLab-Namespaces.md
)
-
[
`GitLab::Users`
](
pod-GitLab-Users.md
)
## Dependencies
-
[
`HTTP::Headers`
](
https://metacpan.org/pod/HTTP::Headers
)
-
[
`JSON`
](
https://metacpan.org/pod/JSON
)
-
[
`Log::Any`
](
https://metacpan.org/pod/Log::Any
)
-
[
`LWP::UserAgent`
](
https://metacpan.org/pod/LWP::UserAgent
)
-
[
`LWP::Protocol::https`
](
https://metacpan.org/pod/LWP::Protocol::https
)
-
[
`Try::Tiny`
](
https://metacpan.org/pod/Try::Tiny
)
-
[
`URI`
](
https://metacpan.org/pod/URI
)
-
[
`URI::QueryParam`
](
https://metacpan.org/pod/URI::QueryParam
)
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment