-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsimple-cli.gemspec
31 lines (23 loc) · 992 Bytes
/
simple-cli.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
# This file is part of the sinatra-sse ruby gem.
#
# Copyright (c) 2016, 2017 @radiospiel, mediapeers Gem
# Distributed under the terms of the modified BSD license, see LICENSE.BSD
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.name = "simple-cli"
gem.version = File.read("VERSION")
gem.authors = [ "radiospiel", "mediapeers GmbH" ]
gem.email = "[email protected]"
gem.homepage = "http://github.com/radiospiel/simple-cli"
gem.summary = "Simple CLI builder for ruby"
gem.description = "Simple CLI builder"
gem.files = `git ls-files`.split($/)
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = %w(lib)
# executables are used for development purposes only
gem.executables = []
gem.required_ruby_version = '>= 2.5'
# optional gems (required by some of the parts)
gem.add_dependency "simple-service", "~> 0.2.2"
end