Bootstrap 3 – Tips and Tricks You Might Not Know – A collection of stuff to help you use Bootstrap better.
Quill – Extensible javascript rich text editor.
CodeReview – iPad application to help review GitHub pull requests.
Category Archives: edge rails
Asset Pipeline has been extracted as sprockets-rails
The asset pipeline which was introduced in Rails 3.1, has been extracted to a separate gem called sprockets-rails. Performance for assets compiling has been improved. There is a open pull request to merge turbo-sprockets-rails3 to sprockets-rails, whic…
Read more at the sourceAction and Page caching has been extracted as gem
With the commit c82cf81f00f
Action and Page caching has been extracted from Action Dispatch as `actionpack-action_caching` and `actionpack-page_caching` gems
EdgeRails: ActiveRecord::SessionStore is extracted out of Rails into a gem
With the commit 3324e28804 ActiveRecord::SessionStore is extracted out of Rails into a gem ‘activerecord-session_store’. Setting config.session_store to :active_record_store will no longer work and will break if the activerecord-session_store gem isn’t available.
Read more at the sourceEdge rails: Now create HABTM join tables easily using migration helper
Earlier whenever we wanted to create a HABTM join table, we do this like: Now, in edge rails after this commit we can use a migration helper for the same:
Read more at the source