Skip to content

Anyone that has had to use Rally knows that the site is far to cumbersome to be useful day to day. These are a set of command line scripts that make dealing with Rally much easier.

Notifications You must be signed in to change notification settings

jkamenik/Rally-CLI

Repository files navigation

Purpose

The Rally UI sucks and anyone that has been subjected to it will either agree with me, or they are paid by Rally. It may be fine for high level requirements, but for day to day working it is bloated and useless.

This is my attempt to make rally useable. It uses the RESTful interface.

Installation

sudo gem install rally_rest_api
git clone git@github.com:jkamenik/Rally-CLI.git

Usage

Config file

Each script will eval ~/.conf.rb.

{
  username: 'your user name',
  password: 'your password',
  my_team: ['your login id']
}

Additionally you can add any number of “_team” arrays. Each of these arrays represents a group of users on a team.

Example

Assume you have the following .conf.rb file

{
  username: 'me',
  password: 'secret',
  my_team: ['me'],
  our_team: ['you','me']
}

ruby list_tasks.rb
  Lists all US/DE/TAs owned by the my_team group, which is the user "me"
ruby list_tasks.rb our
  Lists all US/DE/TAs owned by the our_team group, which is "you" and "me"

Resources

About

Anyone that has had to use Rally knows that the site is far to cumbersome to be useful day to day. These are a set of command line scripts that make dealing with Rally much easier.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages