Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ericmeyer/dotpretty
https://github.com/ericmeyer/dotpretty
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ericmeyer/dotpretty
- Owner: ericmeyer
- Created: 2019-05-02T11:55:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T15:02:33.000Z (almost 2 years ago)
- Last Synced: 2024-04-25T00:02:32.860Z (7 months ago)
- Language: Ruby
- Size: 110 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/ericmeyer/dotpretty.svg?branch=master)](https://travis-ci.org/ericmeyer/dotpretty)
[![Gem Version](https://badge.fury.io/rb/dotpretty.svg)](https://badge.fury.io/rb/dotpretty)# Dotpretty
Dotpretty is a gem designed to clean up the output of `dotnet`. It works by piping the output of `dotnet` into `dotpretty`.
## Installation
`gem install dotpretty`
## Usage
### Example Usages
Here is an example of the basic usage for `dotpretty`.
`dotnet test -v=normal Test.Project/ | dotpretty`
Ordinarily, you will probably want to suppress stderr output.
`dotnet test -v=normal Test.Project/ 2>&1 | dotpretty`
### Command Options
| Flag | Use | Default | Values |
|------|-----|---------|--------|
|`-c`, `--color`| Enables color output | false | |
|`-h`, `--help`| Display this help | | |
|`-r`, `--reporter`| Reporter to use to format output | basic | basic, json, progress |## Development
### System Requirements
* Ruby
* See `.ruby-version` file for specific version### Setup
1. Fork repository (if needed)
2. Clone repository
3. `bundle install`### Tests
* `rake spec` runs unit tests followed by acceptance tests
* `bundle exec guard` starts a watcher to re-run tests