Skip to content

Instantly share code, notes, and snippets.

@netbe
Created December 18, 2014 10:33
Show Gist options
  • Save netbe/3f65c537775007c3e1a6 to your computer and use it in GitHub Desktop.
Save netbe/3f65c537775007c3e1a6 to your computer and use it in GitHub Desktop.
generate man pages ruby
task :man do
mkdir_p "build"
File.write "README.md.ron", File.read("README.md").gsub("\u200c", "* ")
sh 'ronn --roff --manual="Gist manual" README.md.ron'
rm 'README.md.ron'
mv 'README.1', 'build/gist.1'
end
# https://github.com/defunkt/gist/blob/master/Rakefile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment