Land #2752, @wchen-r7's HACKING mod to favor rexml

bug/bundler_fix
jvazquez-r7 2013-12-11 12:50:34 -06:00
commit 2218063201
No known key found for this signature in database
GPG Key ID: 38D99152B9352D83
1 changed files with 4 additions and 1 deletions

View File

@ -86,7 +86,10 @@ for an overview of common and not-so-common Ruby version related gotchas.
8. Never, ever use $global variables. This applies to modules, mixins,
and libraries. If you need a "global" within a specific class, you can
use @@class_variables, but most modules should use @instance variables
to store information between methods.
to store information between methods.
9. Don't craft your XML document raw or by using Nokogiri, the current
preferred way is REXML.
Creating New Modules
====================