slideoff 0.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.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/MIT-LICENSE +20 -0
- data/README.md +218 -0
- data/bin/slideoff +127 -0
- data/lib/slideoff/config_builder.rb +60 -0
- data/lib/slideoff/flickr_api.rb +50 -0
- data/lib/slideoff/flickr_image.rb +92 -0
- data/lib/slideoff/markdown.rb +145 -0
- data/lib/slideoff/presentation.rb +90 -0
- data/lib/slideoff/remote_api.rb +53 -0
- data/lib/slideoff/routes.rb +20 -0
- data/lib/slideoff/server.rb +50 -0
- data/lib/slideoff/slides_api.rb +59 -0
- data/lib/slideoff/utils.rb +453 -0
- data/lib/slideoff.rb +15 -0
- data/themes/3d_slideshow/README +2 -0
- data/themes/3d_slideshow/css/main.css +232 -0
- data/themes/3d_slideshow/css/reset.css +57 -0
- data/themes/3d_slideshow/index.erb +31 -0
- data/themes/3d_slideshow/js/slideshow.js +288 -0
- data/themes/CSSS/README +2 -0
- data/themes/CSSS/css/slideshow.css +304 -0
- data/themes/CSSS/css/theme.css +250 -0
- data/themes/CSSS/images/rainbow-wood.jpg +0 -0
- data/themes/CSSS/index.erb +36 -0
- data/themes/CSSS/js/classList.js +116 -0
- data/themes/CSSS/js/prefixfree.min.js +5 -0
- data/themes/CSSS/js/slideshow.js +621 -0
- data/themes/common/css/pygments/colorful.css +62 -0
- data/themes/common/css/pygments/manni.css +61 -0
- data/themes/common/css/pygments/native.css +70 -0
- data/themes/common/css/pygments/solarized.css +66 -0
- data/themes/common/fonts/DroidSansMono.svg +626 -0
- data/themes/common/fonts/DroidSansMono.ttf +0 -0
- data/themes/common/fonts/Lato-BoldItalic.woff +0 -0
- data/themes/common/fonts/Lato-Italic.woff +0 -0
- data/themes/common/fonts/Lato-bold.woff +0 -0
- data/themes/common/fonts/Lato.woff +0 -0
- data/themes/common/fonts/OpenSans-Bold.woff +0 -0
- data/themes/common/fonts/OpenSans-BoldItalic.woff +0 -0
- data/themes/common/fonts/OpenSans-Italic.woff +0 -0
- data/themes/common/fonts/OpenSans.woff +0 -0
- data/themes/common/fonts/PTMono.woff +0 -0
- data/themes/common/fonts/PTSans.Bold.Italic.woff +0 -0
- data/themes/common/fonts/PTSans.Bold.woff +0 -0
- data/themes/common/fonts/PTSans.Italic.woff +0 -0
- data/themes/common/fonts/PTSans.Narrow.Bold.woff +0 -0
- data/themes/common/fonts/PTSans.Narrow.woff +0 -0
- data/themes/common/fonts/PTSans.woff +0 -0
- data/themes/common/fonts/TargetBlank.otf +0 -0
- data/themes/common/fonts/TargetBlank.svg +14 -0
- data/themes/common/fonts/YanoneKaffeesatz-Bold.woff +0 -0
- data/themes/common/fonts/YanoneKaffeesatz-Regular.woff +0 -0
- data/themes/common/fonts/crimson_text.ttf +0 -0
- data/themes/common/fonts/crimson_text_bold.ttf +0 -0
- data/themes/common/fonts/crimson_text_semibold.ttf +0 -0
- data/themes/common/fonts/league_gothic-webfont.ttf +0 -0
- data/themes/html5rocks/README +2 -0
- data/themes/html5rocks/css/default.css +501 -0
- data/themes/html5rocks/css/moon.css +543 -0
- data/themes/html5rocks/css/sand.css +508 -0
- data/themes/html5rocks/css/sea_wave.css +492 -0
- data/themes/html5rocks/index.erb +64 -0
- data/themes/html5rocks/js/slides.js +464 -0
- data/themes/io2012/README +2 -0
- data/themes/io2012/css/default.css +1481 -0
- data/themes/io2012/css/fonts.css +24 -0
- data/themes/io2012/css/phone.css +27 -0
- data/themes/io2012/images/google_developers_icon_128.png +0 -0
- data/themes/io2012/images/io2012_logo.png +0 -0
- data/themes/io2012/index.erb +73 -0
- data/themes/io2012/js/hammer.js +586 -0
- data/themes/io2012/js/modernizr.custom.45394.js +4 -0
- data/themes/io2012/js/order.js +8 -0
- data/themes/io2012/js/polyfills/classList.min.js +2 -0
- data/themes/io2012/js/polyfills/dataset.min.js +2 -0
- data/themes/io2012/js/polyfills/history.min.js +1 -0
- data/themes/io2012/js/prettify/lang-apollo.js +2 -0
- data/themes/io2012/js/prettify/lang-clj.js +18 -0
- data/themes/io2012/js/prettify/lang-css.js +2 -0
- data/themes/io2012/js/prettify/lang-go.js +1 -0
- data/themes/io2012/js/prettify/lang-hs.js +2 -0
- data/themes/io2012/js/prettify/lang-lisp.js +3 -0
- data/themes/io2012/js/prettify/lang-lua.js +2 -0
- data/themes/io2012/js/prettify/lang-ml.js +2 -0
- data/themes/io2012/js/prettify/lang-n.js +4 -0
- data/themes/io2012/js/prettify/lang-proto.js +1 -0
- data/themes/io2012/js/prettify/lang-scala.js +2 -0
- data/themes/io2012/js/prettify/lang-sql.js +2 -0
- data/themes/io2012/js/prettify/lang-tex.js +1 -0
- data/themes/io2012/js/prettify/lang-vb.js +2 -0
- data/themes/io2012/js/prettify/lang-vhdl.js +3 -0
- data/themes/io2012/js/prettify/lang-wiki.js +2 -0
- data/themes/io2012/js/prettify/lang-xq.js +3 -0
- data/themes/io2012/js/prettify/lang-yaml.js +2 -0
- data/themes/io2012/js/prettify/prettify.css +1 -0
- data/themes/io2012/js/prettify/prettify.js +28 -0
- data/themes/io2012/js/require-1.0.8.min.js +33 -0
- data/themes/io2012/js/slide-controller.js +109 -0
- data/themes/io2012/js/slide-deck.js +768 -0
- data/themes/io2012/js/slides.js +5 -0
- data/themes/memories/README +5 -0
- data/themes/memories/css/fonts.css +25 -0
- data/themes/memories/css/slideshow.css +286 -0
- data/themes/memories/css/theme.css +183 -0
- data/themes/memories/index.erb +37 -0
- data/themes/memories/js/prefixfree.min.js +13 -0
- data/themes/memories/js/slideshow.js +577 -0
- data/themes/modern/LICENSE +20 -0
- data/themes/modern/README.md +52 -0
- data/themes/modern/css/GENERATED_CONTENT +0 -0
- data/themes/modern/css/defaults.css +0 -0
- data/themes/modern/css/fonts.css +166 -0
- data/themes/modern/css/pygments/colorful.css +215 -0
- data/themes/modern/css/pygments/github.css +208 -0
- data/themes/modern/css/pygments/solarized-dark.css +213 -0
- data/themes/modern/css/pygments/solarized-light.css +213 -0
- data/themes/modern/css/reset.css +41 -0
- data/themes/modern/css/screen.css +1183 -0
- data/themes/modern/fonts/Collegiate.woff +0 -0
- data/themes/modern/fonts/GoudyBookletter.1911.woff +0 -0
- data/themes/modern/fonts/Inconsolata.Bold.woff +0 -0
- data/themes/modern/fonts/Inconsolata.woff +0 -0
- data/themes/modern/fonts/Junction.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Bold.woff +0 -0
- data/themes/modern/fonts/LiberationMono.BoldItalic.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Italic.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Regular.woff +0 -0
- data/themes/modern/fonts/OpenSans.Bold.woff +0 -0
- data/themes/modern/fonts/OpenSans.BoldItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.ExtraBold.woff +0 -0
- data/themes/modern/fonts/OpenSans.ExtraBoldItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Italic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Light.woff +0 -0
- data/themes/modern/fonts/OpenSans.LightItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Regular.woff +0 -0
- data/themes/modern/fonts/OpenSans.Semibold.woff +0 -0
- data/themes/modern/fonts/OpenSans.SemiboldItalic.woff +0 -0
- data/themes/modern/fonts/PTMono.woff +0 -0
- data/themes/modern/fonts/PTSans.Bold.Italic.woff +0 -0
- data/themes/modern/fonts/PTSans.Bold.woff +0 -0
- data/themes/modern/fonts/PTSans.Italic.woff +0 -0
- data/themes/modern/fonts/PTSans.Narrow.Bold.woff +0 -0
- data/themes/modern/fonts/PTSans.woff +0 -0
- data/themes/modern/fonts/Raleway.Thin.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Bold.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.BoldItalic.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Italic.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Regular.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Bold.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.ExtraLight.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Light.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Regular.woff +0 -0
- data/themes/modern/images/cc/by.svg +29 -0
- data/themes/modern/images/cc/cc-white.svg +23 -0
- data/themes/modern/images/cc/cc.svg +23 -0
- data/themes/modern/images/cc/nc-eu.svg +21 -0
- data/themes/modern/images/cc/nc-jp.svg +18 -0
- data/themes/modern/images/cc/nc.svg +23 -0
- data/themes/modern/images/cc/nd.svg +20 -0
- data/themes/modern/images/cc/pd.svg +24 -0
- data/themes/modern/images/cc/remix.svg +20 -0
- data/themes/modern/images/cc/sa.svg +22 -0
- data/themes/modern/images/cc/sampling.plus.svg +33 -0
- data/themes/modern/images/cc/sampling.svg +36 -0
- data/themes/modern/images/cc/share.svg +22 -0
- data/themes/modern/images/cc/zero.svg +24 -0
- data/themes/modern/images/flickr.svg +65 -0
- data/themes/modern/images/mesh.png +0 -0
- data/themes/modern/images/mesh@2x.png +0 -0
- data/themes/modern/images/progress-grayDark.svg +55 -0
- data/themes/modern/images/progress.svg +3 -0
- data/themes/modern/index.erb +76 -0
- data/themes/modern/js/highcharts.js +294 -0
- data/themes/modern/js/jquery-2.1.0.min.js +4 -0
- data/themes/modern/js/script.coffee +480 -0
- data/themes/modern/js/script.js +678 -0
- data/themes/modern/styles/_box.scss +89 -0
- data/themes/modern/styles/_figure.scss +81 -0
- data/themes/modern/styles/_full.scss +74 -0
- data/themes/modern/styles/_increment.scss +38 -0
- data/themes/modern/styles/_list.scss +129 -0
- data/themes/modern/styles/_progress.scss +19 -0
- data/themes/modern/styles/defaults.scss +46 -0
- data/themes/modern/styles/fonts.scss +197 -0
- data/themes/modern/styles/pygments/_solarized.scss +82 -0
- data/themes/modern/styles/pygments/colorful.scss +67 -0
- data/themes/modern/styles/pygments/github.scss +67 -0
- data/themes/modern/styles/pygments/solarized-dark.scss +15 -0
- data/themes/modern/styles/pygments/solarized-light.scss +15 -0
- data/themes/modern/styles/reset.scss +46 -0
- data/themes/modern/styles/screen.scss +841 -0
- data/themes/reveal/README +2 -0
- data/themes/reveal/css/main.css +1029 -0
- data/themes/reveal/css/reset.css +57 -0
- data/themes/reveal/index.erb +102 -0
- data/themes/reveal/js/classList.js +2 -0
- data/themes/reveal/js/head.min.js +8 -0
- data/themes/reveal/js/reveal.js +951 -0
- data/themes/shower/README +2 -0
- data/themes/shower/css/fonts.css +50 -0
- data/themes/shower/css/reset.css +42 -0
- data/themes/shower/css/style.css +418 -0
- data/themes/shower/images/grid.png +0 -0
- data/themes/shower/images/linen.png +0 -0
- data/themes/shower/images/ribbon.svg +4 -0
- data/themes/shower/index.erb +35 -0
- data/themes/shower/js/script.js +325 -0
- data/themes/template/README +5 -0
- data/themes/template/css/reset.css +42 -0
- data/themes/template/index.erb +35 -0
- data/themes/template/js/prefixfree.min.js +13 -0
- metadata +343 -0
metadata
ADDED
@@ -0,0 +1,343 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: slideoff
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '0.1'
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- DSIW
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-10-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: goliath
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.0.2
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.0.2
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: redcarpet
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.1'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: erubis
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.7'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.7'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: yajl-ruby
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.1'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.1'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pygments.rb
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.3'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.3'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: gli
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '2.9'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '2.9'
|
97
|
+
description: Slideoff is a presentation tool that displays markdown-formatted slides
|
98
|
+
email: dsiw@dsiw-it.de
|
99
|
+
executables:
|
100
|
+
- slideoff
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files:
|
103
|
+
- README.md
|
104
|
+
files:
|
105
|
+
- Gemfile
|
106
|
+
- MIT-LICENSE
|
107
|
+
- README.md
|
108
|
+
- bin/slideoff
|
109
|
+
- lib/slideoff.rb
|
110
|
+
- lib/slideoff/config_builder.rb
|
111
|
+
- lib/slideoff/flickr_api.rb
|
112
|
+
- lib/slideoff/flickr_image.rb
|
113
|
+
- lib/slideoff/markdown.rb
|
114
|
+
- lib/slideoff/presentation.rb
|
115
|
+
- lib/slideoff/remote_api.rb
|
116
|
+
- lib/slideoff/routes.rb
|
117
|
+
- lib/slideoff/server.rb
|
118
|
+
- lib/slideoff/slides_api.rb
|
119
|
+
- lib/slideoff/utils.rb
|
120
|
+
- themes/3d_slideshow/README
|
121
|
+
- themes/3d_slideshow/css/main.css
|
122
|
+
- themes/3d_slideshow/css/reset.css
|
123
|
+
- themes/3d_slideshow/index.erb
|
124
|
+
- themes/3d_slideshow/js/slideshow.js
|
125
|
+
- themes/CSSS/README
|
126
|
+
- themes/CSSS/css/slideshow.css
|
127
|
+
- themes/CSSS/css/theme.css
|
128
|
+
- themes/CSSS/images/rainbow-wood.jpg
|
129
|
+
- themes/CSSS/index.erb
|
130
|
+
- themes/CSSS/js/classList.js
|
131
|
+
- themes/CSSS/js/prefixfree.min.js
|
132
|
+
- themes/CSSS/js/slideshow.js
|
133
|
+
- themes/common/css/pygments/colorful.css
|
134
|
+
- themes/common/css/pygments/manni.css
|
135
|
+
- themes/common/css/pygments/native.css
|
136
|
+
- themes/common/css/pygments/solarized.css
|
137
|
+
- themes/common/fonts/DroidSansMono.svg
|
138
|
+
- themes/common/fonts/DroidSansMono.ttf
|
139
|
+
- themes/common/fonts/Lato-BoldItalic.woff
|
140
|
+
- themes/common/fonts/Lato-Italic.woff
|
141
|
+
- themes/common/fonts/Lato-bold.woff
|
142
|
+
- themes/common/fonts/Lato.woff
|
143
|
+
- themes/common/fonts/OpenSans-Bold.woff
|
144
|
+
- themes/common/fonts/OpenSans-BoldItalic.woff
|
145
|
+
- themes/common/fonts/OpenSans-Italic.woff
|
146
|
+
- themes/common/fonts/OpenSans.woff
|
147
|
+
- themes/common/fonts/PTMono.woff
|
148
|
+
- themes/common/fonts/PTSans.Bold.Italic.woff
|
149
|
+
- themes/common/fonts/PTSans.Bold.woff
|
150
|
+
- themes/common/fonts/PTSans.Italic.woff
|
151
|
+
- themes/common/fonts/PTSans.Narrow.Bold.woff
|
152
|
+
- themes/common/fonts/PTSans.Narrow.woff
|
153
|
+
- themes/common/fonts/PTSans.woff
|
154
|
+
- themes/common/fonts/TargetBlank.otf
|
155
|
+
- themes/common/fonts/TargetBlank.svg
|
156
|
+
- themes/common/fonts/YanoneKaffeesatz-Bold.woff
|
157
|
+
- themes/common/fonts/YanoneKaffeesatz-Regular.woff
|
158
|
+
- themes/common/fonts/crimson_text.ttf
|
159
|
+
- themes/common/fonts/crimson_text_bold.ttf
|
160
|
+
- themes/common/fonts/crimson_text_semibold.ttf
|
161
|
+
- themes/common/fonts/league_gothic-webfont.ttf
|
162
|
+
- themes/html5rocks/README
|
163
|
+
- themes/html5rocks/css/default.css
|
164
|
+
- themes/html5rocks/css/moon.css
|
165
|
+
- themes/html5rocks/css/sand.css
|
166
|
+
- themes/html5rocks/css/sea_wave.css
|
167
|
+
- themes/html5rocks/index.erb
|
168
|
+
- themes/html5rocks/js/slides.js
|
169
|
+
- themes/io2012/README
|
170
|
+
- themes/io2012/css/default.css
|
171
|
+
- themes/io2012/css/fonts.css
|
172
|
+
- themes/io2012/css/phone.css
|
173
|
+
- themes/io2012/images/google_developers_icon_128.png
|
174
|
+
- themes/io2012/images/io2012_logo.png
|
175
|
+
- themes/io2012/index.erb
|
176
|
+
- themes/io2012/js/hammer.js
|
177
|
+
- themes/io2012/js/modernizr.custom.45394.js
|
178
|
+
- themes/io2012/js/order.js
|
179
|
+
- themes/io2012/js/polyfills/classList.min.js
|
180
|
+
- themes/io2012/js/polyfills/dataset.min.js
|
181
|
+
- themes/io2012/js/polyfills/history.min.js
|
182
|
+
- themes/io2012/js/prettify/lang-apollo.js
|
183
|
+
- themes/io2012/js/prettify/lang-clj.js
|
184
|
+
- themes/io2012/js/prettify/lang-css.js
|
185
|
+
- themes/io2012/js/prettify/lang-go.js
|
186
|
+
- themes/io2012/js/prettify/lang-hs.js
|
187
|
+
- themes/io2012/js/prettify/lang-lisp.js
|
188
|
+
- themes/io2012/js/prettify/lang-lua.js
|
189
|
+
- themes/io2012/js/prettify/lang-ml.js
|
190
|
+
- themes/io2012/js/prettify/lang-n.js
|
191
|
+
- themes/io2012/js/prettify/lang-proto.js
|
192
|
+
- themes/io2012/js/prettify/lang-scala.js
|
193
|
+
- themes/io2012/js/prettify/lang-sql.js
|
194
|
+
- themes/io2012/js/prettify/lang-tex.js
|
195
|
+
- themes/io2012/js/prettify/lang-vb.js
|
196
|
+
- themes/io2012/js/prettify/lang-vhdl.js
|
197
|
+
- themes/io2012/js/prettify/lang-wiki.js
|
198
|
+
- themes/io2012/js/prettify/lang-xq.js
|
199
|
+
- themes/io2012/js/prettify/lang-yaml.js
|
200
|
+
- themes/io2012/js/prettify/prettify.css
|
201
|
+
- themes/io2012/js/prettify/prettify.js
|
202
|
+
- themes/io2012/js/require-1.0.8.min.js
|
203
|
+
- themes/io2012/js/slide-controller.js
|
204
|
+
- themes/io2012/js/slide-deck.js
|
205
|
+
- themes/io2012/js/slides.js
|
206
|
+
- themes/memories/README
|
207
|
+
- themes/memories/css/fonts.css
|
208
|
+
- themes/memories/css/slideshow.css
|
209
|
+
- themes/memories/css/theme.css
|
210
|
+
- themes/memories/index.erb
|
211
|
+
- themes/memories/js/prefixfree.min.js
|
212
|
+
- themes/memories/js/slideshow.js
|
213
|
+
- themes/modern/LICENSE
|
214
|
+
- themes/modern/README.md
|
215
|
+
- themes/modern/css/GENERATED_CONTENT
|
216
|
+
- themes/modern/css/defaults.css
|
217
|
+
- themes/modern/css/fonts.css
|
218
|
+
- themes/modern/css/pygments/colorful.css
|
219
|
+
- themes/modern/css/pygments/github.css
|
220
|
+
- themes/modern/css/pygments/solarized-dark.css
|
221
|
+
- themes/modern/css/pygments/solarized-light.css
|
222
|
+
- themes/modern/css/reset.css
|
223
|
+
- themes/modern/css/screen.css
|
224
|
+
- themes/modern/fonts/Collegiate.woff
|
225
|
+
- themes/modern/fonts/GoudyBookletter.1911.woff
|
226
|
+
- themes/modern/fonts/Inconsolata.Bold.woff
|
227
|
+
- themes/modern/fonts/Inconsolata.woff
|
228
|
+
- themes/modern/fonts/Junction.woff
|
229
|
+
- themes/modern/fonts/LiberationMono.Bold.woff
|
230
|
+
- themes/modern/fonts/LiberationMono.BoldItalic.woff
|
231
|
+
- themes/modern/fonts/LiberationMono.Italic.woff
|
232
|
+
- themes/modern/fonts/LiberationMono.Regular.woff
|
233
|
+
- themes/modern/fonts/OpenSans.Bold.woff
|
234
|
+
- themes/modern/fonts/OpenSans.BoldItalic.woff
|
235
|
+
- themes/modern/fonts/OpenSans.ExtraBold.woff
|
236
|
+
- themes/modern/fonts/OpenSans.ExtraBoldItalic.woff
|
237
|
+
- themes/modern/fonts/OpenSans.Italic.woff
|
238
|
+
- themes/modern/fonts/OpenSans.Light.woff
|
239
|
+
- themes/modern/fonts/OpenSans.LightItalic.woff
|
240
|
+
- themes/modern/fonts/OpenSans.Regular.woff
|
241
|
+
- themes/modern/fonts/OpenSans.Semibold.woff
|
242
|
+
- themes/modern/fonts/OpenSans.SemiboldItalic.woff
|
243
|
+
- themes/modern/fonts/PTMono.woff
|
244
|
+
- themes/modern/fonts/PTSans.Bold.Italic.woff
|
245
|
+
- themes/modern/fonts/PTSans.Bold.woff
|
246
|
+
- themes/modern/fonts/PTSans.Italic.woff
|
247
|
+
- themes/modern/fonts/PTSans.Narrow.Bold.woff
|
248
|
+
- themes/modern/fonts/PTSans.woff
|
249
|
+
- themes/modern/fonts/Raleway.Thin.woff
|
250
|
+
- themes/modern/fonts/STIXGeneral.Bold.woff
|
251
|
+
- themes/modern/fonts/STIXGeneral.BoldItalic.woff
|
252
|
+
- themes/modern/fonts/STIXGeneral.Italic.woff
|
253
|
+
- themes/modern/fonts/STIXGeneral.Regular.woff
|
254
|
+
- themes/modern/fonts/YanoneKaffeesatz.Bold.woff
|
255
|
+
- themes/modern/fonts/YanoneKaffeesatz.ExtraLight.woff
|
256
|
+
- themes/modern/fonts/YanoneKaffeesatz.Light.woff
|
257
|
+
- themes/modern/fonts/YanoneKaffeesatz.Regular.woff
|
258
|
+
- themes/modern/images/cc/by.svg
|
259
|
+
- themes/modern/images/cc/cc-white.svg
|
260
|
+
- themes/modern/images/cc/cc.svg
|
261
|
+
- themes/modern/images/cc/nc-eu.svg
|
262
|
+
- themes/modern/images/cc/nc-jp.svg
|
263
|
+
- themes/modern/images/cc/nc.svg
|
264
|
+
- themes/modern/images/cc/nd.svg
|
265
|
+
- themes/modern/images/cc/pd.svg
|
266
|
+
- themes/modern/images/cc/remix.svg
|
267
|
+
- themes/modern/images/cc/sa.svg
|
268
|
+
- themes/modern/images/cc/sampling.plus.svg
|
269
|
+
- themes/modern/images/cc/sampling.svg
|
270
|
+
- themes/modern/images/cc/share.svg
|
271
|
+
- themes/modern/images/cc/zero.svg
|
272
|
+
- themes/modern/images/flickr.svg
|
273
|
+
- themes/modern/images/mesh.png
|
274
|
+
- themes/modern/images/mesh@2x.png
|
275
|
+
- themes/modern/images/progress-grayDark.svg
|
276
|
+
- themes/modern/images/progress.svg
|
277
|
+
- themes/modern/index.erb
|
278
|
+
- themes/modern/js/highcharts.js
|
279
|
+
- themes/modern/js/jquery-2.1.0.min.js
|
280
|
+
- themes/modern/js/script.coffee
|
281
|
+
- themes/modern/js/script.js
|
282
|
+
- themes/modern/styles/_box.scss
|
283
|
+
- themes/modern/styles/_figure.scss
|
284
|
+
- themes/modern/styles/_full.scss
|
285
|
+
- themes/modern/styles/_increment.scss
|
286
|
+
- themes/modern/styles/_list.scss
|
287
|
+
- themes/modern/styles/_progress.scss
|
288
|
+
- themes/modern/styles/defaults.scss
|
289
|
+
- themes/modern/styles/fonts.scss
|
290
|
+
- themes/modern/styles/pygments/_solarized.scss
|
291
|
+
- themes/modern/styles/pygments/colorful.scss
|
292
|
+
- themes/modern/styles/pygments/github.scss
|
293
|
+
- themes/modern/styles/pygments/solarized-dark.scss
|
294
|
+
- themes/modern/styles/pygments/solarized-light.scss
|
295
|
+
- themes/modern/styles/reset.scss
|
296
|
+
- themes/modern/styles/screen.scss
|
297
|
+
- themes/reveal/README
|
298
|
+
- themes/reveal/css/main.css
|
299
|
+
- themes/reveal/css/reset.css
|
300
|
+
- themes/reveal/index.erb
|
301
|
+
- themes/reveal/js/classList.js
|
302
|
+
- themes/reveal/js/head.min.js
|
303
|
+
- themes/reveal/js/reveal.js
|
304
|
+
- themes/shower/README
|
305
|
+
- themes/shower/css/fonts.css
|
306
|
+
- themes/shower/css/reset.css
|
307
|
+
- themes/shower/css/style.css
|
308
|
+
- themes/shower/images/grid.png
|
309
|
+
- themes/shower/images/linen.png
|
310
|
+
- themes/shower/images/ribbon.svg
|
311
|
+
- themes/shower/index.erb
|
312
|
+
- themes/shower/js/script.js
|
313
|
+
- themes/template/README
|
314
|
+
- themes/template/css/reset.css
|
315
|
+
- themes/template/index.erb
|
316
|
+
- themes/template/js/prefixfree.min.js
|
317
|
+
homepage: http://github.com/DSIW/slideoff
|
318
|
+
licenses:
|
319
|
+
- MIT
|
320
|
+
metadata: {}
|
321
|
+
post_install_message:
|
322
|
+
rdoc_options: []
|
323
|
+
require_paths:
|
324
|
+
- lib
|
325
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
326
|
+
requirements:
|
327
|
+
- - ">="
|
328
|
+
- !ruby/object:Gem::Version
|
329
|
+
version: '0'
|
330
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
331
|
+
requirements:
|
332
|
+
- - ">="
|
333
|
+
- !ruby/object:Gem::Version
|
334
|
+
version: '0'
|
335
|
+
requirements: []
|
336
|
+
rubyforge_project:
|
337
|
+
rubygems_version: 2.2.2
|
338
|
+
signing_key:
|
339
|
+
specification_version: 4
|
340
|
+
summary: Slideoff is a presentation tool. You write some slides in markdown, choose
|
341
|
+
a style and it displays it in HTML5. With a browser in full-screen, you can make
|
342
|
+
amazing presentations!
|
343
|
+
test_files: []
|