Skip to content

Commit e2535fe

Browse files
committedOct 24, 2013
Revert: RakeHelper
1 parent 2946e9b commit e2535fe

File tree

2 files changed

+27
-62
lines changed

2 files changed

+27
-62
lines changed
 

‎Rakefile

+27-6
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ require 'bundler'
22
Bundler.require
33
Bundler::GemHelper.install_tasks
44

5-
require 'opal/rake_helper'
6-
Opal::RakeHelper.install_tasks
7-
85
namespace :github do
96
task :upload_assets do
107
require 'octokit'
@@ -64,7 +61,7 @@ class SpecEnvironment < Opal::Environment
6461
end
6562

6663
def build_min file = 'build/specs.min.js'
67-
build Opal::RakeHelper.uglify(specs), file
64+
build uglify(specs), file
6865
end
6966

7067
def build code = specs, file = 'build/specs.js'
@@ -178,8 +175,8 @@ task :dist do
178175
puts "* building #{lib}..."
179176

180177
src = env[lib].to_s
181-
min = Opal::RakeHelper.uglify src
182-
gzp = Opal::RakeHelper.gzip min
178+
min = uglify src
179+
gzp = gzip min
183180

184181
File.open("build/#{lib}.js", 'w+') { |f| f << src }
185182
File.open("build/#{lib}.min.js", 'w+') { |f| f << min } if min
@@ -197,3 +194,27 @@ desc "Rebuild grammar.rb for opal parser"
197194
task :racc do
198195
%x(racc -l lib/opal/grammar.y -o lib/opal/grammar.rb)
199196
end
197+
198+
# Used for uglifying source to minify
199+
def uglify(str)
200+
IO.popen('uglifyjs', 'r+') do |i|
201+
i.puts str
202+
i.close_write
203+
return i.read
204+
end
205+
rescue Errno::ENOENT
206+
$stderr.puts '"uglifyjs" command not found (install with: "npm install -g uglify-js")'
207+
nil
208+
end
209+
210+
# Gzip code to check file size
211+
def gzip(str)
212+
IO.popen('gzip -f', 'r+') do |i|
213+
i.puts str
214+
i.close_write
215+
return i.read
216+
end
217+
rescue Errno::ENOENT
218+
$stderr.puts '"gzip" command not found, it is required to produce the .gz version'
219+
nil
220+
end

‎lib/opal/rake_helper.rb

-56
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.