Project

dotpretty

0.0
No release in over 3 years
Low commit activity in last 3 years
A gem to parse and improve the output of the dotnet command
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.17
 Project Readme

Build Status Gem Version

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