Thursday, October 24, 2013

Removing Turbolinks from your Ruby on Rails project

I was having major issues implementing a login in Ruby on Rails.  I ended up removing Turbolinks from my project:

In the Gemfile:

# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'

I then went into app/assets/javascripts/application.js and removed it there.

Apparently Turbolinks uses caching to speed up loading up webpages.

No comments:

Post a Comment