Class: Unisec::CLI::Commands::Properties::List
- Inherits:
-
Dry::CLI::Command
- Object
- Dry::CLI::Command
- Unisec::CLI::Commands::Properties::List
- Defined in:
- lib/unisec/cli/properties.rb
Overview
Command unisec properties list
Example:
$ unisec properties list
ASCII_Hex_Digit
Age
Alphabetic
…
Instance Method Summary collapse
-
#call ⇒ Object
List Unicode properties name.
Instance Method Details
#call ⇒ Object
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 |