Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/enkessler/cuketagger

batch tagging of cucumber features/scenarios
https://github.com/enkessler/cuketagger

Last synced: 13 days ago
JSON representation

batch tagging of cucumber features/scenarios

Awesome Lists containing this project

README

        

Basic stuff:
[![Gem Version](https://badge.fury.io/rb/cuketagger.svg)](https://rubygems.org/gems/cuketagger)
[![Project License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/mit-license.php)
[![Downloads](https://img.shields.io/gem/dt/cuketagger.svg)](https://rubygems.org/gems/cuketagger)

User stuff:
[![Yard Docs](http://img.shields.io/badge/Documentation-API-blue.svg)](https://www.rubydoc.info/gems/cuketagger)

Developer stuff:
[![Build Status](https://github.com/enkessler/cuketagger/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/enkessler/cuketagger/actions/workflows/ci.yml?query=branch%3Amaster)
[![Coverage Status](https://coveralls.io/repos/github/enkessler/cuketagger/badge.svg?branch=master)](https://coveralls.io/github/enkessler/cuketagger?branch=master)
[![Maintainability](https://api.codeclimate.com/v1/badges/82a45e63ba89aaa3c760/maintainability)](https://codeclimate.com/github/enkessler/cuketagger/maintainability)

---

# Cuketagger

This gem provides the ability to manipulate, in bulk, the tags in a Cucumber test
suite.

## Installation

Add this line to your application's Gemfile:

gem 'cuketagger'

And then execute:

$ bundle

Or install it yourself as:

$ gem install cuketagger

## Usage

Tags can be added,

$ cuketagger add:foo path/to/some.feature

removed,

$ cuketagger remove:foo path/to/some.feature

or replaced.

$ cuketagger replace:old_tag:new_tag path/to/some.feature

Multiple tags and files can be manipulated at the same time

$ cuketagger remove:wip add:release5 replace:qa:prod features/foo.feature:6 features/bar.feature

and the modified file content will be output to the console. To modify the files
themselves, add the explicit `force` tag.

$ cuketagger --force remove:wip add:release5 replace:qa:prod features/foo.feature:6 features/bar.feature

## Development and Contributing

See [CONTRIBUTING.md](https://github.com/enkessler/cuketagger/blob/master/CONTRIBUTING.md)

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).