Skip to content

Commit 0a9aad2

Browse files
committedOct 30, 2013
Make opal-parser.rb simpler
1 parent 87fb01a commit 0a9aad2

File tree

5 files changed

+41
-34
lines changed

5 files changed

+41
-34
lines changed
 

‎lib/opal.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ def self.use_gem(gem_name, include_dependecies = true)
4343

4444
# Private, don't add to these directly (use .append_path instead).
4545
def self.paths
46-
@paths ||= [core_dir.untaint, std_dir.untaint]
46+
@paths ||= [core_dir.untaint, std_dir.untaint, gem_dir.untaint]
4747
end
4848
end

‎lib/opal/source_map.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'opal'
1+
# require 'opal'
22
require 'source_map'
33

44
module Opal

‎stdlib/opal-gem.js.erb

-28
This file was deleted.

‎stdlib/opal-parser.rb

+39-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,46 @@
1-
require 'opal-gem'
1+
require 'opal/compiler'
2+
require 'opal/builder'
3+
require 'opal/erb'
4+
require 'opal/version'
5+
6+
module Opal
7+
def self.compile(source, options = {})
8+
Compiler.new.compile(source, options)
9+
end
10+
end
211

312
module Kernel
413
def eval(str)
514
code = Opal.compile str
615
`eval(#{code})`
716
end
817
end
18+
19+
%x{
20+
Opal.compile = function(str) {
21+
return Opal.Opal.$compile(str);
22+
};
23+
24+
Opal.eval = function(str) {
25+
return eval(Opal.compile(str));
26+
};
27+
28+
function run_ruby_scripts() {
29+
var tags = document.getElementsByTagName('script');
30+
31+
for (var i = 0, len = tags.length; i < len; i++) {
32+
if (tags[i].type === "text/ruby") {
33+
Opal.eval(tags[i].innerHTML);
34+
}
35+
}
36+
}
37+
38+
if (typeof(document) !== 'undefined') {
39+
if (window.addEventListener) {
40+
window.addEventListener('DOMContentLoaded', run_ruby_scripts, false);
41+
}
42+
else {
43+
window.attachEvent('onload', run_ruby_scripts);
44+
}
45+
}
46+
}

‎stdlib/racc/parser.rb.rb

-3
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.