Project

hellgrid

0.0
Low commit activity in last 3 years
There's a lot of open issues
No release in over a year
Display gem versions used across your projects in a table
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 3.13

Runtime

>= 1.11.0, < 3
 Project Readme

Hellgrid

Utility which will output a table containing gem versions used across your projects.

Build & Test Gem Version

Install

gem install hellgrid

Usage

Let say that you have a directory /path/to/root/dir somewhere in which the Ruby projects foo and bar could be found.

Executing:

hellgrid /path/to/root/dir

To search recursively (should you have nested projects), use the -r flag:

hellgrid -r /path/to/root/dir

Should result in:

             x             |  bar   |  foo
---------------------------+--------+--------
         diff-lcs          | 1.2.5  | 1.2.5
           rspec           | 2.0.0  | 3.0.0
        rspec-core         | 2.0.0  | 3.0.4
    rspec-expectations     | 2.0.0  | 3.0.4
        rspec-mocks        | 2.0.0  | 3.0.4
           rake            | 10.0.0 | 11.1.0
       rspec-support       |   x    | 3.0.4

To have the gems as columns, use the -t flag:

hellgrid -t /path/to/root/dir

Should result in:

   x    | diff-lcs |  rake  | rspec | rspec-core | rspec-expectations | rspec-mocks | rspec-support
--------+----------+--------+-------+------------+--------------------+-------------+---------------
  bar   |  1.2.5   | 10.0.0 | 2.0.0 |   2.0.0    |       2.0.0        |    2.0.0    |       x
  foo   |  1.2.5   | 11.1.0 | 3.0.0 |   3.0.4    |       3.0.4        |    3.0.4    |     3.0.4

License

Copyright © 2016 Funding Circle.

Distributed under the BSD 3-Clause License.