public
Description: Fork of http://svn.codehaus.org/mojo/trunk/sandbox/rspec-maven-plugin/
Homepage: http://www.diegocarrion.com
Clone URL: git://github.com/dcrec1/rspec-maven-plugin.git
name age message
file .gitignore Wed Dec 10 05:57:29 -0800 2008 removed spec folder [Diego Carrion]
file README.textile Sat Dec 13 06:37:17 -0800 2008 removed blank lines on installation [dcrec1]
file pom.xml Fri Mar 20 14:47:23 -0700 2009 cleaned pom.xml [dcrec1]
directory src/ Fri Mar 20 14:38:18 -0700 2009 updated to jruby 1.2.0 [dcrec1]
README.textile

INSTALLATION

git clone git://github.com/dcrec1/rspec-maven-plugin.git
cd rspec-maven-plugin
mvn install

CONFIGURATION

Just put this in your pom.xml:


<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>rspec-maven-plugin</artifactId>
    <executions>
        <execution>
            <id>test</id>
            <phase>test</phase>
            <goals>
                <goal>spec</goal>
            </goals>
        </execution>
    </executions>
</plugin>