-
Notifications
You must be signed in to change notification settings - Fork 16
/
autobuild.gemspec
44 lines (41 loc) · 1.86 KB
/
autobuild.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
43
44
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'autobuild/version'
Gem::Specification.new do |s|
s.name = "autobuild"
s.version = Autobuild::VERSION
s.required_ruby_version = '>= 2.5.0'
s.authors = ["Sylvain Joyeux"]
s.email = "[email protected]"
s.summary = "Library to handle build systems and import mechanisms"
s.description = "Collection of classes to handle build systems "\
"(CMake, autotools, ...) and import mechanisms "\
"(tarballs, CVS, SVN, git, ...). It also offers a Rake integration "\
"to import and build such software packages. It is the backbone "\
"of the autoproj (http://rock-robotics.org/autoproj) integrated "\
"software project management tool."
s.homepage = "http://rock-robotics.org"
s.licenses = ["BSD"]
s.require_paths = ["lib"]
s.extensions = []
s.files = `git ls-files -z`.split("\x0")
.reject { |f| f.match(%r{^(test|spec|features)/}) }
s.add_runtime_dependency "concurrent-ruby", "~> 1.1"
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.1.0")
s.add_runtime_dependency "net-smtp"
end
s.add_runtime_dependency "pastel", "~> 0.7.0"
s.add_runtime_dependency "rake", "~> 13.0"
s.add_runtime_dependency 'tty-cursor', '~> 0.7.0'
s.add_runtime_dependency 'tty-prompt', '~> 0.21.0'
s.add_runtime_dependency 'tty-screen', '~> 0.8.0'
s.add_runtime_dependency "utilrb", "~> 3.0", ">= 3.0"
s.add_development_dependency "fakefs"
s.add_development_dependency "flexmock", '~> 2.0', ">= 2.0.0"
s.add_development_dependency "minitest", "~> 5.0", ">= 5.0"
s.add_development_dependency "simplecov"
s.add_development_dependency "timecop"
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.0.0")
s.add_development_dependency "webrick"
end
end