Sha256: 2c000f4c2d00e354be4a6864f70dc5efcc36a0f93fe89cb8ded7bee1ccab8858
Contents?: true
Size: 436 Bytes
Versions: 16
Compression:
Stored size: 436 Bytes
Contents
module Noodall module FormBuilder class << self attr_accessor :noreply_address end noreply_address = 'noreply@example.com' class Engine < Rails::Engine initializer "set menu" do |app| Noodall::UI.menu_items['Forms'] = :noodall_admin_forms_path end initializer "static assets" do |app| app.middleware.use ::ActionDispatch::Static, "#{root}/public" end end end end
Version data entries
16 entries across 16 versions & 1 rubygems