Skip to content

Commit e2d8ab9

Browse files
committedApr 23, 2014
Ruby 1.8 compat
1 parent 37ef2f1 commit e2d8ab9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎lib/opal/nodes/call.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def handle_special
113113
end
114114
end
115115

116-
add_special :require, compile: true do
116+
add_special :require, :compile => true do
117117
str = DependencyResolver.new(compiler, arglist[1]).resolve
118118
compiler.requires << str unless str.nil?
119119
fragment ''

‎spec/cli/builder_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
let(:foo_stubbed) { 'foo stubbed' }
8686

8787
before do
88-
options.merge! stubbed_files: [foo_path]
88+
options.merge! :stubbed_files => [foo_path]
8989
foo_compiler = double('compiler', :compile => nil, :result => foo_stubbed, :requires => [])
9090
compiler_class.stub(:new).with('', :file => foo_path, :requirable => true) { foo_compiler }
9191
end

‎spec/cli/hike_path_finder_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
describe Opal::HikePathFinder do
66
subject(:path_finder) { described_class.new(root) }
7-
let(:root) { __dir__ }
7+
let(:root) { File.expand_path('..', __FILE__) }
88
let(:path) { 'fixtures/opal_file' }
99
let(:full_path) { File.join(root, path + ext) }
1010
let(:ext) { '.rb' }

‎spec/cli/path_reader_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
subject(:file_reader) { described_class.new(path_finder) }
99
let(:path_finder) { double('path_finder') }
1010
let(:path) { 'opal_file' }
11-
let(:full_path) { File.join(__dir__, 'fixtures', 'opal_file.rb') }
11+
let(:full_path) { File.expand_path('../fixtures/opal_file.rb', __FILE__) }
1212
let(:contents) { File.read(full_path) }
1313

1414
before do

0 commit comments

Comments
 (0)
Please sign in to comment.