1
2
3
4
5
6
7
8
9
10
11
12
13
|
class VariablesPlugin < Noosfero::Plugin
def self.plugin_name
"Variables Plugin"
end
def self.plugin_description
_("A set of simple variables to be used in a macro context")
end
end
require_dependency 'variables_plugin/macros/profile'
|