bitbucket_rest_api2 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c3c780a33274ab280cff7febc0e2c08867bdcb93d83d6684b06654cce218230e
4
- data.tar.gz: 8e57c5a2cebac9abab4720f49f31b33c3f67c1b0cb666a7b161feabb584b3b57
3
+ metadata.gz: 28b1659fe3ae31430e5073167f414165dcf077e00d8e9423837396063d529a6a
4
+ data.tar.gz: 457fc2f0e7e66ed59813c5a38674a418b7763da6d4b0b1a1c20c2ad64866826f
5
5
  SHA512:
6
- metadata.gz: b42134e350f99ed320c86fb458b639787d5a4cd6ecb320d04c80e99a2bf803225fcffaa0b36feff096f43c59a039350e028209487fd1e968f9583ef9e4604b93
7
- data.tar.gz: 30f0ccc47f1c08902272368102e76e865f5807a4312503bdf837cbf7c0cf475afda2ea232e0780ad87fc847e1048da9c005adf2cbbf4e54ee6b31681344ebd9b
6
+ metadata.gz: 5641d0d4d4e0e93fddcccd8ff80948d7932ddc7a5e5b8d6cbad4f61eba056e24d5a75c215a63f2597010f04c806f12e65096f45e1a962d0143bdd7c50b4d590c
7
+ data.tar.gz: 5e8b73c0db08b157ef4c20ba5f4a6f4ed68182ed1f01054d468eea0ba7f5b1a2e99a047defb1b8ec701c1960505d0176132fa41ce522c85b180af5768c98ced9
@@ -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/repositories")
78
+ get_request("/2.0/user/repositories")
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/repositories/overview")
89
+ get_request("/2.0/user/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/repositories/dashboard")
97
+ get_request("/2.0/user/repositories/dashboard")
98
98
  end
99
99
 
100
100
  end # User
@@ -4,7 +4,7 @@ module BitBucket
4
4
  module VERSION
5
5
  MAJOR = 0
6
6
  MINOR = 2
7
- PATCH = 1
7
+ PATCH = 2
8
8
 
9
9
  STRING = [MAJOR, MINOR, PATCH].compact.join('.')
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bitbucket_rest_api2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Cochran