Project

nouvola

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby client for Nouvola, https://www.nouvola.com, to use with your ruby code
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

Gem Version

Nouvola Gem

This gem is a client wrapper for Nouvala's API.

USAGE

Require the gem:

require 'nouvola'

Bundler:

gem 'nouvola', '1.0.0'

Examples

To start a test:

`
key = '3x5mpl3str1ng'
plan_id = 4101
test = Nouvola::Divecloud.new(key)
response = test.run(plan_id)
`

To Get Test Results

`
key = '3x5mpl3str1ng'
test_id = 5209
test = Nouvola::Divecloud.new(key)
results = test.results(test_id)
`

To Set Callback

`
key = '3x5mpl3str1ng'
plan_id = 4429
url = "http://requestb.in/pj748cpj"
test = Nouvola::Divecloud.new(key)
results = test.hook(plan_id, url)
`