19 lines
645 B
Ruby
19 lines
645 B
Ruby
|
module PersonalPatent
|
||
|
class Engine < ::Rails::Engine
|
||
|
initializer "personal_patent" do
|
||
|
OrbitApp.registration "PersonalPatent",:type=> 'ModuleApp' do
|
||
|
module_label 'module_name.personal_patent'
|
||
|
base_url File.expand_path File.dirname(__FILE__)
|
||
|
personal_plugin :enable => true, :sort_number => '35', :app_name=>"WritingPatent", :intro_app_name=>"PersonalPatentIntro",:path=>"/plugin/profile",:front_path=>"/profile",:admin_path=>"/admin/writing_patents",:i18n=>'module_name.personal_patent'
|
||
|
|
||
|
version "0.1"
|
||
|
organization "Rulingcom"
|
||
|
author "RD dep"
|
||
|
intro "I am intro"
|
||
|
update_info 'some update_info'
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|