Class: Lazylead::NoAuthJira

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/lazylead/system/jira.rb

Overview

Jira instance without authentication in order to access public filters

or dashboards.

Instance Method Summary collapse

Constructor Details

#initialize(url, salt = NoSalt.new, path = "", log = Log.new) ⇒ NoAuthJira

Returns a new instance of NoAuthJira.



354
355
356
357
358
359
360
361
362
363
364
365
# File 'lib/lazylead/system/jira.rb', line 354

def initialize(url, salt = NoSalt.new, path = "", log = Log.new)
  @jira = Jira.new(
    {
      username: nil,
      password: nil,
      site: url,
      context_path: path
    },
    salt,
    log
  )
end