@@ -2,9 +2,6 @@ require 'bundler'
2
2
Bundler . require
3
3
Bundler ::GemHelper . install_tasks
4
4
5
- require 'opal/rake_helper'
6
- Opal ::RakeHelper . install_tasks
7
-
8
5
namespace :github do
9
6
task :upload_assets do
10
7
require 'octokit'
@@ -64,7 +61,7 @@ class SpecEnvironment < Opal::Environment
64
61
end
65
62
66
63
def build_min file = 'build/specs.min.js'
67
- build Opal :: RakeHelper . uglify ( specs ) , file
64
+ build uglify ( specs ) , file
68
65
end
69
66
70
67
def build code = specs , file = 'build/specs.js'
@@ -178,8 +175,8 @@ task :dist do
178
175
puts "* building #{ lib } ..."
179
176
180
177
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
183
180
184
181
File . open ( "build/#{ lib } .js" , 'w+' ) { |f | f << src }
185
182
File . open ( "build/#{ lib } .min.js" , 'w+' ) { |f | f << min } if min
@@ -197,3 +194,27 @@ desc "Rebuild grammar.rb for opal parser"
197
194
task :racc do
198
195
%x(racc -l lib/opal/grammar.y -o lib/opal/grammar.rb)
199
196
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
0 commit comments