sudo apt-get install libmysqlclient15-devwget http://sphinxsearch.com/downloads/sphinx-0.9.8-rc2.tar.gztar xvf sphinx-0.9.8-rc2.tar.gz && rm sphinx-0.9.8-rc2.tar.gzcd sphinx-0.9.8-rc2./configuremakesudo make install
Author: sandipransing
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
Render partial or view from another controller
To render view from another controller# In rail 2.3render "controller/action"# In rails 2.2 or belowrender :template => 'controller/action'To render partial from another controller's views folderrender :partial => "controller/partial"Cheers !Sandip
