forked from NARKOZ/gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitlab.gemspec
31 lines (26 loc) · 1.07 KB
/
gitlab.gemspec
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
30
31
# -*- 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 = ["[email protected]"]
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.required_ruby_version = ">= 2.0.0"
gem.add_runtime_dependency 'httparty'
gem.add_runtime_dependency 'terminal-table', '1.7.1'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'webmock'
end