Sha256: 4c292e58001569fd512fc18d8f1bb432c2bc100c03f037e24ecb31f009600c48
Contents?: true
Size: 828 Bytes
Versions: 1
Compression:
Stored size: 828 Bytes
Contents
Installation ------------ Install the gem: ``` gem install rainforest ``` Import the Rainforest client in your application: ``` require 'rainforest' ``` Requirements ------------ * Ruby 1.8.7 or above. (Ruby 1.8.6 may work if you load ActiveSupport.) * rest-client, multi_json Development ----------- Test cases can be run with: `bundle exec rake test` Docs ---- You can find the Rainforest docs here: https://app.rainforestqa.com/docs Examples -------- ```ruby require 'rainforest' Rainforest.api_key = "985de0ba7d0820912a33aa696a77319d" # Get all of your tests tests = Rainforest::Test.all # 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(test: ["all"]) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rainforest-1.0.3 | README.md |