Module: EndOfLifeDateApiClient
- Defined in:
- lib/endoflife_date/version.rb,
lib/endoflife_date.rb,
lib/endoflife_date/api_error.rb,
lib/endoflife_date/api_client.rb,
lib/endoflife_date/models/cycle.rb,
lib/endoflife_date/configuration.rb,
lib/endoflife_date/api/default_api.rb
Overview
#endoflife.date
#Documentation for the endoflife.date API. The API is currently in Alpha. Additional information about the API can be found on the [endoflife.date wiki](github.com/endoflife-date/endoflife.date/wiki)
The version of the OpenAPI document: 0.0.1 Contact: [email protected] Generated by: openapi-generator.tech OpenAPI Generator version: 7.0.0
Defined Under Namespace
Classes: ApiClient, ApiError, Configuration, Cycle, DefaultApi
Constant Summary collapse
- VERSION =
'0.10.0'
Class Method Summary collapse
-
.configure ⇒ Object
Customize default settings for the SDK using block.
Class Method Details
.configure ⇒ Object
Customize default settings for the SDK using block.
EndOfLifeDateApiClient.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
33 34 35 36 37 38 39 |
# File 'lib/endoflife_date.rb', line 33 def configure if block_given? yield(Configuration.default) else Configuration.default end end |