Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dannyben/runfile-tasks
A library of tasks ready to be included in your Runfile
https://github.com/dannyben/runfile-tasks
Last synced: 3 months ago
JSON representation
A library of tasks ready to be included in your Runfile
- Host: GitHub
- URL: https://github.com/dannyben/runfile-tasks
- Owner: DannyBen
- License: mit
- Created: 2016-02-12T14:52:08.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-02-06T18:24:11.000Z (12 months ago)
- Last Synced: 2024-10-06T05:20:07.723Z (3 months ago)
- Language: Ruby
- Size: 48.8 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this 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.```ruby
gem 'runfile-tasks', '< 1.0'
```## Install
Manually:
```shell
$ gem install runfile-tasks
```With bundler:
```ruby
gem 'runfile-tasks'
```## Usage
In your Runfile, use the `import_gem` directive to require any of the runfiles:
```ruby
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'
```---
[Runfile]: https://github.com/DannyBen/runfile