bitbucket_rest_api2 0.2.2 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bitbucket_rest_api/user.rb +3 -3
- data/lib/bitbucket_rest_api/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 045be3f2ccc39c4e17be95cc0521de0dcff26357ea178904a4c7d52546b8bf16
|
4
|
+
data.tar.gz: 9693eab36c48f610da08d53497e024528ba636a394ac31fe4a73604d85f391b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3be4afc1904963bbb5eb5a20576ece90661dfc0c4b2e335101b12a2cf5b71f46cd0dcd43cdcaf78ba244cf1e472d161d5422f4ebc9648942505ff64c3571a2e4
|
7
|
+
data.tar.gz: 5d93b129e4e95f794ef3a197456afff8d60923729b9fb078acd3da179c4837563e88a3dbdbe58255273c93cf80699fc22ee8fbbee00e17ad9f84544d8525c1d3
|
@@ -75,7 +75,7 @@ module BitBucket
|
|
75
75
|
# or has at least read access to.
|
76
76
|
# Use this if you're looking for a full list of all of the repositories associated with a user.
|
77
77
|
def repositories
|
78
|
-
get_request("/2.0/user
|
78
|
+
get_request("/2.0/repositories/#{self.user}")
|
79
79
|
end
|
80
80
|
|
81
81
|
alias :repos :repositories
|
@@ -86,7 +86,7 @@ module BitBucket
|
|
86
86
|
# Gets a list of the repositories the account follows.
|
87
87
|
# This is the same list that appears on the Following tab on your account dashboard.
|
88
88
|
def overview
|
89
|
-
get_request("/2.0/
|
89
|
+
get_request("/2.0/repositories/overview")
|
90
90
|
end
|
91
91
|
|
92
92
|
|
@@ -94,7 +94,7 @@ module BitBucket
|
|
94
94
|
# GET the list of repositories on the dashboard
|
95
95
|
# Gets the repositories list from the account's dashboard.
|
96
96
|
def dashboard
|
97
|
-
get_request("/2.0/
|
97
|
+
get_request("/2.0/repositories/dashboard")
|
98
98
|
end
|
99
99
|
|
100
100
|
end # User
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bitbucket_rest_api2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Cochran
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: hashie
|