class Spaceship::Base

def self.attr_accessor(*vars)

This will store a list of defined attr_accessors to easily access them when inspecting the values
From https://stackoverflow.com/questions/2487333/fastest-one-liner-way-to-list-attr-accessors-in-ruby
def self.attr_accessor(*vars)
  @attributes ||= []
  @attributes.concat vars
  super(*vars)
end