mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-16 18:25:08 +00:00
9904f5354e
See the discussion in #18. Use --black option to use black background regardless of the default background color of the terminal. Also, this option can be used to fix rendering issues on terminals that don't support use_default_colors (man 3 default_colors). Depending on the terminal, use_default_colors may or may not succeed, but the Ruby version of it always returns nil, it's currently not possible to automatically enable this option.
18 lines
546 B
Ruby
18 lines
546 B
Ruby
# coding: utf-8
|
|
Gem::Specification.new do |spec|
|
|
spec.name = 'fzf'
|
|
spec.version = '0.8.1'
|
|
spec.authors = ['Junegunn Choi']
|
|
spec.email = ['junegunn.c@gmail.com']
|
|
spec.description = %q{Fuzzy finder for your shell}
|
|
spec.summary = %q{Fuzzy finder for your shell}
|
|
spec.homepage = 'https://github.com/junegunn/fzf'
|
|
spec.license = 'MIT'
|
|
|
|
spec.bindir = '.'
|
|
spec.files = %w[fzf.gemspec]
|
|
spec.executables = 'fzf'
|
|
|
|
spec.add_runtime_dependency 'curses', '~> 1.0.0'
|
|
end
|