aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2012-12-18 13:16:25 +0100
committerwout <wout@impinc.co.uk>2012-12-18 13:16:25 +0100
commitecc7c2b21cc484a0a57cd7df02a533c65f7bde97 (patch)
treeccf3cce51e73e7dfd454d44ce366901a1242635d /Rakefile
parent1d8f6a6bfda2c09a1fafe330ac2d91e9d38e2019 (diff)
downloadsvg.js-ecc7c2b21cc484a0a57cd7df02a533c65f7bde97.tar.gz
svg.js-ecc7c2b21cc484a0a57cd7df02a533c65f7bde97.zip
Added transform()
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 3e8cfe4..289849d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,6 +1,10 @@
-SVGJS_VERSION = '0.1'
+SVGJS_VERSION = '0.1a'
-DEFAULT_MODULES = %w[ svg utils container element doc defs shape rect circle ellipse path image g clip ]
+CORE_MODULES = %w[ svg container element clip doc defs shape rect circle ellipse path image group ]
+
+OPTIONAL_MODULES = %w[ sugar ]
+
+DEFAULT_MODULES = CORE_MODULES + OPTIONAL_MODULES
KILO = 1024 # how many bytes in a "kilobyte"
@@ -10,7 +14,7 @@ task :default => :dist
class BuildTask < Rake::FileTask
def modules
- prerequisites.map {|f| File.basename(f, '.js') }
+ prerequisites.map { |f| File.basename(f, '.js') }
end
def remove_prerequisites to_remove