Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fb4f69e

Browse files
committedMay 19, 2015
[snapshot]
1 parent 01f600d commit fb4f69e

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed
 

Diff for: ‎.travis.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
language: ruby
22
cache: bundler
3+
sudo: false
34

45
rvm:
5-
- 1.9.3
6-
- 2.0.0
7-
- 2.1.1
6+
# - 1.9.3
7+
# - 2.0.0
8+
# - 2.1.1
89
- '2.2'
910

1011
before_script:

Diff for: ‎app/controllers/opal_spec_controller.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ def run
1818
unless written_to_disk == builder.main_code
1919
raise "Something's wrong: written_to_disk: #{written_to_disk.inspect}"
2020
end
21-
render locals: { runner: sprockets.find_asset(logical_path) || raise("can't find asset #{logical_path}") }
21+
runner_asset = sprockets.load "file://#{runner.to_s}?type=application/javascript"
22+
# runner_asset = sprockets.find_asset(logical_path) || raise("can't find asset #{logical_path}")
23+
render locals: { runner: runner_asset}
2224
end
2325

2426

0 commit comments

Comments
 (0)
Please sign in to comment.