0.0
Low commit activity in last 3 years
A long-lived project that still receives updates
A collection of tasks for Runfile
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Runfile Tasks

A library of tasks ready to be included in your Runfile.

Note that this version of the gem is intended for Runfile version >= 1.0.

If you are using an older version of Runfile, you will also need to lock the runfile-tasks version.

gem 'runfile-tasks', '< 1.0'

Install

Manually:

$ gem install runfile-tasks

With bundler:

gem 'runfile-tasks'

Usage

In your Runfile, use the import_gem directive to require any of the runfiles:

title 'My Runfile'

# commands for building and publishing your gem
import_gem 'runfile-tasks/gem'
# or without publish/yank actions
import_gem 'runfile-tasks/gem', private: true

# commands for building and publishing your Dockerfile
import_gem 'runfile-tasks/docker', image: 'my/image', version: '1.2.3'