zz_bitbucket_rest_api 0.1.9 → 0.1.10
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.rb +4 -0
- 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: 3c2e258c28cd7a78e83e79a14e856be03155e8caa56b2086cacc192dd5fcee0f
|
4
|
+
data.tar.gz: 5907a4514126eed562a205f33c390e0d850474efee386712dfd91bbaae93b1d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a3b62317bb4dcfe67a4e0d7cecbeb70851c4c066a431ee59895c96264c7bea83df76a8b33001b6f96ee5f68cc900f981e8ee6dfcb2db634d3f1592b16611878
|
7
|
+
data.tar.gz: 2c0ee61b8033820b24d6d45447603a33fd65b91dff6b1a2b8711df44adfc492afac7464a27c6b3de105ac01c74a3bf107bcd02019cf88cf17e24bb58ef38a789
|
@@ -13,6 +13,7 @@ module BitBucket
|
|
13
13
|
:Sources => 'sources',
|
14
14
|
:Forks => 'forks',
|
15
15
|
:Commits => 'commits',
|
16
|
+
:Commit => 'commit',
|
16
17
|
:Download => 'download',
|
17
18
|
:Webhooks => 'webhooks',
|
18
19
|
:PullRequest => 'pull_request',
|
@@ -76,6 +77,9 @@ module BitBucket
|
|
76
77
|
def commits
|
77
78
|
@commits ||=ApiFactory.new 'Repos::Commits'
|
78
79
|
end
|
80
|
+
def commit
|
81
|
+
@commit ||=ApiFactory.new 'Repos::Commit'
|
82
|
+
end
|
79
83
|
def download
|
80
84
|
@download ||=ApiFactory.new "Repos::Download"
|
81
85
|
end
|