Project

coder

0.03
No release in over 3 years
Low commit activity in last 3 years
handle encodings, no matter what
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
~> 2.11
 Project Readme

Coder

A Ruby library to deal with encodings, no matter if you're on 1.8 or 1.9, JRuby or Rubinius, if you have a working iconv or not, it chooses the best way for you to handle String encodings.

Usage

At the moment, Coder only cleans strings for you. I plan to add string conversion and encoding detection later.

Cleaning Strings

clean_string = Coder.clean(dirty_string)

You can also specify the encoding:

clean_string = Coder.clean(dirty_string, 'UTF-8')

You can also modify a string in-place:

Coder.clean! some_string

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