Skip to content

Commit

Permalink
include rb-inotify gem (fix sass:watch for linux)
Browse files Browse the repository at this point in the history
  • Loading branch information
minman committed Apr 5, 2013
1 parent 52858e7 commit 1deee62
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<project.build.targetVersion>1.6</project.build.targetVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<compass.version>0.12.2</compass.version>
<inotify.version>0.8.8</inotify.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -128,6 +129,31 @@
</arguments>
</configuration>
</execution>
<execution>
<id>install-inotify</id>
<phase>generate-resources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
<classpath />
<argument>org.jruby.Main</argument>
<argument>-S</argument>
<argument>gem</argument>
<argument>install</argument>
<argument>-i</argument>
<argument>${project.build.directory}/classes</argument>
<argument>--no-rdoc</argument>
<argument>--no-ri</argument>
<argument>--version</argument>
<argument>${inotify.version}</argument>
<argument>rb-inotify</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>install-rb-fsevent</id>
<phase>generate-resources</phase>
Expand Down

0 comments on commit 1deee62

Please sign in to comment.