This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
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
- Download
- Sign up for a free Vuzit account
- Code Examples
- Vuzit API Reference
- VuzitCL – Vuzit Command Line application
- Change log
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






