The generated plugin should also freeze strings

This commit is contained in:
Robin Ward 2019-10-03 11:43:36 -04:00
parent 32a11a93ac
commit a404cab509
1 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
# frozen_string_literal: true
# name: <%= name %>
# about: <%= @about %>
# version: 0.1
@ -10,7 +12,7 @@ register_asset 'stylesheets/mobile/<%= dasherized_name %>.scss'
enabled_site_setting :<%= underscored_name %>_enabled
PLUGIN_NAME ||= '<%= classified_name %>'.freeze
PLUGIN_NAME ||= '<%= classified_name %>'
load File.expand_path('lib/<%= dasherized_name %>/engine.rb', __dir__)