Project

erebus

0.0
No commit activity in last 3 years
No release in over 3 years
C++ Project and File generators
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

~> 3.2.11
~> 0.6.1
~> 1.5.0
~> 0.9.9
~> 0.17.0
 Project Readme

Erebus

C++ Development can be a pain. Project setup is dependent on the tools used in the project and the developer. This tool is a command line tool for generating project and files independent of any ide or editor.

Installation

Install it yourself as:

$ gem install erebus

Usage

To see a list of tasks erebus can do:

erebus

To create a new C++ project:

erebus project NAME

To create a new C++ project without Tests:

erebus project NAME --no-testing

To add Igloo Testing to an existing project:

erebus setup_test .

To create a header file:

erebus header NAME

To create a C++ source file:

erebus source NAME

To create a Igloo Test Spec:

erebus spec <Name of the class to test>

To create a C source file:

erebus source NAME --ext c

To generate a C++ class:

erebus cpp_class NAME

To generate a C++ class without Tests:

erebus cpp_class NAME --no-testing

Contributing

Project tracking is on a Pivotal Tracker Project https://www.pivotaltracker.com/projects/751383

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request