Sha256: 16c5d92fee0da4a55c11928b4d85824d232decb6a16ad017e51f300d17c5f925

Contents?: true

Size: 928 Bytes

Versions: 2

Compression:

Stored size: 928 Bytes

Contents

# enconding: utf-8
module Mutx
  module Support
    class Documentation

      @@main_folder = File.expand_path("../../../../", __FILE__) + "/"
      @@docs_folder = @@main_folder + "documentation/"

      @@folders_to_search = [@@main_folder, @@docs_folder]


      def self.load_documentation
        print "\nLoading documentation..."
        Mutx::Database::MongoConnector.clean_documentation
        @@folders_to_search.each { |folder| self.open_files folder }
        print "OK"
      end

      def self.open_files folder
        Dir.glob(folder + "*.md") do |md_file|
          name = md_file.split("/").last.gsub('.md','')
          text = File.read(md_file)
          Mutx::Database::MongoConnector.insert_documentation self.generate_entry(name,text)
        end
      end

      def self.generate_entry name, text
        {
            "title" => name,
            "body" => text
        }
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mutx-0.1.4 lib/mutx/support/documentation.rb
mutx-0.1.3 lib/mutx/support/documentation.rb