slide_hero 0.0.8 → 0.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 +4 -4
- data/.ruby-version +1 -1
- data/README.md +1 -1
- data/lib/slide_hero/version.rb +1 -1
- data/lib/slide_hero/views/layout.html.erb +2 -2
- data/vendor/reveal.js/.gitignore +3 -1
- data/vendor/reveal.js/.travis.yml +1 -1
- data/vendor/reveal.js/CONTRIBUTING.md +19 -0
- data/vendor/reveal.js/Gruntfile.js +58 -21
- data/vendor/reveal.js/LICENSE +1 -1
- data/vendor/reveal.js/README.md +154 -74
- data/vendor/reveal.js/css/print/paper.css +193 -167
- data/vendor/reveal.js/css/print/pdf.css +20 -53
- data/vendor/reveal.js/css/reveal.css +912 -1651
- data/vendor/reveal.js/css/reveal.scss +1316 -0
- data/vendor/reveal.js/css/theme/README.md +1 -1
- data/vendor/reveal.js/css/theme/beige.css +177 -60
- data/vendor/reveal.js/css/theme/black.css +261 -0
- data/vendor/reveal.js/css/theme/blood.css +191 -75
- data/vendor/reveal.js/css/theme/league.css +267 -0
- data/vendor/reveal.js/css/theme/moon.css +168 -51
- data/vendor/reveal.js/css/theme/night.css +165 -42
- data/vendor/reveal.js/css/theme/serif.css +181 -58
- data/vendor/reveal.js/css/theme/simple.css +173 -50
- data/vendor/reveal.js/css/theme/sky.css +170 -47
- data/vendor/reveal.js/css/theme/solarized.css +168 -51
- data/vendor/reveal.js/css/theme/source/beige.scss +1 -12
- data/vendor/reveal.js/css/theme/source/black.scss +49 -0
- data/vendor/reveal.js/css/theme/source/blood.scss +4 -4
- data/vendor/reveal.js/css/theme/source/{default.scss → league.scss} +5 -13
- data/vendor/reveal.js/css/theme/source/moon.scss +1 -12
- data/vendor/reveal.js/css/theme/source/serif.scss +1 -1
- data/vendor/reveal.js/css/theme/source/sky.scss +1 -1
- data/vendor/reveal.js/css/theme/source/solarized.scss +1 -12
- data/vendor/reveal.js/css/theme/source/white.scss +49 -0
- data/vendor/reveal.js/css/theme/template/settings.scss +13 -4
- data/vendor/reveal.js/css/theme/template/theme.scss +182 -13
- data/vendor/reveal.js/css/theme/white.css +261 -0
- data/vendor/reveal.js/index.html +198 -178
- data/vendor/reveal.js/js/reveal.js +1286 -392
- data/vendor/reveal.js/lib/css/zenburn.css +74 -71
- data/vendor/reveal.js/lib/font/{league_gothic_license → league-gothic/LICENSE} +0 -0
- data/vendor/reveal.js/lib/font/league-gothic/league-gothic.css +10 -0
- data/vendor/reveal.js/lib/font/league-gothic/league-gothic.eot +0 -0
- data/vendor/reveal.js/lib/font/league-gothic/league-gothic.ttf +0 -0
- data/vendor/reveal.js/lib/font/league-gothic/league-gothic.woff +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/LICENSE +45 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
- data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro.css +39 -0
- data/vendor/reveal.js/package.json +9 -7
- data/vendor/reveal.js/plugin/highlight/highlight.js +2 -4
- data/vendor/reveal.js/plugin/leap/leap.js +4 -2
- data/vendor/reveal.js/plugin/markdown/example.html +2 -2
- data/vendor/reveal.js/plugin/markdown/markdown.js +8 -7
- data/vendor/reveal.js/plugin/notes/notes.html +321 -182
- data/vendor/reveal.js/plugin/notes/notes.js +89 -45
- data/vendor/reveal.js/plugin/notes-server/client.js +49 -46
- data/vendor/reveal.js/plugin/notes-server/index.js +28 -21
- data/vendor/reveal.js/plugin/notes-server/notes.html +351 -97
- data/vendor/reveal.js/plugin/print-pdf/print-pdf.js +24 -20
- data/vendor/reveal.js/plugin/zoom-js/zoom.js +77 -57
- data/vendor/reveal.js/test/examples/barebones.html +2 -2
- data/vendor/reveal.js/test/examples/embedded-media.html +2 -2
- data/vendor/reveal.js/test/examples/math.html +2 -2
- data/vendor/reveal.js/test/examples/slide-backgrounds.html +29 -7
- data/vendor/reveal.js/test/test-markdown-element-attributes.html +6 -6
- data/vendor/reveal.js/test/test-markdown-slide-attributes.html +7 -7
- data/vendor/reveal.js/test/test-markdown.html +4 -4
- data/vendor/reveal.js/test/test-pdf.html +83 -0
- data/vendor/reveal.js/test/test-pdf.js +15 -0
- data/vendor/reveal.js/test/test.html +5 -4
- data/vendor/reveal.js/test/test.js +143 -9
- metadata +31 -13
- data/vendor/reveal.js/css/reveal.min.css +0 -7
- data/vendor/reveal.js/css/theme/default.css +0 -148
- data/vendor/reveal.js/js/reveal.min.js +0 -9
- data/vendor/reveal.js/lib/font/league_gothic-webfont.eot +0 -0
- data/vendor/reveal.js/lib/font/league_gothic-webfont.svg +0 -230
- data/vendor/reveal.js/lib/font/league_gothic-webfont.ttf +0 -0
- data/vendor/reveal.js/lib/font/league_gothic-webfont.woff +0 -0
- data/vendor/reveal.js/plugin/postmessage/example.html +0 -39
- data/vendor/reveal.js/plugin/postmessage/postmessage.js +0 -42
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4ab8f64da24ee4cbcb91a7f8d392e2593f22eae
|
|
4
|
+
data.tar.gz: 4d1ea35db58b8ccec969d1a701170fd14e48733a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 916b941004ac4f84c4be11503ae1962c05179855053f1b799938b9ba4122fbdfe47620fe27b56549d3a1cd45f50761cf33548ee7ca4f1d442ab9af426008ef17
|
|
7
|
+
data.tar.gz: f5ee06ef353fc4aeaf4b75022f8ab891852c024792b3c9aaae395c5fa419e308c4638d275475115abe7914829bedcee004792c29897ffa0d889b19651c55d3fd
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.2
|
data/README.md
CHANGED
data/lib/slide_hero/version.rb
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
7
7
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
9
|
-
<link rel="stylesheet" href="css/reveal.
|
|
9
|
+
<link rel="stylesheet" href="css/reveal.css">
|
|
10
10
|
<link rel="stylesheet" href="css/theme/<%= theme %>.css" id="theme">
|
|
11
11
|
<link rel="stylesheet" href="lib/css/zenburn.css">
|
|
12
12
|
<script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
</div>
|
|
24
24
|
</div>
|
|
25
25
|
<script src="lib/js/head.min.js"></script>
|
|
26
|
-
<script src="js/reveal.
|
|
26
|
+
<script src="js/reveal.js"></script>
|
|
27
27
|
|
|
28
28
|
<script>
|
|
29
29
|
|
data/vendor/reveal.js/.gitignore
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
## Contributing
|
|
2
|
+
|
|
3
|
+
Please keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Personal Support
|
|
7
|
+
If you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js).
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Reports
|
|
11
|
+
When reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Pull Requests
|
|
15
|
+
- Should follow the coding style of the file you work in, most importantly:
|
|
16
|
+
- Tabs to indent
|
|
17
|
+
- Single-quoted strings
|
|
18
|
+
- Should be made towards the **dev branch**
|
|
19
|
+
- Should be submitted from a feature/topic branch (not your master)
|
|
@@ -11,7 +11,7 @@ module.exports = function(grunt) {
|
|
|
11
11
|
' * http://lab.hakim.se/reveal-js\n' +
|
|
12
12
|
' * MIT licensed\n' +
|
|
13
13
|
' *\n' +
|
|
14
|
-
' * Copyright (C)
|
|
14
|
+
' * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n' +
|
|
15
15
|
' */'
|
|
16
16
|
},
|
|
17
17
|
|
|
@@ -29,18 +29,17 @@ module.exports = function(grunt) {
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
sass: {
|
|
33
|
+
core: {
|
|
34
34
|
files: {
|
|
35
|
-
'css/reveal.
|
|
35
|
+
'css/reveal.css': 'css/reveal.scss',
|
|
36
36
|
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
sass: {
|
|
41
|
-
main: {
|
|
37
|
+
},
|
|
38
|
+
themes: {
|
|
42
39
|
files: {
|
|
43
|
-
'css/theme/
|
|
40
|
+
'css/theme/black.css': 'css/theme/source/black.scss',
|
|
41
|
+
'css/theme/white.css': 'css/theme/source/white.scss',
|
|
42
|
+
'css/theme/league.css': 'css/theme/source/league.scss',
|
|
44
43
|
'css/theme/beige.css': 'css/theme/source/beige.scss',
|
|
45
44
|
'css/theme/night.css': 'css/theme/source/night.scss',
|
|
46
45
|
'css/theme/serif.css': 'css/theme/source/serif.scss',
|
|
@@ -53,6 +52,20 @@ module.exports = function(grunt) {
|
|
|
53
52
|
}
|
|
54
53
|
},
|
|
55
54
|
|
|
55
|
+
autoprefixer: {
|
|
56
|
+
dist: {
|
|
57
|
+
src: 'css/reveal.css'
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
|
|
61
|
+
cssmin: {
|
|
62
|
+
compress: {
|
|
63
|
+
files: {
|
|
64
|
+
'css/reveal.min.css': [ 'css/reveal.css' ]
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
|
|
56
69
|
jshint: {
|
|
57
70
|
options: {
|
|
58
71
|
curly: false,
|
|
@@ -70,7 +83,9 @@ module.exports = function(grunt) {
|
|
|
70
83
|
head: false,
|
|
71
84
|
module: false,
|
|
72
85
|
console: false,
|
|
73
|
-
unescape: false
|
|
86
|
+
unescape: false,
|
|
87
|
+
define: false,
|
|
88
|
+
exports: false
|
|
74
89
|
}
|
|
75
90
|
},
|
|
76
91
|
files: [ 'Gruntfile.js', 'js/reveal.js' ]
|
|
@@ -80,7 +95,9 @@ module.exports = function(grunt) {
|
|
|
80
95
|
server: {
|
|
81
96
|
options: {
|
|
82
97
|
port: port,
|
|
83
|
-
base: '.'
|
|
98
|
+
base: '.',
|
|
99
|
+
livereload: true,
|
|
100
|
+
open: true
|
|
84
101
|
}
|
|
85
102
|
}
|
|
86
103
|
},
|
|
@@ -97,14 +114,24 @@ module.exports = function(grunt) {
|
|
|
97
114
|
},
|
|
98
115
|
|
|
99
116
|
watch: {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
117
|
+
options: {
|
|
118
|
+
livereload: true
|
|
119
|
+
},
|
|
120
|
+
js: {
|
|
121
|
+
files: [ 'Gruntfile.js', 'js/reveal.js' ],
|
|
122
|
+
tasks: 'js'
|
|
103
123
|
},
|
|
104
124
|
theme: {
|
|
105
125
|
files: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],
|
|
106
|
-
tasks: 'themes'
|
|
107
|
-
}
|
|
126
|
+
tasks: 'css-themes'
|
|
127
|
+
},
|
|
128
|
+
css: {
|
|
129
|
+
files: [ 'css/reveal.scss' ],
|
|
130
|
+
tasks: 'css-core'
|
|
131
|
+
},
|
|
132
|
+
html: {
|
|
133
|
+
files: [ 'index.html']
|
|
134
|
+
}
|
|
108
135
|
}
|
|
109
136
|
|
|
110
137
|
});
|
|
@@ -115,15 +142,25 @@ module.exports = function(grunt) {
|
|
|
115
142
|
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
|
|
116
143
|
grunt.loadNpmTasks( 'grunt-contrib-uglify' );
|
|
117
144
|
grunt.loadNpmTasks( 'grunt-contrib-watch' );
|
|
118
|
-
grunt.loadNpmTasks( 'grunt-
|
|
145
|
+
grunt.loadNpmTasks( 'grunt-sass' );
|
|
119
146
|
grunt.loadNpmTasks( 'grunt-contrib-connect' );
|
|
147
|
+
grunt.loadNpmTasks( 'grunt-autoprefixer' );
|
|
120
148
|
grunt.loadNpmTasks( 'grunt-zip' );
|
|
121
149
|
|
|
122
150
|
// Default task
|
|
123
|
-
grunt.registerTask( 'default', [ '
|
|
151
|
+
grunt.registerTask( 'default', [ 'css', 'js' ] );
|
|
152
|
+
|
|
153
|
+
// JS task
|
|
154
|
+
grunt.registerTask( 'js', [ 'jshint', 'uglify', 'qunit' ] );
|
|
155
|
+
|
|
156
|
+
// Theme CSS
|
|
157
|
+
grunt.registerTask( 'css-themes', [ 'sass:themes' ] );
|
|
158
|
+
|
|
159
|
+
// Core framework CSS
|
|
160
|
+
grunt.registerTask( 'css-core', [ 'sass:core', 'autoprefixer', 'cssmin' ] );
|
|
124
161
|
|
|
125
|
-
//
|
|
126
|
-
grunt.registerTask( '
|
|
162
|
+
// All CSS
|
|
163
|
+
grunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] );
|
|
127
164
|
|
|
128
165
|
// Package presentation to archive
|
|
129
166
|
grunt.registerTask( 'package', [ 'default', 'zip' ] );
|
data/vendor/reveal.js/LICENSE
CHANGED