guard-mirror 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +6 -6
- data/lib/guard/mirror.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -2,12 +2,12 @@ guard-mirror
|
|
|
2
2
|
============
|
|
3
3
|
|
|
4
4
|
A CoffeeScript, Stylus, and Jade (HTML and JST) Guard that mirrors your source
|
|
5
|
-
files (.coffee/.styl/.jade/.
|
|
6
|
-
guard-mirror also can compress the files on the fly for
|
|
7
|
-
a simple `compress: true` option. Google Closure
|
|
8
|
-
YUI Compressor for CSS. Jade -> HTML files are
|
|
9
|
-
Sprockets is used for file requiring and
|
|
10
|
-
Sprockets syntax can be used.
|
|
5
|
+
files (.coffee/.styl/.jst.jade/.html.jade) in another location
|
|
6
|
+
(public/www/etc...). guard-mirror also can compress the files on the fly for
|
|
7
|
+
use in production with a simple `compress: true` option. Google Closure
|
|
8
|
+
Compiler is used for JS and YUI Compressor for CSS. Jade -> HTML files are
|
|
9
|
+
automatically shrinkwrapped. Sprockets is used for file requiring and
|
|
10
|
+
concatination so all of the same Sprockets syntax can be used.
|
|
11
11
|
|
|
12
12
|
I created this to help with PhoneGap/Cordova development and it's working out really nice!
|
|
13
13
|
|
data/lib/guard/mirror.rb
CHANGED