Project

muhimbi

0.0
No commit activity in last 3 years
No release in over 3 years
Muhimbi Ruby Client
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
>= 0
>= 0

Runtime

~> 2.9.0
 Project Readme

Muhimbi

This library implements a client for interact with muhimbi services.

This gem uses savon library to interface services.

Installation

Add this line to your application's Gemfile:

gem 'muhimbi'

And then execute:

$ bundle

Or install it yourself as:

$ gem install muhimbi

Usage

setup

Muhimbi::Config.setup do |config|
  config.wsdl = "http://your_ip/Muhimbi.DocumentConverter.WebService/?wsdl"
  config.timeout = 200 #defaults to 30
end

Client

@file = File.open(some_file)

@client = Muhimbi::Converter.new(file: @file)
@response = @client.convert

Get configuration & options

@client.get_configuration

@client.get_diagnostics(["WordProcessing", "InfoPath"])

TODO

this needs some

  • More Specs
  • ProcessBatch implementation and Specs
  • Watermarking implementation and Specs

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request