Newer
Older
Dmitriy Zaporozhets
committed
# name - project path with namespace
# add_repository("gitlab/gitlab-ci")
def add_repository(name)
system("/home/git/gitlab-shell/bin/gitlab-projects add-project #{name}.git")
Dmitriy Zaporozhets
committed
end
#
# name - project path with namespace
#
# Ex.
# remove_repository("gitlab/gitlab-ci")
#
def remove_repository(name)
system("/home/git/gitlab-shell/bin/gitlab-projects rm-project #{name}.git")
# Ex.
# add_key("randx", "sha-rsa ...")
#
def add_key(username, key_content)
system("/home/git/gitlab-shell/bin/gitlab-keys add-key #{username} \"#{key_content}\"")
end
# Remove ssh key from gitlab shell
def remove_key(username, key_content)
system("/home/git/gitlab-shell/bin/gitlab-keys rm-key #{username} \"#{key_content}\"")
Gitlab.config.gitolite.ssh_path_prefix + "#{path}.git"