-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshellter.gemspec
24 lines (20 loc) · 914 Bytes
/
shellter.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/shellter/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Andrew Eberbach"]
gem.email = ["[email protected]"]
gem.description = %q{A library to help with command line launching}
gem.summary = %q{A rounder wheel version of its predecessors.}
gem.homepage = "https://github.com/ebertech/shellter"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "shellter"
gem.require_paths = ["lib"]
gem.version = Shellter::VERSION
gem.add_dependency "escape"
gem.add_development_dependency "pry"
gem.add_development_dependency "pry-doc"
gem.add_development_dependency "pry-nav"
gem.add_development_dependency "simplecov"
end