This commit is contained in:
viletyy 2022-07-19 10:57:06 +08:00
parent 0c5724684c
commit 9d6780719d
3 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
gitea-client (0.10.1)
gitea-client (0.10.2)
rest-client (~> 2.1.0)
GEM

View File

@ -29,6 +29,7 @@ module Gitea
@http.get("/repos/#{owner}/#{repo}/assignees", opt)
end
# get repository blame
def get_repos_blame_by_owner_repo(owner, repo, opt = {})
@http.get("/repos/#{owner}/#{repo}/blame", opt)
end

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Gitea
VERSION = "0.10.1"
VERSION = "0.10.2"
end