brew tc --update-all
This commit is contained in:
parent
e4e88fa026
commit
64c45d4b21
6880
Library/Homebrew/sorbet/rbi/gems/rbs@3.8.1.rbi
generated
6880
Library/Homebrew/sorbet/rbi/gems/rbs@3.8.1.rbi
generated
File diff suppressed because it is too large
Load Diff
170
Library/Homebrew/sorbet/rbi/gems/redcarpet@3.6.0.rbi
generated
170
Library/Homebrew/sorbet/rbi/gems/redcarpet@3.6.0.rbi
generated
@ -1,170 +0,0 @@
|
||||
# typed: true
|
||||
|
||||
# DO NOT EDIT MANUALLY
|
||||
# This is an autogenerated file for types exported from the `redcarpet` gem.
|
||||
# Please instead update this file by running `bin/tapioca gem redcarpet`.
|
||||
|
||||
|
||||
# source://redcarpet//lib/redcarpet/compat.rb#71
|
||||
Markdown = RedcarpetCompat
|
||||
|
||||
# source://redcarpet//lib/redcarpet.rb#4
|
||||
module Redcarpet; end
|
||||
|
||||
# source://redcarpet//lib/redcarpet.rb#7
|
||||
class Redcarpet::Markdown
|
||||
def render(_arg0); end
|
||||
|
||||
# Returns the value of attribute renderer.
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet.rb#8
|
||||
def renderer; end
|
||||
|
||||
class << self
|
||||
def new(*_arg0); end
|
||||
end
|
||||
end
|
||||
|
||||
# source://redcarpet//lib/redcarpet.rb#11
|
||||
module Redcarpet::Render; end
|
||||
|
||||
class Redcarpet::Render::Base
|
||||
def initialize; end
|
||||
end
|
||||
|
||||
class Redcarpet::Render::HTML < ::Redcarpet::Render::Base
|
||||
def initialize(*_arg0); end
|
||||
end
|
||||
|
||||
class Redcarpet::Render::HTML_TOC < ::Redcarpet::Render::Base
|
||||
def initialize(*_arg0); end
|
||||
end
|
||||
|
||||
# A renderer object you can use to deal with users' input. It
|
||||
# enables +escape_html+ and +safe_links_only+ by default.
|
||||
#
|
||||
# The +block_code+ callback is also overriden not to include
|
||||
# the lang's class as the user can basically specify anything
|
||||
# with the vanilla one.
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet.rb#31
|
||||
class Redcarpet::Render::Safe < ::Redcarpet::Render::HTML
|
||||
# @return [Safe] a new instance of Safe
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet.rb#32
|
||||
def initialize(extensions = T.unsafe(nil)); end
|
||||
|
||||
# source://redcarpet//lib/redcarpet.rb#39
|
||||
def block_code(code, lang); end
|
||||
|
||||
private
|
||||
|
||||
# TODO: This is far from ideal to have such method as we
|
||||
# are duplicating existing code from Houdini. This method
|
||||
# should be defined at the C level.
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet.rb#50
|
||||
def html_escape(string); end
|
||||
end
|
||||
|
||||
# HTML + SmartyPants renderer
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet.rb#21
|
||||
class Redcarpet::Render::SmartyHTML < ::Redcarpet::Render::HTML
|
||||
include ::Redcarpet::Render::SmartyPants
|
||||
end
|
||||
|
||||
# SmartyPants Mixin module
|
||||
#
|
||||
# Implements SmartyPants.postprocess, which
|
||||
# performs smartypants replacements on the HTML file,
|
||||
# once it has been fully rendered.
|
||||
#
|
||||
# To add SmartyPants postprocessing to your custom
|
||||
# renderers, just mixin the module `include SmartyPants`
|
||||
#
|
||||
# You can also use this as a standalone SmartyPants
|
||||
# implementation.
|
||||
#
|
||||
# Example:
|
||||
#
|
||||
# # Mixin
|
||||
# class CoolRenderer < HTML
|
||||
# include SmartyPants
|
||||
# # more code here
|
||||
# end
|
||||
#
|
||||
# # Standalone
|
||||
# Redcarpet::Render::SmartyPants.render("you're")
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet.rb#85
|
||||
module Redcarpet::Render::SmartyPants
|
||||
extend ::Redcarpet::Render::SmartyPants
|
||||
|
||||
def postprocess(_arg0); end
|
||||
|
||||
class << self
|
||||
# source://redcarpet//lib/redcarpet.rb#87
|
||||
def render(text); end
|
||||
end
|
||||
end
|
||||
|
||||
# XHTML Renderer
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet.rb#14
|
||||
class Redcarpet::Render::XHTML < ::Redcarpet::Render::HTML
|
||||
# @return [XHTML] a new instance of XHTML
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet.rb#15
|
||||
def initialize(extensions = T.unsafe(nil)); end
|
||||
end
|
||||
|
||||
# source://redcarpet//lib/redcarpet.rb#5
|
||||
Redcarpet::VERSION = T.let(T.unsafe(nil), String)
|
||||
|
||||
# Creates an instance of Redcarpet with the RedCloth API.
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet/compat.rb#2
|
||||
class RedcarpetCompat
|
||||
# @return [RedcarpetCompat] a new instance of RedcarpetCompat
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet/compat.rb#5
|
||||
def initialize(text, *exts); end
|
||||
|
||||
# Returns the value of attribute text.
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet/compat.rb#3
|
||||
def text; end
|
||||
|
||||
# Sets the attribute text
|
||||
#
|
||||
# @param value the value to set the attribute text to.
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet/compat.rb#3
|
||||
def text=(_arg0); end
|
||||
|
||||
# source://redcarpet//lib/redcarpet/compat.rb#12
|
||||
def to_html(*_dummy); end
|
||||
|
||||
private
|
||||
|
||||
# Turns a list of symbols into a hash of <tt>symbol => true</tt>.
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet/compat.rb#66
|
||||
def list_to_truthy_hash(list); end
|
||||
|
||||
# Returns two hashes, the extensions and renderer options
|
||||
# given the extension list
|
||||
#
|
||||
# source://redcarpet//lib/redcarpet/compat.rb#59
|
||||
def parse_extensions_and_renderer_options(exts); end
|
||||
|
||||
# source://redcarpet//lib/redcarpet/compat.rb#47
|
||||
def rename_extensions(exts); end
|
||||
end
|
||||
|
||||
# source://redcarpet//lib/redcarpet/compat.rb#18
|
||||
RedcarpetCompat::EXTENSION_MAP = T.let(T.unsafe(nil), Hash)
|
||||
|
||||
# source://redcarpet//lib/redcarpet/compat.rb#44
|
||||
RedcarpetCompat::RENDERER_OPTIONS = T.let(T.unsafe(nil), Array)
|
||||
251
Library/Homebrew/sorbet/rbi/gems/unicode-emoji@4.0.4.rbi
generated
251
Library/Homebrew/sorbet/rbi/gems/unicode-emoji@4.0.4.rbi
generated
@ -1,251 +0,0 @@
|
||||
# typed: true
|
||||
|
||||
# DO NOT EDIT MANUALLY
|
||||
# This is an autogenerated file for types exported from the `unicode-emoji` gem.
|
||||
# Please instead update this file by running `bin/tapioca gem unicode-emoji`.
|
||||
|
||||
|
||||
# This file was generated by a script, please do not edit it by hand.
|
||||
# See `$ rake generate_constants` and data/generate_constants.rb for more info.
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#3
|
||||
module Unicode; end
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#4
|
||||
module Unicode::Emoji
|
||||
class << self
|
||||
# Returns ordered list of Emoji, categorized in a three-level deep Hash structure
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji.rb#80
|
||||
def list(key = T.unsafe(nil), sub_key = T.unsafe(nil)); end
|
||||
|
||||
# Return Emoji properties of character as an Array or nil
|
||||
# See PROPERTY_NAMES constant for possible properties
|
||||
#
|
||||
# Source: see https://www.unicode.org/Public/16.0.0/ucd/emoji/emoji-data.txt
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji.rb#68
|
||||
def properties(char); end
|
||||
|
||||
private
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji.rb#88
|
||||
def get_codepoint_value(char); end
|
||||
end
|
||||
end
|
||||
|
||||
# Last codepoint of tag-based subdivision flags
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#31
|
||||
Unicode::Emoji::CANCEL_TAG = T.let(T.unsafe(nil), Integer)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#7
|
||||
Unicode::Emoji::CLDR_VERSION = T.let(T.unsafe(nil), String)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#8
|
||||
Unicode::Emoji::DATA_DIRECTORY = T.let(T.unsafe(nil), String)
|
||||
|
||||
# The current list of codepoints with the "Emoji" property
|
||||
# Same characters as \p{Emoji}
|
||||
# (Emoji version of this gem might be more recent than Ruby's Emoji version)
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#8
|
||||
Unicode::Emoji::EMOJI_CHAR = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# The current list of codepoints with the "Emoji_Component" property
|
||||
# Same characters as \p{Emoji Component} or \p{EComp}
|
||||
# (Emoji version of this gem might be more recent than Ruby's Emoji version)
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#21
|
||||
Unicode::Emoji::EMOJI_COMPONENT = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# The list of characters that can be used as base for keycap sequences
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#42
|
||||
Unicode::Emoji::EMOJI_KEYCAPS = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# Combining Enclosing Keycap character
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#37
|
||||
Unicode::Emoji::EMOJI_KEYCAP_SUFFIX = T.let(T.unsafe(nil), Integer)
|
||||
|
||||
# The current list of codepoints with the "Emoji_Modifier" property
|
||||
# Same characters as \p{Emoji Modifier} or \p{EMod}
|
||||
# (Emoji version of this gem might be more recent than Ruby's Emoji version)
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#31
|
||||
Unicode::Emoji::EMOJI_MODIFIERS = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# The current list of codepoints with the "Emoji_Modifier_Base" property
|
||||
# Same characters as \p{Emoji Modifier Base} or \p{EBase}
|
||||
# (Emoji version of this gem might be more recent than Ruby's Emoji version)
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#26
|
||||
Unicode::Emoji::EMOJI_MODIFIER_BASES = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# The current list of codepoints with the "Emoji_Presentation" property
|
||||
# Same characters as \p{Emoji Presentation} or \p{EPres}
|
||||
# (Emoji version of this gem might be more recent than Ruby's Emoji version)
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#13
|
||||
Unicode::Emoji::EMOJI_PRESENTATION = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# First codepoint of tag-based subdivision flags
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#28
|
||||
Unicode::Emoji::EMOJI_TAG_BASE_FLAG = T.let(T.unsafe(nil), Integer)
|
||||
|
||||
# Variation Selector 16 (VS16), enables emoji presentation mode for preceding codepoint
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#22
|
||||
Unicode::Emoji::EMOJI_VARIATION_SELECTOR = T.let(T.unsafe(nil), Integer)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#6
|
||||
Unicode::Emoji::EMOJI_VERSION = T.let(T.unsafe(nil), String)
|
||||
|
||||
# The current list of codepoints with the "Extended_Pictographic" property
|
||||
# Same characters as \p{Extended Pictographic} or \p{ExtPict}
|
||||
# (Emoji version of this gem might be more recent than Ruby's Emoji version)
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#36
|
||||
Unicode::Emoji::EXTENDED_PICTOGRAPHIC = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# The current list of codepoints with the "Extended_Pictographic" property that don't have the "Emoji" property
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#39
|
||||
Unicode::Emoji::EXTENDED_PICTOGRAPHIC_NO_EMOJI = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/index.rb#11
|
||||
Unicode::Emoji::INDEX = T.let(T.unsafe(nil), Hash)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#9
|
||||
Unicode::Emoji::INDEX_FILENAME = T.let(T.unsafe(nil), String)
|
||||
|
||||
# Contains an ordered and group list of all currently recommended Emoji (RGI/FQE)
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/list.rb#6
|
||||
Unicode::Emoji::LIST = T.let(T.unsafe(nil), Hash)
|
||||
|
||||
# Sometimes, categories change, we issue a warning in these cases
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/list.rb#9
|
||||
Unicode::Emoji::LIST_REMOVED_KEYS = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# Unicode properties, see https://www.unicode.org/Public/16.0.0/ucd/emoji/emoji-data.txt
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#12
|
||||
Unicode::Emoji::PROPERTY_NAMES = T.let(T.unsafe(nil), Hash)
|
||||
|
||||
# The list RGI tag sequence flags
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#51
|
||||
Unicode::Emoji::RECOMMENDED_SUBDIVISION_FLAGS = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# The list of fully-qualified RGI Emoji ZWJ sequences
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#54
|
||||
Unicode::Emoji::RECOMMENDED_ZWJ_SEQUENCES = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex.rb#6
|
||||
Unicode::Emoji::REGEX = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_basic.rb#6
|
||||
Unicode::Emoji::REGEX_BASIC = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_emoji_keycap.rb#6
|
||||
Unicode::Emoji::REGEX_EMOJI_KEYCAP = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_include_mqe.rb#6
|
||||
Unicode::Emoji::REGEX_INCLUDE_MQE = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_include_mqe_uqe.rb#6
|
||||
Unicode::Emoji::REGEX_INCLUDE_MQE_UQE = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_include_text.rb#6
|
||||
Unicode::Emoji::REGEX_INCLUDE_TEXT = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_picto.rb#6
|
||||
Unicode::Emoji::REGEX_PICTO = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_picto_no_emoji.rb#6
|
||||
Unicode::Emoji::REGEX_PICTO_NO_EMOJI = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_possible.rb#6
|
||||
Unicode::Emoji::REGEX_POSSIBLE = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_prop_component.rb#6
|
||||
Unicode::Emoji::REGEX_PROP_COMPONENT = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_prop_emoji.rb#6
|
||||
Unicode::Emoji::REGEX_PROP_EMOJI = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_prop_modifier.rb#6
|
||||
Unicode::Emoji::REGEX_PROP_MODIFIER = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_prop_modifier_base.rb#6
|
||||
Unicode::Emoji::REGEX_PROP_MODIFIER_BASE = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_prop_presentation.rb#6
|
||||
Unicode::Emoji::REGEX_PROP_PRESENTATION = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_text.rb#6
|
||||
Unicode::Emoji::REGEX_TEXT = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_text_presentation.rb#6
|
||||
Unicode::Emoji::REGEX_TEXT_PRESENTATION = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_valid.rb#6
|
||||
Unicode::Emoji::REGEX_VALID = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_valid_include_text.rb#6
|
||||
Unicode::Emoji::REGEX_VALID_INCLUDE_TEXT = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_well_formed.rb#6
|
||||
Unicode::Emoji::REGEX_WELL_FORMED = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/generated/regex_well_formed_include_text.rb#6
|
||||
Unicode::Emoji::REGEX_WELL_FORMED_INCLUDE_TEXT = T.let(T.unsafe(nil), Regexp)
|
||||
|
||||
# Two regional indicators make up a region
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#43
|
||||
Unicode::Emoji::REGIONAL_INDICATORS = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# Tags characters allowed in tag-based subdivision flags
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#34
|
||||
Unicode::Emoji::SPEC_TAGS = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# The current list of codepoints with the "Emoji" property that lack the "Emoji Presentation" property
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#16
|
||||
Unicode::Emoji::TEXT_PRESENTATION = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# Variation Selector 15 (VS15), enables text presentation mode for preceding codepoint
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#25
|
||||
Unicode::Emoji::TEXT_VARIATION_SELECTOR = T.let(T.unsafe(nil), Integer)
|
||||
|
||||
# The list of valid regions
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#45
|
||||
Unicode::Emoji::VALID_REGION_FLAGS = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# The list of valid subdivisions in regex character class syntax
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/lazy_constants.rb#48
|
||||
Unicode::Emoji::VALID_SUBDIVISIONS = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#5
|
||||
Unicode::Emoji::VERSION = T.let(T.unsafe(nil), String)
|
||||
|
||||
# The current list of Emoji components that should have a visual representation
|
||||
# Currently skin tone modifiers + hair components
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#47
|
||||
Unicode::Emoji::VISUAL_COMPONENT = T.let(T.unsafe(nil), Array)
|
||||
|
||||
# Zero-width-joiner to enable combination of multiple Emoji in a sequence
|
||||
#
|
||||
# source://unicode-emoji//lib/unicode/emoji/constants.rb#40
|
||||
Unicode::Emoji::ZWJ = T.let(T.unsafe(nil), Integer)
|
||||
Loading…
x
Reference in New Issue
Block a user