2013-10-31 15:41:37 +00:00
|
|
|
# coding: utf-8
|
|
|
|
Gem::Specification.new do |spec|
|
|
|
|
spec.name = 'fzf'
|
2014-03-08 19:06:12 +00:00
|
|
|
spec.version = '0.8.1'
|
2013-10-31 15:41:37 +00:00
|
|
|
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'
|
2013-12-25 16:06:46 +00:00
|
|
|
|
|
|
|
spec.add_runtime_dependency 'curses', '~> 1.0.0'
|
2013-10-31 15:41:37 +00:00
|
|
|
end
|