distil 0.13.1 → 0.13.2
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/Buildfile +33 -0
- data/VERSION +1 -1
- data/assets/mime.types +1240 -0
- data/bin/distil-old +78 -0
- data/distil.gemspec +6 -3
- data/distil.tmproj +32 -2
- data/lib/distil/project/distil-project.rb +4 -1
- metadata +7 -4
data/Buildfile
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
name: MyProject
|
|
2
|
+
type: framework|application
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
notice: src/NOTICE
|
|
5
|
+
|
|
6
|
+
require:
|
|
7
|
+
# Named external project
|
|
8
|
+
- name: coherent
|
|
9
|
+
href: git://github.com/jeffwatkins/coherent.git
|
|
10
|
+
version: init-from-dom
|
|
11
|
+
include-path: build/debug
|
|
12
|
+
|
|
13
|
+
# External project reference by URL
|
|
14
|
+
- http://github.com/DmitryBaranovskiy/raphael/raw/v1.4.7/raphael.js
|
|
15
|
+
|
|
16
|
+
source:
|
|
17
|
+
- coherent
|
|
18
|
+
- raphael
|
|
19
|
+
- src/css/file1.css
|
|
20
|
+
- src/css/file2.css
|
|
21
|
+
- src/css/file3.css
|
|
22
|
+
|
|
23
|
+
- src/js/file1.js
|
|
24
|
+
- src/js/file2.js
|
|
25
|
+
- src/js/file3.js
|
|
26
|
+
# Standard wildcards may be used rather than specifying each individual
|
|
27
|
+
# source file.
|
|
28
|
+
- src/js/folder/*.js
|
|
29
|
+
# In addition, wildcards can be used for folders to process an entire
|
|
30
|
+
# tree.
|
|
31
|
+
- src/js/tree/**/*.js
|
|
32
|
+
# Specify jsnib folders rather than files with the folder
|
|
33
|
+
- src/nibs/foo.jsnib
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.13.
|
|
1
|
+
0.13.2
|