ref: dockerize
plugins/financial/lib/financial_plugin.rb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
class FinancialPlugin < Noosfero::Plugin def self.plugin_name _("Financial") end def self.plugin_description _("Organize financial movement in the orders and orders_cycle plugins") end def stylesheet? true end def js_files ['financial'].map{ |j| "javascripts/#{j}" } end end |