Sha256: e450d07ba7d5bfa6a4f9fefbdae9e1ebe23b7ff6e2255166774d7c72e0af28af
Contents?: true
Size: 719 Bytes
Versions: 106
Compression:
Stored size: 719 Bytes
Contents
module LanguageServer module Protocol module Interface # # Matching options for the file operation pattern. # class FileOperationPatternOptions def initialize(ignore_case: nil) @attributes = {} @attributes[:ignoreCase] = ignore_case if ignore_case @attributes.freeze end # # The pattern should be matched ignoring casing. # # @return [boolean] def ignore_case attributes.fetch(:ignoreCase) end attr_reader :attributes def to_hash attributes end def to_json(*args) to_hash.to_json(*args) end end end end end
Version data entries
106 entries across 106 versions & 12 rubygems