blog

Ruby On Rails Search Engine Optimization (SEO)

Search Engines ( like google, yahoo ) mainly uses crawlers for returning results.Crawler is the program which searches world wide web ( www ) and returns ranked pages.Lets see what are the search engine optimization (SEO) techniques we can adopt so that your railswebsite pages will appear in search results.1. Title Of Page2. Meta tags3. … Continue reading Ruby On Rails Search Engine Optimization (SEO)

Intresting String inflections in rails

* 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