Object
Public: Build a new instance of User
User
name - the name of the user email - the email address of the user
Returns a new User
# File lib/honeybadger-api/user.rb, line 13 def initialize(name, email) @name = name @email = email end