Project

rnvivo

0.0
No release in over 3 years
Low commit activity in last 3 years
A simple Ruby library for the nvivo API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

 Project Readme

Nvivo API digester

A small Ruby class for consuming Nvivo API.

Dependencies

Just run bundle install.

How to use it

Once you have your API Key, just initalize the client and run the methods you want:

nvivo = Rnvivo::Nvivo.new NVIVO_API_KEY
events = nvivo.cityGetEvents('Madrid')

It returns an array of hashes with the name and the nvivo URL of each one:

'events' => {
  'event' => [
    {
      'name' => 'Wadus event',
      'url' => 'http://wadus.com/wadus-event'
    },
    {
      'name' => 'Wadus event 2',
      'url' => 'http://wadus.com/wadus-event-2'
    }
  ]
}

Very simple.

TODO

  • refactor, refactor, refactor

Special thanks

  • Sergio Arbeo @serabe for his PRs

  • Nvivo team. They are really nice!

Copyright (c) 2009 Fernando Blat, released under the MIT license