1
2
3
4
5
6
7
8
9
10
|
require_dependency 'community'
require_dependency "#{File.dirname __FILE__}/profile"
class Community
metadata_spec namespace: :og, tags: {
type: proc{ |c, plugin| plugin.context.params[:og_type] || MetadataPlugin.og_types[:community] || :community },
}
end
|