You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2009/02/22 16:07:58 UTC

svn commit: r746718 - /buildr/trunk/doc/pages/settings_profiles.textile

Author: boisvert
Date: Sun Feb 22 15:07:58 2009
New Revision: 746718

URL: http://svn.apache.org/viewvc?rev=746718&view=rev
Log:
Example should use resources.filter.using

Modified:
    buildr/trunk/doc/pages/settings_profiles.textile

Modified: buildr/trunk/doc/pages/settings_profiles.textile
URL: http://svn.apache.org/viewvc/buildr/trunk/doc/pages/settings_profiles.textile?rev=746718&r1=746717&r2=746718&view=diff
==============================================================================
--- buildr/trunk/doc/pages/settings_profiles.textile (original)
+++ buildr/trunk/doc/pages/settings_profiles.textile Sun Feb 22 15:07:58 2009
@@ -246,7 +246,7 @@
   # for example, everything under src/main/hsql.
   resources.from(_("src/main/#{Buildr.settings.profile['db']}"))
   # Set the JDBC URL in copied resource files (config.xml needs this).
-  resources.filter :jdbc=>profile['jdbc']
+  resources.filter.using :jdbc=>Buildr.settings.profile['jdbc']
 end
 }}}