mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 03:40:49 +08:00
init project
This commit is contained in:
26
lib/gitlab-cli/gitlab.gemspec
Normal file
26
lib/gitlab-cli/gitlab.gemspec
Normal file
@@ -0,0 +1,26 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
lib = File.expand_path('../lib', __FILE__)
|
||||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
||||
require 'gitlab/version'
|
||||
|
||||
Gem::Specification.new do |gem|
|
||||
gem.name = "gitlab"
|
||||
gem.version = Gitlab::VERSION
|
||||
gem.authors = ["Nihad Abbasov"]
|
||||
gem.email = ["mail@narkoz.me"]
|
||||
gem.description = %q{Ruby client and CLI for GitLab API}
|
||||
gem.summary = %q{A Ruby wrapper and CLI for the GitLab API}
|
||||
gem.homepage = "https://github.com/narkoz/gitlab"
|
||||
|
||||
gem.files = `git ls-files`.split($/)
|
||||
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
||||
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
||||
gem.require_paths = ["lib"]
|
||||
|
||||
gem.add_runtime_dependency 'httparty'
|
||||
gem.add_runtime_dependency 'terminal-table'
|
||||
|
||||
gem.add_development_dependency 'rake'
|
||||
gem.add_development_dependency 'rspec'
|
||||
gem.add_development_dependency 'webmock'
|
||||
end
|
||||
Reference in New Issue
Block a user