From 2d198870db0ee1caa06e5100ed864809322bde8a Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Tue, 31 Aug 2010 20:56:55 -0700 Subject: [PATCH] make the docs on extensions a bit more clear for rubygems extensions. --- doc-src/content/tutorials/extensions.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc-src/content/tutorials/extensions.markdown b/doc-src/content/tutorials/extensions.markdown index a928abfe..f9c9fa34 100644 --- a/doc-src/content/tutorials/extensions.markdown +++ b/doc-src/content/tutorials/extensions.markdown @@ -80,7 +80,7 @@ The extension library file referenced above as `my_extension/lib/my_extension.rb can actually be stored at any of the following three locations: 1. `my_extension/compass_init.rb` -2. `my_extension/lib/my_extension.rb` +2. `my_extension/lib/my_extension.rb` (NOTE: You must use this one if you're distributing as a rubygem.) 3. `my_extension/my_extension.rb` The first of those locations found (in the above order) will be loaded.