Research debugging

3 ways to inspect to contents of variables: debug, to_yaml, inspect (YAML) display content as a hash( pair of key:value) [Read More]

Research caching with rails

* Caching means to store content generated during the request-response cycle and to reuse it when responding to similar requests - Caching is often the most effective way to boost an application's performance. [Read More]

Research assets-pipeline

1. What is assets-pipeline it provides the framework to concatenate and minify or compress JS, CSS assets it can also write these assets in other languages and pre-processors such as CoffeeScript, Sass and ERB it is implemented by gem sprockets-rails gem, and is enabled by defaut. [Read More]