Sha256: 6643f54a367d50378d7361e1ec84405262c81c8ba2503fae409b22b9012df847
Contents?: true
Size: 1.22 KB
Versions: 4
Compression:
Stored size: 1.22 KB
Contents
require 'erb' module Mastalk # Extension DSL for adding new # mastalk snippets. # # Add new snippets in the form: # # start_tag, end_tag, new_line_ending # # <p>replacement html <%= body %></p> module Extensions SNIPPETS_FOLDER = File.join(File.dirname(__FILE__), 'snippets') @@extensions = [] def extension(start, stop = nil, &block) re_start = Regexp.escape(start) re_stop = Regexp.escape(stop || start) regex = Regexp.new("#{re_start}(.*?)(#{re_stop}+)", Regexp::MULTILINE) @@extensions << [regex, block] end def extensions return @@extensions unless @@extensions.empty? Dir.foreach(SNIPPETS_FOLDER) do |file| next if file == '.' || file == '..' content = File.read(File.join(SNIPPETS_FOLDER, file)) start, stop = args(content) extension(start, stop) do |body| body_lines = body.strip.gsub(/(\n|\r)+/, "\n").split(/\n/) ERB.new(remove_syntax_from(content)).result(binding) end end @@extensions end def args(content) content.match(/#(.*)\n\n/m).captures.first.split(',').map(&:strip) end def remove_syntax_from(content) content.split(/#(.*)\n\n/).last end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
mastalk-0.8.1 | lib/mastalk/extensions.rb |
mastalk-0.8.0 | lib/mastalk/extensions.rb |
mastalk-0.7.0 | lib/mastalk/extensions.rb |
mastalk-0.6.0 | lib/mastalk/extensions.rb |