class Turnstile::Commands::PrintKeys

Public Instance Methods

execute() click to toggle source
# File lib/turnstile/commands/print_keys.rb, line 7
def execute
  adapter.all_keys.each do |key|
    puts key
  end
end