dev-ruby/transproc - 1.1.1 (graaff)

Search

Install

Install this version:

emerge -a =dev-ruby/transproc-1.1.1

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-ruby/transproc-1.1.1

Or alternatively:

emerge --autounmask-write -a =dev-ruby/transproc-1.1.1

Package Information

Description:
Compose procs into a pipeline using left-to-right function composition
Homepage:
https://github.com/solnic/transproc
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
1.1.1 8 ~amd64 $(ver_cut 1)
View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

USE_RUBY="ruby32 ruby33 ruby34 ruby40"

RUBY_FAKEGEM_BINWRAP=""
RUBY_FAKEGEM_RECIPE_TEST="rspec3"

RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"

inherit ruby-fakegem

DESCRIPTION="Compose procs into a pipeline using left-to-right function composition"

HOMEPAGE="https://github.com/solnic/transproc"
LICENSE="MIT"

SLOT="$(ver_cut 1)"
KEYWORDS="~amd64"

ruby_add_depend "test? ( dev-ruby/dry-equalizer )"

all_ruby_prepare() {
	sed -e '2irequire "pathname"' -i spec/spec_helper.rb || die
}

Inherited Eclasses