Skip to content

Instantly share code, notes, and snippets.

@blakesmith
Created June 30, 2010 04:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blakesmith/458247 to your computer and use it in GitHub Desktop.
Save blakesmith/458247 to your computer and use it in GitHub Desktop.
From d4ed463815b8c7afcf95500a73754f2bca6b1b13 Mon Sep 17 00:00:00 2001
From: Blake Smith <blakesmith0@gmail.com>
Date: Tue, 29 Jun 2010 23:43:26 -0500
Subject: [PATCH] Fix garbled UTF-8 characters
---
.../2010-01-16-fully-document-your-datamapper.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/_posts/2010-01-16-fully-document-your-datamapper.html b/_posts/2010-01-16-fully-document-your-datamapper.html
index df72a82..a098afd 100644
--- a/_posts/2010-01-16-fully-document-your-datamapper.html
+++ b/_posts/2010-01-16-fully-document-your-datamapper.html
@@ -35,7 +35,7 @@ end</pre>
<h2>Enter YARD</h2>
-<blockquote>YARD is a documentation generation tool for the Ruby programming language.¿ It enables the user to generate consistent, usable documentation that can be¿ exported to a number of formats very easily, and also supports extending for¿ custom Ruby constructs such as custom class level definitions.</blockquote>
+<blockquote>YARD is a documentation generation tool for the Ruby programming language. It enables the user to generate consistent, usable documentation that can be exported to a number of formats very easily, and also supports extending for custom Ruby constructs such as custom class level definitions.</blockquote>
<a href="http://github.com/lsegal/yard">http://github.com/lsegal/yard</a>
<p>YARD organizes most of it's parsing logic into multiple handlers; essentially classes that inherit <a href="http://yardoc.org/docs/yard/YARD/Handlers/Ruby/Base">YARD::Handlers::Ruby::Base</a> and define a <kbd>process</kbd> method. YARD also supports a plugin system, by loading any RubyGems installed on the system that are prefixed with <kbd>yard-</kbd> or <kbd>yard_</kbd>. Using these two features of YARD, one can easily create a YARD plugin gem containing custom handlers, which YARD can automatically load and use.</p>
--
1.7.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment