This gem is a wrapper for Carve.io's API.
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.
$ 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.
$ Carve::Document.retrieve("id_of_document")
$ Carve::Document.pages("id_of_document")
$ Carve::Event.all
$ Carve::Event.all(:type => "document.done", :count => 100)
- Add your application configuration to your .env file in the root of this project
$ echo "CARVE_SECRET_API_KEY=yourkey" > .env
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - export CARVE_SECRET_API_KEY="your_test_secret_api_key"
- Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request