Project

carve

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby bindings for the Carve.io API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0
>= 0

Runtime

 Project Readme

Carve.io Ruby Bindings

This gem is a wrapper for Carve.io's API.

Installation

Add this line to your application's Gemfile:

gem 'carve'

And then execute:

$ bundle

Or install it yourself as:

$ gem install carve

Then in your application initialize the gem:

$ Carve.secret_api_key = "your_secret_api_key"

Alternatively, you can simply set the environment variables CARVE_SECRET_API_KEY on your machine. The rubygem will read it automatically so that you can skip the initialization.

Usage

Create Document

$ Carve::Document.create(:url => "https://www.signature.io/pdfs/sign-below.pdf")

Replace the url with a url of the PDF or Microsoft Word file you choose.

Retrieve Document

$ Carve::Document.retrieve("id_of_document")

Retrieve Document Pages

$ Carve::Document.pages("id_of_document")

List Events

$ Carve::Event.all
$ Carve::Event.all(:type => "document.done", :count => 100)

Contributing

  1. Add your application configuration to your .env file in the root of this project
$ echo "CARVE_SECRET_API_KEY=yourkey" > .env
  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. export CARVE_SECRET_API_KEY="your_test_secret_api_key"
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request