diff options
author | wout <wout@impinc.co.uk> | 2012-12-18 13:16:25 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2012-12-18 13:16:25 +0100 |
commit | ecc7c2b21cc484a0a57cd7df02a533c65f7bde97 (patch) | |
tree | ccf3cce51e73e7dfd454d44ce366901a1242635d /Rakefile | |
parent | 1d8f6a6bfda2c09a1fafe330ac2d91e9d38e2019 (diff) | |
download | svg.js-ecc7c2b21cc484a0a57cd7df02a533c65f7bde97.tar.gz svg.js-ecc7c2b21cc484a0a57cd7df02a533c65f7bde97.zip |
Added transform()
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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 |