Commit 7a6f12123e25113b088b75e0730d0d2199ea6e29

Authored by Macartur Sousa
1 parent f9687c15
Exists in elasticsearch_api

Adding elasticsearch plugin

Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
plugins/elasticsearch/Gemfile 0 → 100644
... ... @@ -0,0 +1,2 @@
  1 +gem 'elasticsearch-model'
  2 +gem 'elasticsearch-rails'
... ...
plugins/elasticsearch/lib/elasticsearch_plugin.rb 0 → 100644
... ... @@ -0,0 +1,13 @@
  1 +class ElasticsearchPlugin < Noosfero::Plugin
  2 +
  3 + def self.plugin_name
  4 + # FIXME
  5 + "ElasticsearchPlugin"
  6 + end
  7 +
  8 + def self.plugin_description
  9 + # FIXME
  10 + _("A plugin that does this and that.")
  11 + end
  12 +
  13 +end
... ...
plugins/elasticsearch/po/elasticsearch.pot 0 → 100644
... ... @@ -0,0 +1,22 @@
  1 +# SOME DESCRIPTIVE TITLE.
  2 +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3 +# This file is distributed under the same license as the PACKAGE package.
  4 +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5 +#
  6 +#, fuzzy
  7 +msgid ""
  8 +msgstr ""
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
  11 +"PO-Revision-Date: 2015-08-06 17:21-0300\n"
  12 +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  13 +"Language-Team: LANGUAGE <LL@li.org>\n"
  14 +"Language: \n"
  15 +"MIME-Version: 1.0\n"
  16 +"Content-Type: text/plain; charset=UTF-8\n"
  17 +"Content-Transfer-Encoding: 8bit\n"
  18 +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  19 +
  20 +#: plugins/template/lib/template_plugin.rb:10
  21 +msgid "A plugin that does this and that."
  22 +msgstr ""
... ...