ruby - Combining yard docs for multiple gems -


i'm using yard generate docs couple projects i'm working on. in one, i'm co-developing gem hosts lot of redundant , shared resources used other projects.

what'd i'd references first project classes or methods in gem show in docs main project. example

gem

class widget   # spins widget of course.   def spin   end end 

project

class specialwidget   # jump , {#spin}.   def dance   end end 

i'd docs specialwidget generate actual link widget#spin method.

can done?


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -