Sha256: a1645b7190e7e51cf987f21af7c5a2af18dbfed2f008ca1314c3b8b86ba18337
Contents?: true
Size: 909 Bytes
Versions: 12
Compression:
Stored size: 909 Bytes
Contents
# frozen_string_literal: true module ConvenientService module Service module Plugins module RescuesResultUnhandledExceptions module Commands class FormatClass < Support::Command ## # @!attribute [r] klass # @return [Class] # attr_reader :klass ## # @param klass [Class] # @return [void] # def initialize(klass:) @klass = klass end ## # @return [String] # # @note Exceptions formatting is inspired by RSpec. It has almost the same output (at least for RSpec 3). # # @example Line. # # StandardError: # def call "#{klass}:" end end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems