Sha256: 34a267f3702b22d6b5f4df135647ecb9cccaa3dc5e1e9808e0ec730d84b3858e

Contents?: true

Size: 492 Bytes

Versions: 1

Compression:

Stored size: 492 Bytes

Contents

require 'io/console'
require 'colored'
require 'pygments'
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
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
termnote-1.0.0 lib/termnote.rb