0.0
No commit activity in last 3 years
No release in over 3 years
A conversion of the python version to ruby from http://code.google.com/p/google-diff-match-patch/ and added tests.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme
== diff_from_delta

diff_from_delta converts delta strings produced by diff-match-patch ( http://code.google.com/p/google-diff-match-patch/ ) back to an array of diffs.

Usage:

To get the compiled string..

DiffFromDelta::compile_diff_from_delta(original_text, delta_string)

For the actual diff array..

DiffFromDelta::diff_from_delta(original_text, delta_string)