WebMerge Ruby
Manage and merge Documents using the WebMerge.me REST API
Installation
Add this line to your application's Gemfile:
gem 'web_merge'
And then execute:
$ bundle
Or install it yourself as:
$ gem install web_merge
Usage
config = {
key: "N64EFIM0000000000000",
secret: "ABCDEFGH"
}
api = WebMerge::API.new(config)
api.get_documents
api.get_document(30036)
fields = {
first_name: "John",
last_name: "Doe",
}
api.merge_document(doc_id=10000, key="4y7e1h", fields, {test: 1})
Contributing
- Fork it ( https://github.com/[my-github-username]/web_merge/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 a new Pull Request