Skip to content

Commit 8514670

Browse files
committedJan 12, 2014
Opal::Server should not search for an index.html path unless specified
1 parent bf01576 commit 8514670

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@
108108

109109
* Support '<' and '>' as matching pairs in string boundrys `%q<hi>`.
110110

111+
* `Opal::Server` no longer searches for an index file if not specified.
112+
111113
## 0.5.5 2013-11-25
112114

113115
* Fix regression: add `%i[foo bar]` style words back to lexer

‎lib/opal/sprockets/server.rb

-8
Original file line numberDiff line numberDiff line change
@@ -128,19 +128,11 @@ def html
128128
if @index_path
129129
raise "index does not exist: #{@index_path}" unless File.exist?(@index_path)
130130
Tilt.new(@index_path).render(self)
131-
elsif index = search_html_path
132-
Tilt.new(index).render(self)
133131
else
134132
::ERB.new(SOURCE).result binding
135133
end
136134
end
137135

138-
def search_html_path
139-
%w[index.html index.html.haml index.html.erb].find do |path|
140-
File.exist? path
141-
end
142-
end
143-
144136
def javascript_include_tag source
145137
if @server.debug
146138
assets = @server.sprockets[source].to_a

0 commit comments

Comments
 (0)
Please sign in to comment.