Sha256: c299738286be45773d897ecc8f104ecfbd4fc86f9770194e16e31ff78093c660
Contents?: true
Size: 1.38 KB
Versions: 5
Compression:
Stored size: 1.38 KB
Contents
require 'faml' require 'thor' module Faml class CLI < Thor package_name 'faml' desc 'render FILE', 'Render haml template' option :format, type: :string, default: :html, desc: 'HTML format' def render(file) code = compile_file(file, format: options[:format].to_sym) puts instance_eval(code, file) end desc 'compile FILE', 'Compile haml template' option :format, type: :string, default: :html, desc: 'HTML format' def compile(file) puts compile_file(file, format: options[:format].to_sym) end desc 'parse FILE', 'Render faml AST' def parse(file) require 'pp' pp parse_file(file) end desc 'temple FILE', 'Render temple AST' option :format, type: :string, default: :html, desc: 'HTML format' def temple(file) require 'pp' pp Faml::Compiler.new(filename: file, format: options[:format].to_sym).call(parse_file(file)) end desc 'version', 'Print version' option :numeric, type: :boolean, default: false, desc: 'Print version number only' def version if options[:numeric] puts VERSION else puts "faml #{VERSION}" end end private def compile_file(file, opts) Faml::Engine.new(opts.merge(filename: file)).call(File.read(file)) end def parse_file(file) Faml::Parser.new(filename: file).call(File.read(file)) end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
faml-0.2.16 | lib/faml/cli.rb |
faml-0.2.15 | lib/faml/cli.rb |
faml-0.2.14 | lib/faml/cli.rb |
faml-0.2.13 | lib/faml/cli.rb |
faml-0.2.12 | lib/faml/cli.rb |