Rails Benchmark in Ruby code using bm and bmbm with examples In Ruby, you have to perform benchmarking to measure performance of your code. Ruby allows you to do Benchmarking using library called ‘benchmark’
Rails strftime – Format Date Time in Ruby In Ruby, you have to format or convert time from one format to other many a times. You can use library method strftime available to perform formatting operations.
Rails Speed up rails development environment mode While Running Ruby on Rails projects in development mode, many of you might have came across slow development process. Now, there is one easy way to speed up Rails Development Environment mode.
How-to How to Check if value is included in between the range? There are many ways of doing the same thing in Ruby. How to check if a number is between the two values?
Rails Ruby – Difference between Require and Include While coding with Ruby or Ruby on Rails, you might have came across Require and Include. There are quite a few differences between Require and Include.
Rails Ruby – Difference between Symbols and Strings Ruby has Symbols as well as Strings. Their are differences between the two that should be known for proper use in your Application while coding.