Sha256: 475079a5a69d218c1e852aa4e149701b3e79c5f0ddb1a3a8459c6a198fd821f8
Contents?: true
Size: 792 Bytes
Versions: 15
Compression:
Stored size: 792 Bytes
Contents
module Refinery module Products class Engine < Rails::Engine include Refinery::Engine isolate_namespace Refinery::Products engine_name :refinery_stores initializer "register refinerycms_products plugin" do |app| # Refinery::Plugin.register do |plugin| # plugin.name = "products" # plugin.url = { # :controller => 'refinery/products/admin/products', # :action => 'index' # } # plugin.pathname = root # plugin.activity = { # :class_name => :'refinery/products/product', # :title => 'name' # } # # end end config.after_initialize do Refinery.register_engine(Refinery::Products) end end end end
Version data entries
15 entries across 15 versions & 1 rubygems