2011-12-12 14:20:20 -08:00
|
|
|
module ::PassThrough
|
|
|
|
def self.compress(data)
|
2011-12-12 13:54:04 -08:00
|
|
|
data
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-12 14:20:20 -08:00
|
|
|
set :js_compressor, ::PassThrough
|
|
|
|
set :css_compressor, ::PassThrough
|
2011-12-12 13:54:04 -08:00
|
|
|
|
|
|
|
activate :minify_javascript
|
|
|
|
activate :minify_css
|
|
|
|
|
|
|
|
with_layout false do
|
|
|
|
page "/inline-css.html"
|
|
|
|
page "/inline-js.html"
|
|
|
|
page "/inline-coffeescript.html"
|
|
|
|
end
|