No commit activity in last 3 years
No release in over 3 years
To create Rails projects with template and integrations
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

> 3.1
~> 0.19
 Project Readme

Codeland::Starter

Gem Version Code Climate Build Status Test Coverage

Create Ruby on Rails projects based on Codeland's template with integrations.

Installation

$ gem install codeland-starter

Usage

Setup

$ codeland-starter install # Will create ~/codeland-starter.yml
$ vi ~/codeland-starter.yml

The integrations section in YAML is an array of the services. Eg:

integrations:
  - heroku
  - another-service

Create projects

$ codeland-starter create ProjectName

What do you (can) get?

Integrations

Heroku

```sh` $ heroku plugins:install git@github.com:heroku/heroku-oauth.git $ heroku authorizations:create -d "some text"

Paste the `Token` in `codeland-starter.yml`

```yaml
heroku:
  oauth_token: PASTE-YOUR-TOKEN-HERE

Collaborators

Has a team? List them as an array in codeland-starter.yml

heroku:
  users:
    - contato@codeland.com.br
    - another@email.com
    - email@example.com

Contributing

  1. Fork it ( https://github.com/codelandev/codeland-starter/fork )
  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 a new Pull Request