-
Notifications
You must be signed in to change notification settings - Fork 8
/
cli-console.gemspec
28 lines (24 loc) · 1.1 KB
/
cli-console.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cli-console/version'
Gem::Specification.new do |gem|
gem.name = 'cli-console'
gem.version = CLI::Console::VERSION
gem.authors = ['Dāvis']
gem.email = ['davispuh@gmail.com']
gem.description = 'Basic library for making interactive command-line applications much easier'
gem.summary = 'Create CLI applications easily'
gem.homepage = 'https://github.com/davispuh/CLI-Console'
gem.license = 'UNLICENSE'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'yard'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'highline', '>= 1.6.16'
end