Rubygem packaging

This commit is contained in:
Junegunn Choi 2013-11-01 00:41:37 +09:00
parent 0d91ee4b32
commit 79fbcb2244
3 changed files with 20 additions and 0 deletions

4
Gemfile Normal file
View File

@ -0,0 +1,4 @@
source 'https://rubygems.org'
# Specify your gem's dependencies in fzf.gemspec
gemspec

1
Rakefile Normal file
View File

@ -0,0 +1 @@
require "bundler/gem_tasks"

15
fzf.gemspec Normal file
View File

@ -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