Sha256: 2bd41be17d0822edced72e6c4f36cc6929cbfc1b9ba8c11538fac6b0eeed23c1
Contents?: true
Size: 564 Bytes
Versions: 1
Compression:
Stored size: 564 Bytes
Contents
require 'io/console' require 'smart_colored/extend' require 'coderay' require 'yaml' require_relative 'termnote/version' require_relative 'termnote/pane' require_relative 'termnote/show' require_relative 'termnote/pane' module TermNote def show @show ||= Show.new end def chapter(options) Pane::Chapter.new options end def text(options) Pane::Text.new options end def code(options) Pane::Code.new options end def list(options) Pane::List.new options end def console(options) Pane::Console.new options end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
termnote-1.5.1 | lib/termnote.rb |