Sha256: d9e3552634dd70a1cb91b47615bec739f7a496b982206fc1554dc60cfa7dad45
Contents?: true
Size: 761 Bytes
Versions: 2
Compression:
Stored size: 761 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true # encoding=utf-8 class ExecutionStreams StdErr = :stderr StdIn = :stdin StdOut = :stdout end class LoadFile Load = true Reuse = false end LoadFileLinkState = Struct.new(:load_file, :link_state) class MenuControl Fresh = false Repeat = true end class MenuOptions YES = 1 NO = 2 SCRIPT_TO_CLIPBOARD = 3 SAVE_SCRIPT = 4 end class MenuState BACK = :back CONTINUE = :continue EXIT = :exit end # selected block and subsequent menu state # SelectedBlockMenuState = Struct.new(:block, :state) SHELL_COLOR_OPTIONS = { BlockType::BASH => :menu_bash_color, BlockType::LINK => :menu_link_color, BlockType::OPTS => :menu_opts_color, BlockType::VARS => :menu_vars_color }.freeze
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
markdown_exec-1.8.5 | lib/constants.rb |
markdown_exec-1.8.4 | lib/constants.rb |