Method: Itest5ch::Comment#initialize
- Defined in:
- lib/itest5ch/comment.rb
#initialize(number:, name:, mail:, date:, id:, message:, thread:) ⇒ Comment
Returns a new instance of Comment.
40 41 42 43 44 45 46 47 48 |
# File 'lib/itest5ch/comment.rb', line 40 def initialize(number:, name:, mail:, date:, id:, message:, thread:) # rubocop:disable Metrics/ParameterLists @number = number @name = name @mail = mail @date = date @id = id = @thread = thread end |