-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslightish.gemspec
31 lines (26 loc) · 1.03 KB
/
slightish.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'slightish/version'
Gem::Specification.new do |spec|
spec.name = 'slightish'
spec.version = Slightish::VERSION
spec.required_ruby_version = '>=2.2.1'
spec.authors = ['Tim Clem']
spec.email = ['[email protected]']
spec.summary = 'Literate testing of shell tools'
spec.description = %(
slightish lets you write and run tests for shell tools in a
simple, flexible syntax, intermingled with any other file
format (Markdown, plain text, HTML). Your documentation can
double as your tests.
).strip.gsub(/\s+/, ' ')
spec.homepage = 'http://github.com/misterfifths/slightish'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
end