Sha256: 9748cd25a5da386f86e5f00b1735d59cc8c7962f2804e7c33c5c899c2c3e925f
Contents?: true
Size: 824 Bytes
Versions: 1
Compression:
Stored size: 824 Bytes
Contents
[![Build Status](https://travis-ci.org/rainforestapp/rainforest-ruby.png?branch=master)](https://travis-ci.org/rainforestapp/rainforest-ruby) # Installation Install the gem: ``` gem install rainforest ``` Import the Rainforest client in your application: ```ruby require 'rainforest' ``` # Requirements * Ruby 1.9.3 or above. * rest-client, multi_json # Examples ```ruby require 'rainforest' Rainforest.api_key = "985de0ba7d0820912a33aa696a77319d" # Get all of your runs runs = Rainforest::Run.all run = Rainforest::Run.retrieve(2181) # retrieve a run run.delete # abort a run # Kick off a run with all tests new_run = Rainforest::Run.create(tests: ["all"]) ``` # Docs You can find the Rainforest docs here: https://docs.rainforestqa.com/ # Development Test cases can be run with: `bundle exec rake test`
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rainforest-1.0.7 | README.md |