initialize

in retrospective.rb [10:17]


  def initialize
    @options = Docopt::docopt(docstring)
    @read_client = GitlabApi.new(token: options.fetch('--read-token'))
    @write_client = GitlabApi.new(token: options.fetch('--write-token'))
    @retrospective = Retrospective.new(read_client: read_client, write_client: write_client)
    @dry_run = options.fetch('--dry-run', false)
  end