Feature Requests: Browse | Submit New | Admin
I would like to be able to document constants in a more flexible manner. Consider the following example: class Foo ALPHA = 1 # :nodoc: BETA = # :nodoc: "hello" # :nodoc: GAMMA = 'world' end At the moment only the ALPHA constant is nodoc'd correctly. The other two examples do not work as expected, with the last example even emitting a warning. I would like all three of these to be legal. Regards, Dan
Add A Comment:
Date: 2011-01-02 23:15 Sender: Eric Hodel I think the change required to support GAMMA is too big. I will look into supporting BETA.