forked from easyredmine/redmine-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredmine-installer.gemspec
37 lines (29 loc) · 1.32 KB
/
redmine-installer.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
# coding: utf-8
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'redmine-installer/version'
Gem::Specification.new do |spec|
spec.name = 'redmine-installer'
spec.version = RedmineInstaller::VERSION
spec.authors = ['Ondřej Moravčík']
spec.email = ['[email protected]']
spec.summary = %q{Easy way how install/upgrade Redmine, EasyRedmine or EasyProject.}
spec.description = %q{}
spec.homepage = 'https://github.com/easyredmine/redmine-installer'
spec.license = 'MIT'
files = `git ls-files -z`.split("\x0")
files.delete_if {|f| f.start_with?('spec/packages/') }
spec.files = files
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.3.0'
spec.add_runtime_dependency 'commander'
spec.add_runtime_dependency 'rubyzip'
spec.add_runtime_dependency 'bundler', '>= 1.16'
spec.add_runtime_dependency 'pastel', '~> 0.7.2'
spec.add_runtime_dependency 'tty-prompt', '~> 0.16.1'
spec.add_runtime_dependency 'tty-spinner', '~> 0.8.0'
spec.add_runtime_dependency 'tty-progressbar', '~> 0.15.0'
spec.add_development_dependency 'rake'
end