Two issues I see in this. The first is that you can't actually modify the options hash from Thor. It's frozen, and you'll get a `[]=': can't modify frozen Thor::CoreExt::HashWithIndifferentAccess (RuntimeError).
The real issue, though, is that you're working at too low a level. What you're looking for is the ask method of Thor::Actions. If I understand your code properly, to do what you want to do you'd do something like this:
class Test < Thor
include Thor::Actions
desc 'readkeys', 'Read keys'
method_option :password, :type => :string, :desc => 'Password for the key store'
def readkeys
if options[:password].nil?
password = ask "Enter keystore password"
else
password = options[:password]
end
File.open("#{Dir.home}#{File::SEPARATOR}#{ENV['USER']}.p12") do |p12|
pkcs12 = OpenSSL::PKCS12.new(p12.read, password)
end
end
#...
end
Or, more simply,
class Test < Thor
include Thor::Actions
desc 'readkeys', 'Read keys'
method_option :password, :type => :string, :desc => 'Password for the key store'
def readkeys
password = options[:password] || ask("Enter keystore password")
File.open("#{Dir.home}#{File::SEPARATOR}#{ENV['USER']}.p12") do |p12|
pkcs12 = OpenSSL::PKCS12.new(p12.read, password)
end
end
#...
end