class YARD::Rails::AttrAccessibleHandler

Public Instance Methods

process() click to toggle source
Calls superclass method
# File lib/yard-rails/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[0] = YARD::Parser::Ruby::AstNode.node_class_for(:ident).new(:ident, ["attr_accessor"])
  super
end