hyla 1.0.9.pre.3 → 1.0.9
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.
- checksums.yaml +8 -8
- data/.gitignore +2 -1
- data/README.adoc +17 -0
- data/Rakefile +2 -2
- data/lib/hyla/commands/sendmail.rb +1 -1
- data/lib/hyla/project.rb +1 -1
- data/lib/resources/assets/revealjs-redhat/lib/css/conference-blue.css +84 -81
- data/lib/resources/assets/revealjs-redhat/lib/css/conference-redhat.css +85 -81
- data/lib/resources/assets/revealjs-redhat/lib/css/conference.css +684 -0
- data/lib/resources/assets/revealjs-redhat/lib/css/gpe.css +105 -98
- data/lib/resources/assets/revealjs-redhat/lib/css/theme-output.css +182 -178
- data/lib/resources/assets/revealjs-redhat/lib/js/debug/gpe.js +27 -4
- data/lib/resources/assets/revealjs-redhat/lib/js/gpe.min.js +4 -3
- data/lib/resources/assets/sass/_variable.scss +18 -0
- data/lib/resources/assets/sass/conference-blue.scss +3 -6
- data/lib/resources/assets/sass/conference-redhat.scss +6 -8
- data/lib/resources/assets/sass/conference.scss +600 -0
- data/lib/resources/assets/sass/new-gpe.scss +30 -13
- data/lib/resources/assets/sass/theme-output.scss +3 -1
- data/lib/resources/assets/styles/update_labs.css +660 -0
- data/lib/resources/backends/slim/revealjs-redhat/block_olist.html.slim +20 -9
- data/lib/resources/backends/slim/revealjs-redhat/document.html.slim +2 -1
- metadata +8 -4
@@ -1,9 +1,20 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
1
|
+
- if "#{@id}".start_with?("expandlist")
|
2
|
+
.olist class=[@style,role]
|
3
|
+
- if title?
|
4
|
+
.title=title
|
5
|
+
ol id=@id class=@style start=(attr :start) type=list_marker_keyword
|
6
|
+
- items.each do |item|
|
7
|
+
li
|
8
|
+
p=item.text
|
9
|
+
- if item.blocks?
|
10
|
+
=item.content
|
11
|
+
- else
|
12
|
+
.olist id=@id class=[@style,role]
|
13
|
+
- if title?
|
14
|
+
.title=title
|
15
|
+
ol class=@style start=(attr :start) type=list_marker_keyword
|
16
|
+
- items.each do |item|
|
17
|
+
li
|
18
|
+
p=item.text
|
19
|
+
- if item.blocks?
|
20
|
+
=item.content
|
@@ -1,4 +1,5 @@
|
|
1
1
|
- revealjsdir = (attr :revealjsdir, 'revealjs-redhat')
|
2
|
+
- revealjsfontfamily = (attr :revealjsfontfamily, 'liberation')
|
2
3
|
doctype 5
|
3
4
|
html lang=(attr :lang, 'en' unless attr? :nolang)
|
4
5
|
head
|
@@ -12,7 +13,7 @@ html lang=(attr :lang, 'en' unless attr? :nolang)
|
|
12
13
|
meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"
|
13
14
|
meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
14
15
|
|
15
|
-
link href="#{revealjsdir}/lib/css/theme-v2
|
16
|
+
link href="#{revealjsdir}/lib/css/theme-v2-#{revealjsfontfamily}.css" rel="stylesheet"
|
16
17
|
link href="#{revealjsdir}/lib/css/theme-output.css" rel="stylesheet"
|
17
18
|
- if attr? :icons, 'font'
|
18
19
|
- if attr? 'iconfont-remote'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hyla
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.9
|
4
|
+
version: 1.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charles Moulliard
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -593,6 +593,7 @@ files:
|
|
593
593
|
- lib/resources/assets/revealjs-redhat/image/expanded.png
|
594
594
|
- lib/resources/assets/revealjs-redhat/lib/css/conference-blue.css
|
595
595
|
- lib/resources/assets/revealjs-redhat/lib/css/conference-redhat.css
|
596
|
+
- lib/resources/assets/revealjs-redhat/lib/css/conference.css
|
596
597
|
- lib/resources/assets/revealjs-redhat/lib/css/font-awesome-4.3.0.css
|
597
598
|
- lib/resources/assets/revealjs-redhat/lib/css/gpe.css
|
598
599
|
- lib/resources/assets/revealjs-redhat/lib/css/highlightjs/agate.min.css
|
@@ -924,8 +925,10 @@ files:
|
|
924
925
|
- lib/resources/assets/sass/_liberation.scss
|
925
926
|
- lib/resources/assets/sass/_liberation2.scss
|
926
927
|
- lib/resources/assets/sass/_overpass.scss
|
928
|
+
- lib/resources/assets/sass/_variable.scss
|
927
929
|
- lib/resources/assets/sass/conference-blue.scss
|
928
930
|
- lib/resources/assets/sass/conference-redhat.scss
|
931
|
+
- lib/resources/assets/sass/conference.scss
|
929
932
|
- lib/resources/assets/sass/font-awesome.scss
|
930
933
|
- lib/resources/assets/sass/fontawesome/_animated.scss
|
931
934
|
- lib/resources/assets/sass/fontawesome/_bordered-pulled.scss
|
@@ -988,6 +991,7 @@ files:
|
|
988
991
|
- lib/resources/assets/styles/riak.css
|
989
992
|
- lib/resources/assets/styles/rocket-panda.css
|
990
993
|
- lib/resources/assets/styles/rubygems.css
|
994
|
+
- lib/resources/assets/styles/update_labs.css
|
991
995
|
- lib/resources/backends/haml/deckjs/block_admonition.html.haml
|
992
996
|
- lib/resources/backends/haml/deckjs/block_audio.html.haml
|
993
997
|
- lib/resources/backends/haml/deckjs/block_colist.html.haml
|
@@ -1337,9 +1341,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1337
1341
|
version: '0'
|
1338
1342
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1339
1343
|
requirements:
|
1340
|
-
- - ! '
|
1344
|
+
- - ! '>='
|
1341
1345
|
- !ruby/object:Gem::Version
|
1342
|
-
version:
|
1346
|
+
version: '0'
|
1343
1347
|
requirements: []
|
1344
1348
|
rubyforge_project:
|
1345
1349
|
rubygems_version: 2.3.0
|