-
Notifications
You must be signed in to change notification settings - Fork 3
/
apaka.gemspec
29 lines (25 loc) · 1.26 KB
/
apaka.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
# coding: utf-8
require 'rbconfig'
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'apaka/version'
Gem::Specification.new do |s|
s.name = "apaka"
s.version = Apaka::VERSION
s.authors = ["Thomas Roehr", "Pierre Willenbrock", "Sylvain Joyeux"]
s.email = "thomas.roehr@dfki.de"
s.summary = "Automated packaging for autoproj"
s.description = "autoproj is a manager for sets of software packages. It allows the user to import and build packages from source. apaka builds upon autoproj's functionality and enables the creation of packages: currently only the creation of Debian packages is supported"
s.homepage = "http://github.com/rock-core/apaka"
s.licenses = ["BSD-3-Clause"]
s.required_ruby_version = '>= 2.1.0'
s.bindir = 'bin'
s.executables = ['apaka', 'apaka-gem_dependencies', 'apaka-make-deb', 'apaka-package_available', 'apaka-v1']
s.require_paths = ["lib"]
s.extensions = []
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test)/}) }
s.add_runtime_dependency "bundler"
s.add_runtime_dependency "autoproj", ">= 1.14.0"
s.add_development_dependency "minitest", "~> 5.0", ">= 5.0"
s.add_development_dependency "yard"
end