zz_bitbucket_rest_api 0.1.10 → 0.1.11
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/repos/commit.rb +1 -2
- data/lib/bitbucket_rest_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb7e64d9ed84d7efae273f13d6c94a1799196283a7495d9770982c919ecb906f
|
4
|
+
data.tar.gz: 12c336d8e37a735dd7d2e8a45b2ea7154a7b2fec7933a6c02eefbf3116181d12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2addf4b79b556dc21e6a951513ef83d888811a8ed599e10b4184051933c08a7761099c65374205022de7a4ee5d3b5e4f49a9faf853d231010ae1dbaa41b282c7
|
7
|
+
data.tar.gz: b26458b1c5647f9562578b60fa2af3264e4b9c7c5d3184a719c64009da835b16395f87b3ce66c4a092b9d49aa89433f1ca9d45ef2a4e332bd3b8b6e882045751
|
@@ -6,10 +6,9 @@ module BitBucket
|
|
6
6
|
def get_one(user_name, repo_name, short_hash)
|
7
7
|
_update_user_repo_params(user_name, repo_name)
|
8
8
|
_validate_user_repo_params(user, repo) unless user? && repo?
|
9
|
-
normalize! params
|
10
9
|
|
11
10
|
path = "/2.0/repositories/#{user}/#{repo.downcase}/commit/#{short_hash}"
|
12
|
-
response = get_request(path
|
11
|
+
response = get_request(path)
|
13
12
|
return response
|
14
13
|
end
|
15
14
|
|