Changeset 1148
- Timestamp:
- 12/14/07 00:10:20 (9 months ago)
- Files:
-
- trunk/build/vfs/build.xml (modified) (1 diff)
- trunk/build/vfs/package.php (modified) (2 diffs)
- trunk/src/main/php/org/stubbles/vfs/examples (added)
- trunk/src/main/php/org/stubbles/vfs/examples/Example.php (added)
- trunk/src/main/php/org/stubbles/vfs/examples/ExampleTestCaseOldWay.php (added)
- trunk/src/main/php/org/stubbles/vfs/examples/ExampleTestCaseWithVfsStream.php (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/vfs/build.xml
r1147 r1148 39 39 <append destFile="${build.src.dir}/VERSION">vfsStream version ${version}</append> 40 40 <copy todir="${build.src.dir}/vfsStream"> 41 <fileset dir="${stubbles.base.dir}/src/main/php/org/stubbles/vfs/"> 41 <fileset dir="${stubbles.base.dir}/src/main/php/org/stubbles/vfs"> 42 <include name="**/*.php"/> 43 <exclude name="**/examples/*"/> 44 </fileset> 45 </copy> 46 <copy todir="${build.src.dir}/examples"> 47 <fileset dir="${stubbles.base.dir}/src/main/php/org/stubbles/vfs/examples"> 42 48 <include name="**/*"/> 43 49 </fileset> trunk/build/vfs/package.php
r1147 r1148 4 4 * package.xml file. 5 5 * 6 * $Id: package.php 442 2006-08-20 13:21:58Z schst $ 7 * 8 * @author Stephan Schmidt <schst@php-tools.net> 9 * @package XJConfForPHP 10 * @subpackage Tools 6 * @author Frank Kleine <mikey@stubbles.net> 7 * @package stubbles_vfs 8 * @subpackage build 11 9 */ 12 10 … … 59 57 'simpleoutput' => true, 60 58 'baseinstalldir' => '/', 61 'packagedirectory' => './'/*, 62 'dir_roles' => array( 63 'docs' => 'doc', 64 'examples' => 'doc', 65 'tests' => 'test', 66 )*/ 59 'packagedirectory' => './', 60 'dir_roles' => array('examples' => 'doc') 67 61 )); 68 62 if (PEAR::isError($result)) {
