-
Notifications
You must be signed in to change notification settings - Fork 6
/
krpc.gemspec
35 lines (29 loc) · 1.4 KB
/
krpc.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'krpc/version'
Gem::Specification.new do |s|
s.name = "krpc"
s.version = KRPC::VERSION
s.authors = ["Tomasz Więch"]
s.email = ["tewu.dev@gmail.com"]
s.summary = "Client library for kRPC"
s.description = "kRPC-rb is a Ruby client library for kRPC, a Kerbal Space Program mod that allows you to control KSP from external scripts running outside of the game."
s.homepage = "https://github.com/TeWu/krpc-rb"
s.license = "GPL-3.0"
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(doc|test|spec|features|bin)/|Rakefile|CHANGELOG}) || f.start_with?('.') }
s.require_paths = ["lib"]
s.extra_rdoc_files = ["README.md"]
s.rdoc_options << "--markup" << "markdown" <<
"--title" << "kRPC-rb API Docs" <<
"--main" << "README.md"
s.required_ruby_version = ">= 2.3.0"
s.add_runtime_dependency "google-protobuf", "~> 3.11"
s.add_runtime_dependency "colorize", "~> 0.8"
s.add_runtime_dependency "nokogiri", "~> 1.10"
s.add_development_dependency "bundler", "~> 2.1"
s.add_development_dependency "pry", "~> 0.13"
s.add_development_dependency "rspec", "~> 3.9"
s.add_development_dependency "rake", "~> 13.0"
s.add_development_dependency "hanna-nouveau", "~> 1.0"
end