Request To All Tutorial Writers 1
git clone git://github.com/sam/extlib.git
git clone git://github.com/sam/do.git
cd extlib
rake install ; cd ..
cd do
cd data_objects
rake install ; cd ..
cd do_mysql # || do_postgres || do_sqlite3
rake installInstead, tell your readers to do this…
git clone git://github.com/sam/extlib.git
git clone git://github.com/sam/do.git
cd extlib
***rake spec***
rake install ; cd ..
cd do
cd data_objects
***rake spec***
rake install ; cd ..
cd do_mysql # || do_postgres || do_sqlite3
rake installMake sure that your running specs that are passing before installing edge software.
Here’s another tip, if your trying to learn new software… or wondering why something isn’t working for you… check the specs! They are a great place to learn just exactly how the author approaches using the libraries they write.
Comments
-
I second this for edge software. However I don't support running the test on stable releases (aside from educational reasons anyway). I can't tell you how many times I've been burned by the fact that CPAN insists on running tests before installing the perl mysql module.
