-
Notifications
You must be signed in to change notification settings - Fork 0
/
working_set.gemspec
35 lines (29 loc) · 1.44 KB
/
working_set.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 'working_set'
Gem::Specification.new do |spec|
spec.name = "working_set"
spec.version = WorkingSet::VERSION
spec.authors = ["Jim Garvin"]
spec.email = ["[email protected]"]
spec.summary = %q{Companion for your terminal-based text editor.}
spec.description = %q{Working Set is a multithreaded custom protocol server with an ncurses-based terminal interface that displays search results with context for better comprehension and easy navigation.}
spec.homepage = "https://github.com/coderifous/working_set"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_dependency "zeitwerk", "~> 2.4"
spec.add_dependency "celluloid", "~> 0.17"
spec.add_dependency "celluloid-io", "~> 0.17"
spec.add_dependency "celluloid-supervision", "~> 0.20.6"
spec.add_dependency "ncurses-ruby", "~> 1.2"
spec.add_dependency "listen", "~> 3.2"
spec.add_dependency "clipboard", "~> 1.3"
spec.add_dependency "tty-option", "~> 0.1"
spec.add_dependency "tty-logger", "~> 0.4"
end