forked from NARKOZ/gitlab
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitlab.gemspec
More file actions
Latest commit
29 lines (25 loc) · 1.02 KB
/
Copy pathgitlab.gemspec
File metadata and controls
29 lines (25 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- encoding: utf-8 -*-
lib=File.expand_path('../lib',__FILE__)
$LOAD_PATH.unshift(lib)unless $LOAD_PATH.include?(lib)
require'gitlab/version'
Gem::Specification.newdo |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.bindir="exe"
gem.executables=gem.files.grep(%r{^exe/}){ |f| File.basename(f)}
gem.test_files=gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths=["lib"]
gem.license="BSD"
gem.add_runtime_dependency'httparty'
gem.add_runtime_dependency'terminal-table'
gem.add_development_dependency'pry'
gem.add_development_dependency'rake'
gem.add_development_dependency'rspec'
gem.add_development_dependency'webmock'
end