Class: Unisec::CLI::Commands::Properties::List

Inherits:
Dry::CLI::Command
  • Object
show all
Defined in:
lib/unisec/cli/properties.rb

Overview

Command ‘unisec properties list`

Example:

“‘plaintext $ unisec properties list ASCII_Hex_Digit Age Alphabetic …“`

Instance Method Summary collapse

Instance Method Details

#callObject

List Unicode properties name



27
28
29
30
31
# File 'lib/unisec/cli/properties.rb', line 27

def call(**)
  Unisec::Properties.list.each do |p|
    puts p
  end
end