Project

engage

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Engage is a CLI for rapid bootstrap for your ruby apps using Git, RVM and Bundler.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
>= 0
~> 2.3

Runtime

~> 0.14
 Project Readme

engage

engage is a tiny gem to setup an already existent ruby(or rails) app on your current environment. It expects that you use rvm and git - bundler is supported but not required.

What?

Some common steps to start working on a project (in your company or a open source one) is:

  • Clone it's git repository;
  • Create a new gemset to isolate the project dependencies;
  • Let bundler install all the needed gems.

Engage aims to provide a single command to run all those tasks. All you need to do is provide the project's name and it's git server.

Usage

First, you can set your common git servers - the default list include only git@github.com.

engage add git@git.acme.com

After that you can start a project by just running:

engage init some_project

Behind the curtains, engage will:

  • Prompt the git server to use - either "github.com" or "acme.com";
  • Clone the some_project repository form the selected server - git@git.acme.com/some_project.git;
  • Create a gemset name some_project and a .rvmrc file;
  • Run bundler to install all the dependencies.

Available Commands

engage init [PROJECT] [DIRECTORY]  # init a new project from one of the registered sources
engage add [SOURCE]                # register the given source to `~/.engage.sources`
engage list                        # list all the registered sources