Skip to content

Instantly share code, notes, and snippets.

View mpeteuil's full-sized avatar
🧪
Mix, mix, swirl, mix

Michael Peteuil mpeteuil

🧪
Mix, mix, swirl, mix
View GitHub Profile
@turadg
turadg / application.rb
Last active August 1, 2024 08:35
Handle only 404s dynamically. It uses a normal controller and route for 404s, letting everything else go to the Rails default /public error pages. In my case it was to use the subdomain logic in my ApplicationController.
module MyApp
class Application < Rails::Application
require Rails.root + 'lib/custom_public_exceptions'
config.exceptions_app = CustomPublicExceptions.new Rails.public_path
end
end

A future version of Ember will come with a new templating engine known as HTMLBars.

The original motivation for HTMLBars was to allow helpers and properties to have better contextual information about what they were bound to.

So for example, consider a template like this:

<a href="{{url}}">{{link}}</a>