Project

checkit

0.0
No commit activity in last 3 years
No release in over 3 years
A little tool to check the your ruby project dependencies
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0
 Project Readme

Checkit

This gem provides a small executable which can be run from every ruby project in order to help new developers to check if they are ready to run the project. It checks for various dependencies:

  • Bundled gems
  • Config files
  • Servers installed and running

Installation

Add this line to your application's Gemfile:

gem 'checkit'

And then execute:

$ bundle

Or install it yourself as:

$ gem install checkit

Usage

Change to your project directory and run checkit, read the data and if something red is printed get some help ;)

ToDo

  • Check if foreman is installed and tell user to use it for running dependencies
  • Check if a test suite is present and can be run
  • Cleanup the existing code
  • Create a central service repository whcih resolves all dependencies
  • Check environments

Contributing

  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