* camelcase * camelize * classify * constantize * dasherize * demodulize * foreign_key * humanize * parameterize * pluralize * singularize * tableize * titlecase * titleize * underscorecamelcase(first_letter = :upper)Alias for camelizecamelize(first_letter = :upper)By default, camelize converts strings to UpperCamelCase. If the argument to camelize is set to :lower then camelize produces lowerCamelCase.camelize … Continue reading Intresting String inflections in rails
Category: Ruby
Working with multiple ruby versions on same server
click for original postNice post by Michael GreenlyI recently changed how I'm handling multiple simultaneous Ruby installations and I'd like to share.What I needed was to make it convenient to switch between the system provided packages and specific, from source, installations. After some experiments I decided to use 'update-alternatives' to do it.Here's a quick walk … Continue reading Working with multiple ruby versions on same server
Fix for ruby 1.8.7 incompatibity
Last week i moved from ruby version 1.8.6 to 1.8.7.then over a week i found that my 1.2.3 and applications developed in ruby 1.8.6 are not working in ruby 1.8.7.From lot of search on google, i found that its issue with ruby 1.8.7.Then, i started searching fix / solution for this incompatibity.And, Finally i got … Continue reading Fix for ruby 1.8.7 incompatibity
