Sha256: be97d73d68000e7d8f8dbc68a251aaf10dbc46233794235c4807af079fdbcff5

Contents?: true

Size: 382 Bytes

Versions: 1

Compression:

Stored size: 382 Bytes

Contents

# frozen_string_literal: true

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

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
markdown_exec-2.5.0 lib/block_types.rb