0.0
No commit activity in last 3 years
No release in over 3 years
Get educated guesses about proper capitalization of words and phrases
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 1.5.3
 Project Readme

ProperCaser

ProperCaser is a gem to help you clean up poorly capitalized data by leveraging google web search. Here's a quick example:

> ProperCaser.best_guess('john mccain')
=> "John McCain"

ProperCaser does not work with versions of ruby < 1.9 and neither should you.

Installation

Add this line to your application's Gemfile:

gem 'proper_caser'

And then execute:

$ bundle

Or install it yourself as:

$ gem install proper_caser

Usage

ProperCaser currently only exposes two methods:

best_guess will return a single string that is the most commonly matched result from the search.

> ProperCaser.best_guess('IOS')
=> "iOS"

match_counts will return a hash (ordered by descending number of matches in ruby 1.9) with the match and the number of results.

> ProperCaser.match_counts('IOS')
=> {"iOS"=>53, "Ios"=>18, "IOS"=>15, "ios"=>7}

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