-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgitlabomni-manage-tools.gemspec
42 lines (33 loc) · 1.35 KB
/
gitlabomni-manage-tools.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
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'gitlabomni_manage_tools/version'
Gem::Specification.new do |spec|
spec.name = 'gitlabomni-manage-tools'
spec.version = GitLabOmnibusManage::VERSION
spec.date = Time.now.strftime('%Y-%m-%d')
spec.license = 'MIT'
spec.authors = 'uecmma'
spec.email = '[email protected]'
spec.summary = 'This tools provide some features for GitLab Omnibus management'
spec.description = <<~DESCRIPTION
This tools provide below features for GitLab Omnibus:
* Notify new updates of GitLab Omnibus for manager.
* Update GitLab Omnibus more easily.
DESCRIPTION
spec.homepage = 'https://github.com/uecmma/gitlabomni-manage-tools'
spec.platform = Gem::Platform::RUBY
spec.add_dependency('thor')
spec.add_dependency('mail')
spec.add_dependency('lockfile')
spec.add_development_dependency('bundler')
spec.add_development_dependency('rake')
spec.add_development_dependency('pry')
spec.add_development_dependency('rubocop')
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = `git ls-files -z -- {test,spec,features}/*`.split("\x0")
spec.bindir = 'exe'
spec.executables = `git ls-files -z -- exe/*`
.split("\x0").map { |f| File.basename(f) }
spec.require_paths = ['lib']
end