Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Added formula for ffind. #15329

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions Library/Formula/ffind.rb
@@ -0,0 +1,16 @@
require 'formula'

class Ffind < Formula
homepage 'https://github.com/sjl/friendly-find/'
url 'https://github.com/sjl/friendly-find/tarball/v0.2.0'
version 'v0.2.0'
sha1 'b902ebb9966c1394628e52d0dea3b1ba7c421720'

def install
bin.install "ffind"
end

def test
system "ffind"
end
end