lib/vedeu/renderers/options.rb in vedeu-0.8.12 vs lib/vedeu/renderers/options.rb in vedeu-0.8.13
- old
+ new
@@ -51,11 +51,11 @@
write
end
# @macro raise_not_implemented
def write
- fail Vedeu::Error::NotImplemented, 'Including classes implement this.'
+ raise Vedeu::Error::NotImplemented, 'Including classes implement this.'
end
private
# Returns a boolean indicating whether the content should be
@@ -79,19 +79,19 @@
end
end
# @macro raise_not_implemented
def content
- fail Vedeu::Error::NotImplemented, 'Including classes implement this.'
+ raise Vedeu::Error::NotImplemented, 'Including classes implement this.'
end
# @macro defaults_method
def defaults
{
compression: Vedeu.config.compression?,
end_tag: '</td>',
end_row_tag: '</tr>',
- filename: 'out',
+ filename: '/tmp/vedeu_out',
output: '',
start_tag: '<td',
start_row_tag: '<tr>',
template: default_template,
timestamp: false,