Hiding Settings Tab in Refinery 2

Quick note of something that took me a while to find: if you install the Refinery Blog engine but don’t need the Settings tab showing in the admin, you can easily hide it by adding config/initializers/refinery/settings.rb with:

Refinery::Settings.configure do |config|
  config.enable_interface = false
end

(This is for refinerycms / refinerycms-blog v2.1.0)