1 2 3 4 5 6 7 8
class UserContext attr_reader :user, :context def initialize(user, context = {}) @user = user @context = context end end