diff --git a/Gemfile b/Gemfile new file mode 100644 index 00000000..dbc269af --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source 'https://rubygems.org' + +# Specify your gem's dependencies in fzf.gemspec +gemspec diff --git a/Rakefile b/Rakefile new file mode 100644 index 00000000..29955274 --- /dev/null +++ b/Rakefile @@ -0,0 +1 @@ +require "bundler/gem_tasks" diff --git a/fzf.gemspec b/fzf.gemspec new file mode 100644 index 00000000..5a95a11c --- /dev/null +++ b/fzf.gemspec @@ -0,0 +1,15 @@ +# coding: utf-8 +Gem::Specification.new do |spec| + spec.name = 'fzf' + spec.version = '0.1.0' + 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' +end