You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
980 B
27 lines
980 B
# -*- 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
|