Module: ConvenientService::Service::Core Private
- Includes:
- Core, ConvenientService::Support::Concern
- Included in:
- ConvenientService::Service::Configs::Standard
- Defined in:
- lib/convenient_service/service/core.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
-
#to_s(format: :inspect) ⇒ String
Returns string representation of service.
Methods included from Core
Methods included from ConvenientService::Support::Concern
Instance Method Details
#to_s(format: :inspect) ⇒ String
Note:
Intended to be used for debugging purposes.
Returns string representation of service.
51 52 53 |
# File 'lib/convenient_service/service/core.rb', line 51 def to_s(format: :inspect) (format == :inspect) ? inspect : super() end |