The signable client provides a simple Ruby interface to the Signable API.
Add this line to your application's Gemfile:
gem 'signable'
And then execute:
$ bundle
Or install it yourself as:
$ gem install signable
Signable.configure do |config|
config.base_url = ENV.fetch('SIGNABLE_BASE_URL')
config.api_key = ENV.fetch('SIGNABLE_API_KEY')
end
Signable::Template.find 'fingerprint'
Signable::Document.new(template_fingerprint: fingerprint, title: title)
A document may also contain merge_fields (see signable documentation)
Signable::Party.new(id: id, name: 'name', email: 'email')
Party id can be retrieved from the template
envelope = Signable::Envelope.new title: 'title', redirect_url: 'https://www.autoenrolment.co.uk'
envelope.documents = documents
envelope.parties = parties
envelope.save
- Fork it ( http://github.com//signable/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request