summaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2012-12-23 14:13:05 +0100
committerwout <wout@impinc.co.uk>2012-12-23 14:13:05 +0100
commit64a1a7488adba419aa6b65e12c7a25cd602cadb0 (patch)
tree951d3bcc948915c07c50a76db5cd9bdbfa522926 /Rakefile
parent6e2d46d1369426986defbecbbb5febeec1b25e90 (diff)
downloadsvg.js-64a1a7488adba419aa6b65e12c7a25cd602cadb0.tar.gz
svg.js-64a1a7488adba419aa6b65e12c7a25cd602cadb0.zip
Added build instructions to README
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/Rakefile b/Rakefile
index 2595d3d..fe9905b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,16 +1,7 @@
SVGJS_VERSION = '0.1a'
# all available modules in the correct loading order
-ALL = %w[ svg container element group arrange defs clip gradient doc shape rect circle ellipse path image text sugar ]
-
-# required modules to make the library operational
-CORE = %w[ circle container defs doc element ellipse image path rect shape svg text ]
-
-# optional modules
-OPTIONAL = %w[ clip group arrange gradient sugar ]
-
-# modules used in the curren build
-MODULES = CORE.concat(OPTIONAL).sort { |a,b| ALL.index(a) <=> ALL.index(b) }
+MODULES = %w[ svg container element group arrange defs clip gradient doc shape rect circle ellipse path image text sugar ]
# how many bytes in a "kilobyte"
KILO = 1024