vuzit / vuzitruby

Ruby library for the Vuzit AJAX document viewer web services API

Home | Edit | New

Home

VuzitRuby – Vuzit Web Services library for Ruby

INTRODUCTION

This is a library that allows developers to directly access the Vuzit Document Viewer Web Service API through a simple Ruby script.

Below is a basic upload example:


require "vuzitruby"  

Vuzit::Service.public_key = 'YOUR_PUBLIC_API_KEY'
Vuzit::Service.private_key = 'YOUR_PRIVATE_API_KEY'

doc = Vuzit::Document.upload("c:/path/to/document.pdf")

puts "Document id: " + doc.id  

To get started all you need to do is download the code, sign up for a free account and replace the public and private keys with the keys from your account.

SETUP

The client library is a RubyGem called vuzitruby. To install, run the following command:


gem install vuzitruby

You can also download the gem as a zip or Ruby gem.

GETTING STARTED

LICENSE

Released under the open source MIT license which allows you to use it in any proprietary product.

MORE INFORMATION

For more information visit the Vuzit.com developer center

FEATURE REQUESTS AND BUG REPORTS

Email to support@vuzit.com or visit Vuzit Support

Last edited by bmatzelle, Wed Nov 04 06:34:40 -0800 2009
Home | Edit | New
Versions: