What is the best way to create an alias to a instance atribute in Ruby (I\'m not using rails or any ruby gem, just, Ruby).
For example given the class below, how can I c
alias :name :student_name # not wrong, only for getter
alias :name= :student_name= # add this for setter
alias :name? :student_name? # add this for boolean