forked from ternarylabs/porthole
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
70 lines (61 loc) · 1.96 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
require 'jasmine'
load 'jasmine/tasks/jasmine.rake'
require 'jslint/tasks'
JSLint.config_path = "config/jslint.yml"
def porthole_sources
sources = ["src/porthole.js"]
sources
end
desc "Build documentation"
task :doc do
puts 'Creating Documentation'
FileUtils.rm_r "jsdoc", :force => true
# Requires jsdoc3
system('../../jsdoc/jsdoc -c ./config/jsdoc.conf.json -d jsdoc -r src')
FileUtils.cp "jsdoc/module-Porthole.html", "jsdoc/index.html"
end
namespace :minifier do
require "yui/compressor"
def minify(files)
files.each do |file|
# skip if already minified
next if file.include?(".min.")
min_file = file.split(".")
extension = min_file.pop
min_file.push "min"
min_file.push extension
min_file = min_file.join(".")
if extension == "js"
compressor = YUI::JavaScriptCompressor.new(:munge => true)
elsif
compressor = YUI::CssCompressor.new
else
puts "Don't know how to minify this extension: #{file}"
end
code = File.read(file)
puts "Compressing #{file} -> #{min_file}"
code_min = compressor.compress(code)
File.open(min_file, 'w') {|f| f.write(code_min) }
end
end
desc "minify"
task :minify => [:minify_js]
desc "minify javascript"
task :minify_js do
minify(FileList['src/porthole.js'])
end
end
namespace :example do
desc "Build example"
task :build => 'minifier:minify' do
FileUtils.mkdir_p 'example/sandbox.ternarylabs.com/porthole/js'
FileUtils.cp_r Dir.glob('src/**/*.js'), 'example/sandbox.ternarylabs.com/porthole/js'
FileUtils.mkdir_p 'example/abc.com/js'
FileUtils.cp_r Dir.glob('src/**/*.js'), 'example/abc.com/js'
end
desc "Publish example"
task :publish => :build do
system("rsync -avz --delete 'example/sandbox.ternarylabs.com/porthole' 'ternarylabs.com:sandbox.ternarylabs.com/'")
system("rsync -avz --delete 'example/demo.auberger.com/porthole' 'auberger.com:demo.auberger.com/'")
end
end