Project

enrycher

0.0
No commit activity in last 3 years
No release in over 3 years
A Ruby interface to Enrycher text-processing API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.9

Runtime

~> 1.5
~> 0.3.3
 Project Readme

Enrycher

This is a stupidly simple 5 minute gem I wrote to play with the Enrycher text-processing API.

Install

gem install enrycher or add gem 'enrycher' to your Gemfile.

Usage

require 'enrycher'

text = <<TEXT
Confluence combines powerful online authoring capabilities, deep Office integration and an extensive plugin catalogue to help people work better together and share information effortlessly.
TEXT

Enrycher.process(text)
Enrycher.print 
  #=> prints the unaltered XML response from the server. Why did I use Nokogiri? Good question.