-
Notifications
You must be signed in to change notification settings - Fork 14
/
syskit.gemspec
27 lines (23 loc) · 1.01 KB
/
syskit.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
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "syskit/version"
Gem::Specification.new do |s|
s.name = "syskit"
s.version = Syskit::VERSION
s.authors = ["Sylvain Joyeux"]
s.email = "[email protected]"
s.summary = "Component network management extension for Roby"
s.description = <<~DESCRIPTION_TEXT
The Roby plan manager is currently developped from within the Robot Construction
Kit (http://rock-robotics.org). Have a look there. Additionally, the [Roby User
Guide](http://rock-robotics.org/api/tools/roby) is a good place to start with
Roby.
Syskit is a Roby extension that handles component-based networks
DESCRIPTION_TEXT
s.homepage = "http://rock-robotics.org"
s.licenses = ["LGPLv2 or later"]
s.require_paths = ["lib"]
s.extra_rdoc_files = ["README.md"]
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end