appmake 0.0.19 → 0.0.20
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/appmake.rb +3 -3
- metadata +1 -1
data/lib/appmake.rb
CHANGED
@@ -335,12 +335,12 @@ APP_TPL_JS = <<'EOS'
|
|
335
335
|
}())
|
336
336
|
EOS
|
337
337
|
|
338
|
-
WELCOME_HTML = <<
|
338
|
+
WELCOME_HTML = <<'EOS'
|
339
339
|
<h1>{{= it.title }}</h1>
|
340
340
|
<p>{{= it.description }}</p>
|
341
341
|
EOS
|
342
342
|
|
343
|
-
APP_SCSS = <<
|
343
|
+
APP_SCSS = <<'EOS'
|
344
344
|
@import "body";
|
345
345
|
|
346
346
|
body {
|
@@ -349,7 +349,7 @@ body {
|
|
349
349
|
}
|
350
350
|
EOS
|
351
351
|
|
352
|
-
BODY_SCSS = <<
|
352
|
+
BODY_SCSS = <<'EOS'
|
353
353
|
$bodyColor: #A47;
|
354
354
|
$bodyBackgroundColor: #BCF;
|
355
355
|
EOS
|