class YARD::Rails::Legacy::AttrAccessibleHandler

Public Instance Methods

process() click to toggle source
Calls superclass method
# File lib/yard-rails/legacy/attr_accessible_handler.rb, line 9
def process
  # HACK: Must set the name to attr_accessor to make the attribute
  # show up as read/write.
  statement.tokens.first.set_text('attr_accessor')
  super
end