parade 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. data/LICENSE +21 -0
  2. data/README.md +542 -0
  3. data/Rakefile +15 -0
  4. data/bin/parade +138 -0
  5. data/lib/parade.rb +43 -0
  6. data/lib/parade/commands/commands.rb +84 -0
  7. data/lib/parade/commands/generate_outline.rb +34 -0
  8. data/lib/parade/commands/generate_presentation.rb +34 -0
  9. data/lib/parade/commands/generate_rackup.rb +32 -0
  10. data/lib/parade/commands/html_output.rb +47 -0
  11. data/lib/parade/commands/render_from_template.rb +50 -0
  12. data/lib/parade/commands/static_html.rb +38 -0
  13. data/lib/parade/commands/static_pdf.rb +39 -0
  14. data/lib/parade/commands/unknown.rb +23 -0
  15. data/lib/parade/features/live_ruby.rb +18 -0
  16. data/lib/parade/features/pdf_presentation.rb +24 -0
  17. data/lib/parade/features/preshow.rb +11 -0
  18. data/lib/parade/helpers/encode_image.rb +24 -0
  19. data/lib/parade/helpers/template_generator.rb +130 -0
  20. data/lib/parade/metadata.rb +73 -0
  21. data/lib/parade/metadata/assignment.rb +38 -0
  22. data/lib/parade/metadata/css_classes.rb +22 -0
  23. data/lib/parade/metadata/html_id.rb +35 -0
  24. data/lib/parade/metadata/template.rb +31 -0
  25. data/lib/parade/parsers/dsl.rb +138 -0
  26. data/lib/parade/parsers/dsl_file_parser.rb +17 -0
  27. data/lib/parade/parsers/json_file_parser.rb +67 -0
  28. data/lib/parade/parsers/markdown_image_paths.rb +44 -0
  29. data/lib/parade/parsers/markdown_slide_splitter.rb +63 -0
  30. data/lib/parade/parsers/presentation_directory_parser.rb +36 -0
  31. data/lib/parade/parsers/presentation_file_parser.rb +27 -0
  32. data/lib/parade/parsers/presentation_filepath_parser.rb +35 -0
  33. data/lib/parade/parsers/slides_file_content_parser.rb +27 -0
  34. data/lib/parade/renderers/columns_renderer.rb +68 -0
  35. data/lib/parade/renderers/command_line_renderer.rb +142 -0
  36. data/lib/parade/renderers/html_with_pygments.rb +42 -0
  37. data/lib/parade/renderers/inline_images.rb +31 -0
  38. data/lib/parade/renderers/special_paragraph_renderer.rb +23 -0
  39. data/lib/parade/renderers/update_image_paths.rb +75 -0
  40. data/lib/parade/section.rb +183 -0
  41. data/lib/parade/server.rb +139 -0
  42. data/lib/parade/slide.rb +128 -0
  43. data/lib/parade/version.rb +3 -0
  44. data/lib/public/css/960.css +653 -0
  45. data/lib/public/css/fg.menu.css +114 -0
  46. data/lib/public/css/ghf_marked.css +180 -0
  47. data/lib/public/css/jquery-terminal.css +73 -0
  48. data/lib/public/css/onepage.css +62 -0
  49. data/lib/public/css/parade.css +450 -0
  50. data/lib/public/css/pdf.css +13 -0
  51. data/lib/public/css/reset.css +53 -0
  52. data/lib/public/css/spinner_bar.gif +0 -0
  53. data/lib/public/css/theme/images/ui-bg_diagonals-small_100_f0efea_40x40.png +0 -0
  54. data/lib/public/css/theme/images/ui-bg_flat_35_f0f0f0_40x100.png +0 -0
  55. data/lib/public/css/theme/images/ui-bg_glass_55_fcf0ba_1x400.png +0 -0
  56. data/lib/public/css/theme/images/ui-bg_glow-ball_25_2e2e28_600x600.png +0 -0
  57. data/lib/public/css/theme/images/ui-bg_highlight-soft_100_f0efea_1x100.png +0 -0
  58. data/lib/public/css/theme/images/ui-bg_highlight-soft_25_327E04_1x100.png +0 -0
  59. data/lib/public/css/theme/images/ui-bg_highlight-soft_25_5A9D1A_1x100.png +0 -0
  60. data/lib/public/css/theme/images/ui-bg_highlight-soft_95_ffedad_1x100.png +0 -0
  61. data/lib/public/css/theme/images/ui-bg_inset-soft_22_3b3b35_1x100.png +0 -0
  62. data/lib/public/css/theme/images/ui-icons_808080_256x240.png +0 -0
  63. data/lib/public/css/theme/images/ui-icons_8DC262_256x240.png +0 -0
  64. data/lib/public/css/theme/images/ui-icons_cd0a0a_256x240.png +0 -0
  65. data/lib/public/css/theme/images/ui-icons_e7e6e4_256x240.png +0 -0
  66. data/lib/public/css/theme/images/ui-icons_eeeeee_256x240.png +0 -0
  67. data/lib/public/css/theme/images/ui-icons_ffffff_256x240.png +0 -0
  68. data/lib/public/css/theme/ui.accordion.css +9 -0
  69. data/lib/public/css/theme/ui.all.css +2 -0
  70. data/lib/public/css/theme/ui.base.css +9 -0
  71. data/lib/public/css/theme/ui.core.css +37 -0
  72. data/lib/public/css/theme/ui.datepicker.css +62 -0
  73. data/lib/public/css/theme/ui.dialog.css +13 -0
  74. data/lib/public/css/theme/ui.progressbar.css +4 -0
  75. data/lib/public/css/theme/ui.resizable.css +13 -0
  76. data/lib/public/css/theme/ui.slider.css +17 -0
  77. data/lib/public/css/theme/ui.tabs.css +9 -0
  78. data/lib/public/css/theme/ui.theme.css +245 -0
  79. data/lib/public/favicon.ico +0 -0
  80. data/lib/public/js/coffee-script.js +8 -0
  81. data/lib/public/js/fg.menu.js +645 -0
  82. data/lib/public/js/jTypeWriter.js +26 -0
  83. data/lib/public/js/jquery-1.4.2.js +6240 -0
  84. data/lib/public/js/jquery-print.js +109 -0
  85. data/lib/public/js/jquery-pubsub.js +27 -0
  86. data/lib/public/js/jquery-terminal.js +2712 -0
  87. data/lib/public/js/jquery.batchImageLoad.js +56 -0
  88. data/lib/public/js/jquery.cycle.all.js +1284 -0
  89. data/lib/public/js/keyboard.js +733 -0
  90. data/lib/public/js/parade-code-execution.js +122 -0
  91. data/lib/public/js/parade-command-input.js +16 -0
  92. data/lib/public/js/parade-command-visor.js +92 -0
  93. data/lib/public/js/parade-keyboard-input.js +54 -0
  94. data/lib/public/js/parade.js +675 -0
  95. data/lib/public/js/spine.js +904 -0
  96. data/lib/templates/config.ru.erb +4 -0
  97. data/lib/templates/showoff.erb +27 -0
  98. data/lib/templates/slides.md.erb +25 -0
  99. data/lib/views/header.erb +73 -0
  100. data/lib/views/index.erb +53 -0
  101. data/lib/views/inline_css.erb +3 -0
  102. data/lib/views/inline_js.erb +3 -0
  103. data/lib/views/onepage.erb +17 -0
  104. data/lib/views/pdf.erb +17 -0
  105. data/lib/views/slide.erb +5 -0
  106. metadata +317 -0
@@ -0,0 +1,4 @@
1
+ require "parade"
2
+ require 'rubypython'
3
+ RubyPython.configure :python_exe => 'python2.6'
4
+ run Parade::Server.new
@@ -0,0 +1,27 @@
1
+
2
+ title "<%= title %>"
3
+
4
+ description "<%= description %>"
5
+
6
+ #
7
+ # section "Introduction" do
8
+ # slides "intro.md"
9
+ # end
10
+ #
11
+ # section "Code Samples" do
12
+ # slides "code_sample.md"
13
+ # slides "code_samples"
14
+ # end
15
+ #
16
+ # section "Conclusion" do
17
+ # slides "closing.md"
18
+ # end
19
+
20
+ # Or if you are interested solely in linking to slides without sections you can
21
+ # use the following:
22
+ #
23
+ # slides "intro.md"
24
+ # slides "code_sample.md"
25
+ # slides "code_samples"
26
+ # slides "closing.md"
27
+ #
@@ -0,0 +1,25 @@
1
+ !SLIDE #html-element-id css-class another-css-class
2
+
3
+ ## [markdown](http://daringfireball.net/projects/markdown/)
4
+
5
+ .notes This would be a note only the presenter would see in presentation view which has been removed until it is working properly.
6
+
7
+ !SLIDE center incremental
8
+
9
+ ## [Special Layout CSS Classes](https://github.com/burtlo/parade#defined-classes)
10
+
11
+ !SLIDE
12
+
13
+ ## [Slide Transitions](https://github.com/burtlo/parade#available-transitions)
14
+
15
+ !SLIDE #code-sample transition=fade
16
+
17
+ ## Github Flavored Markdown
18
+
19
+ ```ruby
20
+ class Fixnum
21
+ def ounces
22
+ self
23
+ end
24
+ end
25
+ ```
@@ -0,0 +1,73 @@
1
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
2
+ <title><%= title %></title>
3
+
4
+ <meta name="viewport" content="width=device-width"/>
5
+
6
+ <!-- Set up the initial stylesheet -->
7
+
8
+ <%= css 'reset.css' %>
9
+ <%= css 'parade.css' %>
10
+
11
+ <!-- JavaScript Powers This Ship! -->
12
+
13
+ <%= js 'jquery-1.4.2.js' %>
14
+
15
+ <!-- The Parade JS uses a lot of publish and subscribe event structure -->
16
+ <%= js 'jquery-pubsub.js' %>
17
+
18
+ <!-- Provide a sane interface for defining keyboard events -->
19
+ <%= js 'keyboard.js' %>
20
+
21
+ <!-- Giving Structure to the Javascript - this powers a lot of the Parade
22
+ code that is defined. -->
23
+
24
+ <%= js 'spine.js' %>
25
+
26
+ <!-- Slide Transition support provided by jquery-cycle ... -->
27
+
28
+ <%= js 'jquery.cycle.all.js' %>
29
+
30
+ <!-- Ensures that all images in the presentation have been loaded before
31
+ the presentation is ready to start. -->
32
+
33
+ <%= js 'jquery.batchImageLoad.js' %>
34
+
35
+ <!-- Results from the live executed code is powered by this little js -->
36
+ <%= js 'jquery-print.js' %>
37
+
38
+
39
+ <!-- Provides Command-Line Console Example Support -->
40
+ <%= js 'jTypeWriter.js' %>
41
+
42
+ <!-- Provides Executable CoffeeScript Support -->
43
+
44
+ <%= js 'coffee-script.js' %>
45
+
46
+ <!-- Provides the command visor functionality to parade -->
47
+
48
+ <%= js 'jquery-terminal.js' %>
49
+
50
+ <!-- Core Parade Library Code -->
51
+
52
+ <%= js 'parade.js' %>
53
+ <%= js 'parade-code-execution.js' %>
54
+
55
+ <%= js 'parade-keyboard-input.js' %>
56
+
57
+ <%= js 'parade-command-input.js' %>
58
+ <%= js 'parade-command-visor.js' %>
59
+
60
+ <!-- Powers the Table of Contents Menu - this allows you to move through
61
+ the slides -->
62
+
63
+ <%= js 'fg.menu.js' %>
64
+ <%= css 'fg.menu.css' %>
65
+ <%= css 'theme/ui.all.css' %>
66
+ <%= css 'jquery-terminal.css' %>
67
+
68
+ <!-- Required for the Syntax Highlighting of Code to Work -->
69
+
70
+ <%= css 'ghf_marked.css' %>
71
+
72
+ <%= custom_css_files %>
73
+ <%= custom_js_files %>
@@ -0,0 +1,53 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <%= erb :header %>
7
+ <%= css '960.css' %>
8
+ </head>
9
+
10
+ <body>
11
+
12
+ <a tabindex="0" href="#search-engines" class="fg-button fg-button-icon-right ui-widget ui-state-default ui-corner-all" id="navmenu"><span class="ui-icon ui-icon-triangle-1-s"></span>slides</a>
13
+ <div id="navigation" class="hidden"></div>
14
+
15
+ <div id="help">
16
+ <table>
17
+ <tr><td class="key">h, ?</td><td>toggle help (this)</td></tr>
18
+ <tr><td class="key">space, &rarr;</td><td>next slide</td></tr>
19
+ <tr><td class="key">shift-space, &larr;</td><td>previous slide</td></tr>
20
+ <tr><td class="key">`</td><td>open/close command visor</td></tr>
21
+ <tr><td class="key">d</td><td>toggle debug mode</td></tr>
22
+ <tr><td class="key">c, t</td><td>table of contents (vi)</td></tr>
23
+ <tr><td class="key">f</td><td>toggle footer</td></tr>
24
+ <tr><td class="key">r</td><td>reload slides</td></tr>
25
+ <tr><td class="key">n</td><td>toggle notes</td></tr>
26
+ <tr><td class="key">p</td><td>run preshow</td></tr>
27
+ </table>
28
+ </div>
29
+
30
+ <div class="buttonNav">
31
+ <input class="prev" type="submit" value="prev"/>
32
+ <input class="next" type="submit" value="next"/>
33
+ </div>
34
+
35
+ <div id="tilda"></div>
36
+ <div id="codeResults" class='results' style='display: none;'></div>
37
+
38
+ <div id="preso">loading presentation...</div>
39
+ <div id="footer">
40
+ <span id="slideInfo"></span>
41
+ <span id="debugInfo"></span>
42
+ <span id="notesInfo"></span>
43
+ </div>
44
+
45
+ <div id="slides" class="offscreen" <%= 'style="display:none;"' if slides %>>
46
+ <%= slides %>
47
+ </div>
48
+ <div id="pauseScreen">
49
+ <%= pause_message %>
50
+ </div>
51
+
52
+ </body>
53
+ </html>
@@ -0,0 +1,3 @@
1
+ <style type="text/css">
2
+ <%= content %>
3
+ </style>
@@ -0,0 +1,3 @@
1
+ <script type="text/javascript">
2
+ <%= content %>
3
+ </script>
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <%= erb :header %>
7
+ <%= css 'onepage.css' %>
8
+ </head>
9
+
10
+ <body>
11
+
12
+ <div id="slides">
13
+ <%= slides %>
14
+ </div>
15
+
16
+ </body>
17
+ </html>
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <%= erb :header %>
7
+ <%= css 'onepage.css' %>
8
+ </head>
9
+
10
+ <body>
11
+
12
+ <div id="slides">
13
+ <%= slides %>
14
+ </div>
15
+
16
+ </body>
17
+ </html>
@@ -0,0 +1,5 @@
1
+ <div id='<%= id %>' class='slide <%= slide_classes %>' data-transition='<%= transition %>'>
2
+ <div class='content <%= content_classes %>' ref='<%= reference %>'>
3
+ <%= content_as_html %>
4
+ </div>
5
+ </div>
metadata ADDED
@@ -0,0 +1,317 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: parade
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.8.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Scott Chacon
9
+ - Franklin Webber
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2011-09-10 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: sinatra
17
+ requirement: !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: '1.3'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ~>
29
+ - !ruby/object:Gem::Version
30
+ version: '1.3'
31
+ - !ruby/object:Gem::Dependency
32
+ name: redcarpet
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: nokogiri
49
+ requirement: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ! '>='
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ - !ruby/object:Gem::Dependency
64
+ name: json
65
+ requirement: !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ! '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ type: :runtime
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ! '>='
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ - !ruby/object:Gem::Dependency
80
+ name: gli
81
+ requirement: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ~>
85
+ - !ruby/object:Gem::Version
86
+ version: 1.6.0
87
+ type: :runtime
88
+ prerelease: false
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ~>
93
+ - !ruby/object:Gem::Version
94
+ version: 1.6.0
95
+ - !ruby/object:Gem::Dependency
96
+ name: parslet
97
+ requirement: !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - '='
101
+ - !ruby/object:Gem::Version
102
+ version: 1.4.0
103
+ type: :runtime
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - '='
109
+ - !ruby/object:Gem::Version
110
+ version: 1.4.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubypython
113
+ requirement: !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - '='
117
+ - !ruby/object:Gem::Version
118
+ version: 0.5.1
119
+ type: :runtime
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ none: false
123
+ requirements:
124
+ - - '='
125
+ - !ruby/object:Gem::Version
126
+ version: 0.5.1
127
+ - !ruby/object:Gem::Dependency
128
+ name: pygments.rb
129
+ requirement: !ruby/object:Gem::Requirement
130
+ none: false
131
+ requirements:
132
+ - - '='
133
+ - !ruby/object:Gem::Version
134
+ version: 0.2.3
135
+ type: :runtime
136
+ prerelease: false
137
+ version_requirements: !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - '='
141
+ - !ruby/object:Gem::Version
142
+ version: 0.2.3
143
+ - !ruby/object:Gem::Dependency
144
+ name: css_parser
145
+ requirement: !ruby/object:Gem::Requirement
146
+ none: false
147
+ requirements:
148
+ - - ! '>='
149
+ - !ruby/object:Gem::Version
150
+ version: '0'
151
+ type: :runtime
152
+ prerelease: false
153
+ version_requirements: !ruby/object:Gem::Requirement
154
+ none: false
155
+ requirements:
156
+ - - ! '>='
157
+ - !ruby/object:Gem::Version
158
+ version: '0'
159
+ - !ruby/object:Gem::Dependency
160
+ name: mg
161
+ requirement: !ruby/object:Gem::Requirement
162
+ none: false
163
+ requirements:
164
+ - - ! '>='
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ type: :development
168
+ prerelease: false
169
+ version_requirements: !ruby/object:Gem::Requirement
170
+ none: false
171
+ requirements:
172
+ - - ! '>='
173
+ - !ruby/object:Gem::Version
174
+ version: '0'
175
+ description: ! " Parade is a Sinatra web app that reads simple configuration files
176
+ for a\n presentation. It is sort of like a Keynote web app engine. I am using
177
+ it\n to do all my talks in 2010, because I have a deep hatred in my heart for\n
178
+ \ Keynote and yet it is by far the best in the field.\n\n The idea is that you
179
+ setup your slide files in section subdirectories and\n then startup the parade
180
+ server in that directory. It will read in your\n parade file for which sections
181
+ go in which order and then will give\n you a URL to present from.\n"
182
+ email: franklin.webber@gmail.com
183
+ executables:
184
+ - parade
185
+ extensions: []
186
+ extra_rdoc_files: []
187
+ files:
188
+ - README.md
189
+ - Rakefile
190
+ - LICENSE
191
+ - bin/parade
192
+ - lib/parade/commands/commands.rb
193
+ - lib/parade/commands/generate_outline.rb
194
+ - lib/parade/commands/generate_presentation.rb
195
+ - lib/parade/commands/generate_rackup.rb
196
+ - lib/parade/commands/html_output.rb
197
+ - lib/parade/commands/render_from_template.rb
198
+ - lib/parade/commands/static_html.rb
199
+ - lib/parade/commands/static_pdf.rb
200
+ - lib/parade/commands/unknown.rb
201
+ - lib/parade/features/live_ruby.rb
202
+ - lib/parade/features/pdf_presentation.rb
203
+ - lib/parade/features/preshow.rb
204
+ - lib/parade/helpers/encode_image.rb
205
+ - lib/parade/helpers/template_generator.rb
206
+ - lib/parade/metadata/assignment.rb
207
+ - lib/parade/metadata/css_classes.rb
208
+ - lib/parade/metadata/html_id.rb
209
+ - lib/parade/metadata/template.rb
210
+ - lib/parade/metadata.rb
211
+ - lib/parade/parsers/dsl.rb
212
+ - lib/parade/parsers/dsl_file_parser.rb
213
+ - lib/parade/parsers/json_file_parser.rb
214
+ - lib/parade/parsers/markdown_image_paths.rb
215
+ - lib/parade/parsers/markdown_slide_splitter.rb
216
+ - lib/parade/parsers/presentation_directory_parser.rb
217
+ - lib/parade/parsers/presentation_file_parser.rb
218
+ - lib/parade/parsers/presentation_filepath_parser.rb
219
+ - lib/parade/parsers/slides_file_content_parser.rb
220
+ - lib/parade/renderers/columns_renderer.rb
221
+ - lib/parade/renderers/command_line_renderer.rb
222
+ - lib/parade/renderers/html_with_pygments.rb
223
+ - lib/parade/renderers/inline_images.rb
224
+ - lib/parade/renderers/special_paragraph_renderer.rb
225
+ - lib/parade/renderers/update_image_paths.rb
226
+ - lib/parade/section.rb
227
+ - lib/parade/server.rb
228
+ - lib/parade/slide.rb
229
+ - lib/parade/version.rb
230
+ - lib/parade.rb
231
+ - lib/public/css/960.css
232
+ - lib/public/css/fg.menu.css
233
+ - lib/public/css/ghf_marked.css
234
+ - lib/public/css/jquery-terminal.css
235
+ - lib/public/css/onepage.css
236
+ - lib/public/css/parade.css
237
+ - lib/public/css/pdf.css
238
+ - lib/public/css/reset.css
239
+ - lib/public/css/spinner_bar.gif
240
+ - lib/public/css/theme/images/ui-bg_diagonals-small_100_f0efea_40x40.png
241
+ - lib/public/css/theme/images/ui-bg_flat_35_f0f0f0_40x100.png
242
+ - lib/public/css/theme/images/ui-bg_glass_55_fcf0ba_1x400.png
243
+ - lib/public/css/theme/images/ui-bg_glow-ball_25_2e2e28_600x600.png
244
+ - lib/public/css/theme/images/ui-bg_highlight-soft_100_f0efea_1x100.png
245
+ - lib/public/css/theme/images/ui-bg_highlight-soft_25_327E04_1x100.png
246
+ - lib/public/css/theme/images/ui-bg_highlight-soft_25_5A9D1A_1x100.png
247
+ - lib/public/css/theme/images/ui-bg_highlight-soft_95_ffedad_1x100.png
248
+ - lib/public/css/theme/images/ui-bg_inset-soft_22_3b3b35_1x100.png
249
+ - lib/public/css/theme/images/ui-icons_808080_256x240.png
250
+ - lib/public/css/theme/images/ui-icons_8DC262_256x240.png
251
+ - lib/public/css/theme/images/ui-icons_cd0a0a_256x240.png
252
+ - lib/public/css/theme/images/ui-icons_e7e6e4_256x240.png
253
+ - lib/public/css/theme/images/ui-icons_eeeeee_256x240.png
254
+ - lib/public/css/theme/images/ui-icons_ffffff_256x240.png
255
+ - lib/public/css/theme/ui.accordion.css
256
+ - lib/public/css/theme/ui.all.css
257
+ - lib/public/css/theme/ui.base.css
258
+ - lib/public/css/theme/ui.core.css
259
+ - lib/public/css/theme/ui.datepicker.css
260
+ - lib/public/css/theme/ui.dialog.css
261
+ - lib/public/css/theme/ui.progressbar.css
262
+ - lib/public/css/theme/ui.resizable.css
263
+ - lib/public/css/theme/ui.slider.css
264
+ - lib/public/css/theme/ui.tabs.css
265
+ - lib/public/css/theme/ui.theme.css
266
+ - lib/public/favicon.ico
267
+ - lib/public/js/coffee-script.js
268
+ - lib/public/js/fg.menu.js
269
+ - lib/public/js/jquery-1.4.2.js
270
+ - lib/public/js/jquery-print.js
271
+ - lib/public/js/jquery-pubsub.js
272
+ - lib/public/js/jquery-terminal.js
273
+ - lib/public/js/jquery.batchImageLoad.js
274
+ - lib/public/js/jquery.cycle.all.js
275
+ - lib/public/js/jTypeWriter.js
276
+ - lib/public/js/keyboard.js
277
+ - lib/public/js/parade-code-execution.js
278
+ - lib/public/js/parade-command-input.js
279
+ - lib/public/js/parade-command-visor.js
280
+ - lib/public/js/parade-keyboard-input.js
281
+ - lib/public/js/parade.js
282
+ - lib/public/js/spine.js
283
+ - lib/templates/config.ru.erb
284
+ - lib/templates/showoff.erb
285
+ - lib/templates/slides.md.erb
286
+ - lib/views/header.erb
287
+ - lib/views/index.erb
288
+ - lib/views/inline_css.erb
289
+ - lib/views/inline_js.erb
290
+ - lib/views/onepage.erb
291
+ - lib/views/pdf.erb
292
+ - lib/views/slide.erb
293
+ homepage: http://github.com/burtlo/parade
294
+ licenses: []
295
+ post_install_message:
296
+ rdoc_options: []
297
+ require_paths:
298
+ - lib
299
+ required_ruby_version: !ruby/object:Gem::Requirement
300
+ none: false
301
+ requirements:
302
+ - - ! '>='
303
+ - !ruby/object:Gem::Version
304
+ version: '0'
305
+ required_rubygems_version: !ruby/object:Gem::Requirement
306
+ none: false
307
+ requirements:
308
+ - - ! '>='
309
+ - !ruby/object:Gem::Version
310
+ version: '0'
311
+ requirements: []
312
+ rubyforge_project:
313
+ rubygems_version: 1.8.24
314
+ signing_key:
315
+ specification_version: 3
316
+ summary: The best damn presentation software a developer could ever love.
317
+ test_files: []