cirandas.net

ref: master

plugins/evaluation/lib/evaluation_plugin.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
class EvaluationPlugin < Noosfero::Plugin

  def self.plugin_name
    "Evaluation"
  end

  def self.plugin_description
    _("User evaluation of network entities - profiles, articles, products, exchanges and others")
  end

  def stylesheet?
    true
  end

  def js_files
    ['evaluation.js'].map{ |j| "javascripts/#{j}" }
  end

end