Class: Lazylead::User

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

Overview

An user from Jira which might be reporter, assignee, etc.

Author

Yurii Dubinka ([email protected])

Copyright

Copyright © 2019-2020 Yurii Dubinka

License

MIT

Instance Method Summary collapse

Constructor Details

#initialize(usr) ⇒ User

Returns a new instance of User.



122
123
124
# File 'lib/lazylead/system/jira.rb', line 122

def initialize(usr)
  @usr = usr
end

Instance Method Details

#==(other) ⇒ Object Also known as: eql?



138
139
140
141
142
143
144
# File 'lib/lazylead/system/jira.rb', line 138

def ==(other)
  if other.respond_to?(:id)
    other.id == id
  else
    false
  end
end

#emailObject



134
135
136
# File 'lib/lazylead/system/jira.rb', line 134

def email
  @usr["emailAddress"]
end

#hashObject



148
149
150
# File 'lib/lazylead/system/jira.rb', line 148

def hash
  id.hash
end

#idObject



126
127
128
# File 'lib/lazylead/system/jira.rb', line 126

def id
  @usr["name"]
end

#nameObject



130
131
132
# File 'lib/lazylead/system/jira.rb', line 130

def name
  @usr["displayName"]
end

#to_sObject



152
153
154
# File 'lib/lazylead/system/jira.rb', line 152

def to_s
  "#{name} (#{id})"
end