Sha256: cbb51090e46003ad52d2a9c9858112a86226905c851fd002c04102ff5da856d4

Contents?: true

Size: 526 Bytes

Versions: 4

Compression:

Stored size: 526 Bytes

Contents

# ~*~ encoding: utf-8 ~*~
require 'tmpdir'

module Spirit

  # Path to templates
  VIEWS = File.join File.dirname(__FILE__), *%w(.. .. views)

  # Markdown extensions for Redcarpet
  MARKDOWN_EXTENSIONS = {
    no_intra_emphasis:  true,
    tables:             true,
    fenced_code_blocks: true,
    autolink:           true,
    strikethrough:      true,
  }

  SOLUTION_DIR = Dir.tmpdir
  SOLUTION_EXT = '.sol'

  # Name of index page.
  INDEX     = 'index.md'

  # Name of manifest file.
  MANIFEST  = 'manifest.yml'

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spirit-0.2 lib/spirit/constants.rb
spirit-0.1.0.pre.2 lib/spirit/constants.rb
spirit-0.1.0.pre.1 lib/spirit/constants.rb
spirit-0.1.0.pre lib/spirit/constants.rb