Sha256: e36e2199c5391ecb6c96fb51b48389b68bd65f66325f9b1ab481a6caf6a117c6
Contents?: true
Size: 423 Bytes
Versions: 2
Compression:
Stored size: 423 Bytes
Contents
# frozen_string_literal: true module Fusuma module Plugin module Events module Records # Record for Keypress event class AppmatcherRecord < Record attr_reader :name # @param status [String] def initialize(name:) super() @name = name end def to_s @name end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fusuma-plugin-appmatcher-0.7.1 | lib/fusuma/plugin/events/records/appmatcher_record.rb |
fusuma-plugin-appmatcher-0.7.0 | lib/fusuma/plugin/events/records/appmatcher_record.rb |