ymdp 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/ymdp/compiler/template.rb +1 -1
- data/lib/ymdp/view/application_view.rb +3 -4
- data/ymdp.gemspec +1 -1
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.1
|
@@ -400,10 +400,9 @@ module YMDP
|
|
400
400
|
filename.gsub!(/\.css$/, "")
|
401
401
|
f = "#{BASE_PATH}/app/stylesheets/#{filename}.css"
|
402
402
|
if !File.exists?(f)
|
403
|
-
f = "#{BASE_PATH}/app/stylesheets/#{filename}
|
404
|
-
else
|
405
|
-
$stdout.puts("Could not find #{filename}.css or #{filename}.scss")
|
403
|
+
f = "#{BASE_PATH}/app/stylesheets/#{filename}"
|
406
404
|
end
|
405
|
+
f
|
407
406
|
end
|
408
407
|
|
409
408
|
output = combine_files(filenames)
|
@@ -429,7 +428,7 @@ module YMDP
|
|
429
428
|
def render_without_compression(path="", tags=true)
|
430
429
|
path ||= ""
|
431
430
|
output = ""
|
432
|
-
|
431
|
+
|
433
432
|
if File.exists?("#{path}.coffee")
|
434
433
|
path = "#{path}.coffee"
|
435
434
|
$stdout.puts("Parsing #{path}")
|
data/ymdp.gemspec
CHANGED
metadata
CHANGED