-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathgitlab_clone.gemspec
More file actions
22 lines (21 loc) · 941 Bytes
/
gitlab_clone.gemspec
File metadata and controls
22 lines (21 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'version'
Gem::Specification.new do |s|
s.name = 'gitlab_clone'
s.version = Version::current
s.date = '2019-01-30'
s.summary = "Pulls down the latest repos from a group in gitlab or a organization group in Github."
s.description = "Clones All Repos In A Gitlab Group Or Github Org."
s.authors = ["Nestor N. Camacho III"]
s.email = 'ncamacho@nnc3.com.to'
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.add_dependency("git", "~> 1.2.6")
s.add_dependency("slop", ">= 4.0.0")
s.add_dependency("httparty", "~> 0.13.1")
s.add_dependency("rainbow", "~> 3.0.0")
s.homepage = 'https://github.com/ncamacho/gitlab_clone'
s.license = 'MIT'
s.post_install_message = "\n\n\tGitlab Clone is now installed!\n\n"
end