File tree 2 files changed +2
-8
lines changed
2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 108
108
109
109
* Support '<' and '>' as matching pairs in string boundrys ` %q<hi> ` .
110
110
111
+ * ` Opal::Server ` no longer searches for an index file if not specified.
112
+
111
113
## 0.5.5 2013-11-25
112
114
113
115
* Fix regression: add ` %i[foo bar] ` style words back to lexer
Original file line number Diff line number Diff line change @@ -128,19 +128,11 @@ def html
128
128
if @index_path
129
129
raise "index does not exist: #{ @index_path } " unless File . exist? ( @index_path )
130
130
Tilt . new ( @index_path ) . render ( self )
131
- elsif index = search_html_path
132
- Tilt . new ( index ) . render ( self )
133
131
else
134
132
::ERB . new ( SOURCE ) . result binding
135
133
end
136
134
end
137
135
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
-
144
136
def javascript_include_tag source
145
137
if @server . debug
146
138
assets = @server . sprockets [ source ] . to_a
You can’t perform that action at this time.
0 commit comments