Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

autodocs - use markdown format in ruby documentation comments #16

Merged
merged 1 commit into from
Jul 22, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.24.3
2.24.4
4 changes: 3 additions & 1 deletion devtools/admin/aminclude/autodocs-ycp.ami
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ AUTODOCS_STRIP ?= $(srcdir)/../../src

# yard specific options
YARD ?= yard
# use markdown format by default
YARD_OPTIONS ?= -o . -m markdown

# yard specific clean
clean-local:
Expand All @@ -42,4 +44,4 @@ index.html: $(AUTODOCS_YCP) $(AUTODOCS_PM) $(AUTODOCS_RB)
pod2html --title=$$b --infile=$$i --outfile=$$b.html; \
echo "<a href='$$b.html'>$${b/__/::}</a>" > $$b.mod.html; \
done
if [ -n "$(AUTODOCS_RB)" ]; then $(YARD) doc -o . $(AUTODOCS_RB); fi
if [ -n "$(AUTODOCS_RB)" ]; then $(YARD) doc $(YARD_OPTIONS) $(AUTODOCS_RB); fi
7 changes: 7 additions & 0 deletions package/yast2-devtools.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Jul 22 13:56:47 UTC 2013 - lslezak@suse.cz

- autodocs - use markdown format in ruby documentation comments,
added YARD_OPTIONS to allow overriding the defaults
- 2.24.4

-------------------------------------------------------------------
Thu Jul 18 11:14:32 UTC 2013 - mvidner@suse.com

Expand Down