>rails has built in number_to_currency helper which takes options like unit, delimeter, seperator which displays foreign currency correctly but somehow it is not best suited for indian currency.Below is how we managed 2 years ago to display indian currency formatted properly with comma as seperator. personally i think it could be more better than what … Continue reading number to indian currency helper for rails with WebRupee
Category: Ruby on Rails
Accessing View Helpers & Routes in Rails Console, Rake Tasks and Mailers
>While looking for accessing rails template tags to be accessed on rails console in order to examine whatever written needs to be correct, found that - rails template tags can be tested on rails console using helper objectmodule ApplicationHelper def display_amount(amount) number_to_currency amount, :precision => 0 end endHelpers on rails consolerails c>> helper.text_field_tag :name, 'sandip'=> … Continue reading Accessing View Helpers & Routes in Rails Console, Rake Tasks and Mailers
Monitor Delayed Job in rails
>Delayed Job & Monit configuration We were struggling through how to monit delayed_job from past few months because monit doesn't work seamlessly with delayed_job start/stop commands and finally we got able to monit delayed_job. Here is our old configuration that wasn't working anyhow- After doing google & looking at stackoverflow, we found different solutions to … Continue reading Monitor Delayed Job in rails
