Method: Gem::Commands::CertCommand#list_certificates_matching
- Defined in:
- lib/rubygems/commands/cert_command.rb
#list_certificates_matching(filter) ⇒ Object
:nodoc:
238 239 240 241 242 243 |
# File 'lib/rubygems/commands/cert_command.rb', line 238 def list_certificates_matching(filter) # :nodoc: certificates_matching filter do |certificate, _| # this could probably be formatted more gracefully say certificate.subject.to_s end end |