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, path = "", log = Log.new) ⇒ NoAuthJira

Returns a new instance of NoAuthJira.



258
259
260
261
262
263
264
265
266
267
268
269
# File 'lib/lazylead/system/jira.rb', line 258

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