GithubHelp home page GithubHelp logo

roundup's Introduction

Roundup

The Roundup project aims to provide an easy to use interface to the Rally REST API via Ruby.

Background

Roundup provides a plugin powered architecture that allows you to interact with the [Rally REST API] using the existing rally_rest_api.

The intention is to provide a simple scriptable interface to the most commonly used features during a sprint.

Usage

Configuration

Roundup uses a standard YAML configuration located at config/rally.yml. See config/rally.example.yml for an example.

There are several ways you can use Roundup. Here are a few examples to get you started.

Shell access

Roundup comes with a script which you can use to directly call any plugin method via the use of command arguments. Currently, the only thing output is a hash representation of the results, which will be handled with output filters in the future.

$ bin/roundup search story signup

Scriptable access

You can require the Roundup library directly, but currently you need to include the plugins you want. I plan on cleaning this up and allowing you to configure which plugins you would like to load, but for now just include the files. See bin/roundup for an example of how to require and setup Roundup.

Plugins

As previously stated, all functionality provided by Roundup is via plugins. Plugins allow access to the workspace, project, and rally object provided by rally_rest_api. Creating your own plugins is very simple, wrapping up rally_rest_api is a bit more work. Currently these requests are unwrapped, but shortly all interactions with rally_rest_api will be encapsulated within Roundup::Resource objects for brevity and ease of use.

class MyPlugin < Roundup::Plugin
  register_command :say_hello, :hello

  def self.hello(args)
    puts "Hello " + args.join(' ')
  end
end

$ bin/roundup say_hello World
# => "Hello World"

Future

The intention is to provide editor plugins (vim, TextMate) to unify rally management within your favorite editor.

roundup's People

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

gregfu

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.