Class: Lazylead::NoAuthJira
- Inherits:
-
Object
- Object
- Lazylead::NoAuthJira
- 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
-
#initialize(url, path = "", log = Log.new) ⇒ NoAuthJira
constructor
A new instance of NoAuthJira.
Constructor Details
#initialize(url, path = "", log = Log.new) ⇒ NoAuthJira
Returns a new instance of NoAuthJira.
319 320 321 322 323 324 325 326 327 328 329 330 |
# File 'lib/lazylead/system/jira.rb', line 319 def initialize(url, path = "", log = Log.new) @jira = Jira.new( { username: nil, password: nil, site: url, context_path: path }, NoSalt.new, log ) end |