Sha256: 081fbe9392e6d1d90b41ddefc9cc40a2b5a2fc88fa9e80fe77cb7f46c6ac2e27
Contents?: true
Size: 1.16 KB
Versions: 24
Compression:
Stored size: 1.16 KB
Contents
# Copyright (C) 2012 Kouhei Sutou <kou@cozmixng.org> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. module Rabbit module SourceGenerator class << self def find(markup_language) case markup_language when :rd RD.new when :hiki Hiki.new when :markdown Markdown.new else nil end end end end end require "rabbit/source-generator/rd" require "rabbit/source-generator/hiki" require "rabbit/source-generator/markdown"
Version data entries
24 entries across 24 versions & 1 rubygems