Sha256: 7abba2dc586a2c3df3d0133644b320eed7e5bf76c88768de8e3574370a06d279

Contents?: true

Size: 474 Bytes

Versions: 4

Compression:

Stored size: 474 Bytes

Contents

# frozen_string_literal: true

class BlockType
  ALL = [
    CHROME = 'chrome',
    DIVIDER = 'divider',
    EDIT = 'edit',
    HEADING = 'heading',
    HISTORY = 'history',
    LINK = 'link',
    LOAD = 'load',
    OPTS = 'opts',
    PORT = 'port',
    SAVE = 'save',
    SHELL = 'shell',
    TEXT = 'text',
    VARS = 'vars',
    VIEW = 'view',
    YAML = 'yaml'
  ].freeze
end

class ShellType
  ALL = [
    BASH = 'bash',
    FISH = 'fish',
    SH = 'sh'
  ].freeze
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
markdown_exec-2.7.2 lib/block_types.rb
markdown_exec-2.7.1 lib/block_types.rb
markdown_exec-2.7.0 lib/block_types.rb
markdown_exec-2.6.0 lib/block_types.rb