No release in over 3 years
Low commit activity in last 3 years
Our api provides access to our entry services
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 3.6, >= 3.6.0

Runtime

~> 2.1, >= 2.1.0
~> 1.0, >= 1.0.1
 Project Readme

gemifiied KORONA.cloud Entry client

Gem Version

generate gem with openapi-generator (was swagger-codegen)

brew install openapi-generator
openapi-generator generate -i swagger.json -g ruby -o gem --package-name korona-entry-client -p gemName=korona-entry-client -p gemHomepage=https://github.com/giantmonkey/korona-entry-client -p gemVersion=1.0.2

(all ruby options: https://openapi-generator.tech/docs/generators/ruby/ )

publish gem to rubygems

cd gem
gem build korona-entry-client.gemspec
gem push korona-entry-client-1.0.2.gem

usage in a project

config = KoronaEntryClient::Configuration.new do |config|
  config.host       = 'korona3.de'
  config.base_path  = 'entry_mk/services/v1/rxb/'
end

client  = KoronaEntryClient::ApiClient.new(config)
api     = KoronaEntryClient::TicketsApi.new(client)
tickets = api.get_tickets('', 0, 1, {locked: true})