ymdp 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/lib/ymdp/compiler/template.rb +1 -1
- data/lib/ymdp/view/application_view.rb +3 -2
- data/ymdp.gemspec +1 -1
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.4.
|
|
1
|
+
1.4.1
|
|
@@ -311,8 +311,9 @@ module YMDP
|
|
|
311
311
|
output << "</script>" if tags
|
|
312
312
|
end
|
|
313
313
|
end
|
|
314
|
-
output
|
|
315
314
|
|
|
315
|
+
output = output.join("\n")
|
|
316
|
+
|
|
316
317
|
if configuration.external_assets["javascripts"] && params[:tags]
|
|
317
318
|
write_javascript_asset(output, filename)
|
|
318
319
|
|
|
@@ -326,7 +327,7 @@ module YMDP
|
|
|
326
327
|
path = "#{server_path}/assets/javascripts/#{filename}.js"
|
|
327
328
|
|
|
328
329
|
$stdout.puts "Writing #{path}"
|
|
329
|
-
|
|
330
|
+
|
|
330
331
|
File.open(path, "w") do |f|
|
|
331
332
|
f.write(output)
|
|
332
333
|
end
|
data/ymdp.gemspec
CHANGED
metadata
CHANGED