slideshow 2.3.0 → 2.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/HISTORY.md +4 -0
  3. data/Manifest.txt +3 -48
  4. data/{README.markdown → README.md} +134 -132
  5. data/Rakefile +26 -17
  6. data/lib/slideshow.rb +19 -97
  7. data/lib/slideshow/cli/main.rb +38 -20
  8. data/lib/slideshow/cli/main_utils.rb +10 -4
  9. data/lib/slideshow/cli/opts.rb +3 -1
  10. data/lib/slideshow/cli/version.rb +26 -0
  11. metadata +63 -147
  12. data/History.markdown +0 -171
  13. data/config/slideshow.builtin.yml +0 -8
  14. data/config/slideshow.index.yml +0 -61
  15. data/config/slideshow.yml +0 -76
  16. data/lib/slideshow/cli/commands/fetch.rb +0 -121
  17. data/lib/slideshow/cli/commands/gen.rb +0 -330
  18. data/lib/slideshow/cli/commands/gen_templates.rb +0 -52
  19. data/lib/slideshow/cli/commands/list.rb +0 -70
  20. data/lib/slideshow/cli/commands/plugins.rb +0 -44
  21. data/lib/slideshow/cli/commands/quick.rb +0 -86
  22. data/lib/slideshow/config.rb +0 -241
  23. data/lib/slideshow/filters/debug_filter.rb +0 -74
  24. data/lib/slideshow/filters/headers_filter.rb +0 -45
  25. data/lib/slideshow/filters/slide_filter.rb +0 -113
  26. data/lib/slideshow/filters/text_filter.rb +0 -140
  27. data/lib/slideshow/headers.rb +0 -87
  28. data/lib/slideshow/helpers/background_helper.rb +0 -121
  29. data/lib/slideshow/helpers/capture_helper.rb +0 -136
  30. data/lib/slideshow/helpers/directive_helper.rb +0 -43
  31. data/lib/slideshow/helpers/markdown_helper.rb +0 -18
  32. data/lib/slideshow/helpers/source_helper.rb +0 -39
  33. data/lib/slideshow/helpers/step_helper.rb +0 -33
  34. data/lib/slideshow/helpers/syntax/coderay_helper.rb +0 -84
  35. data/lib/slideshow/helpers/syntax/sh_helper.rb +0 -61
  36. data/lib/slideshow/helpers/syntax/uv_helper.rb +0 -90
  37. data/lib/slideshow/helpers/text_helper.rb +0 -130
  38. data/lib/slideshow/manifest_helpers.rb +0 -94
  39. data/lib/slideshow/markup/markdown.rb +0 -18
  40. data/lib/slideshow/markup/mediawiki.rb +0 -38
  41. data/lib/slideshow/markup/rest.rb +0 -17
  42. data/lib/slideshow/markup/textile.rb +0 -68
  43. data/lib/slideshow/plugin_helpers.rb +0 -62
  44. data/lib/slideshow/slide.rb +0 -118
  45. data/lib/slideshow/version.rb +0 -3
  46. data/templates/s6.txt +0 -27
  47. data/templates/s6.txt.gen +0 -19
  48. data/templates/s6/jquery.js +0 -8176
  49. data/templates/s6/jquery.microsoft.js +0 -31
  50. data/templates/s6/jquery.slideshow.js +0 -534
  51. data/templates/s6/print.css +0 -1
  52. data/templates/s6/projection.css +0 -109
  53. data/templates/s6/screen.css +0 -50
  54. data/templates/slides.html.erb +0 -55
  55. data/templates/slides.pdf.html.erb +0 -62
  56. data/templates/style.css.erb +0 -91
  57. data/templates/welcome.text +0 -167
  58. data/templates/welcome.txt.quick +0 -6
@@ -1,32 +1,55 @@
1
1
  # encoding: utf-8
2
2
 
3
+ ### NOTE: wrap gli config into a class
4
+ ## see github.com/davetron5000/gli/issues/153
3
5
 
4
- require 'gli'
5
6
 
6
- require 'slideshow/cli/main_utils'
7
+ module Slideshow
7
8
 
9
+ class Tool
10
+ def initialize
11
+ LogUtils::Logger.root.level = :info # set logging level to info
12
+ end
8
13
 
9
- include GLI::App
14
+ def run( args )
15
+ puts SlideshowCli.banner
16
+ Toolii.run( args )
17
+ end
18
+ end
10
19
 
11
- program_desc 'Slide Show (S9) - a free web alternative to PowerPoint and Keynote in Ruby'
12
20
 
13
- version Slideshow::VERSION
21
+ class Toolii
22
+ extend GLI::App
14
23
 
24
+ def self.logger=(value) @@logger=value; end
25
+ def self.logger() @@logger; end
15
26
 
16
- ## some setup code
27
+ ## todo: find a better name e.g. change to settings? config? safe_opts? why? why not?
28
+ def self.opts=(value) @@opts = value; end
29
+ def self.opts() @@opts; end
17
30
 
18
- LogUtils::Logger.root.level = :info # set logging level to info
31
+ def self.config=(value) @@config = value; end
32
+ def self.config() @@config; end
19
33
 
20
- logger = LogUtils::Logger.root
34
+ def self.headers=(value) @@headers = value; end
35
+ def self.headers() @@headers; end
21
36
 
22
- opts = Slideshow::Opts.new
37
+ ## some setup code
38
+ logger = LogUtils::Logger.root
39
+ opts = Slideshow::Opts.new
23
40
  config = Slideshow::Config.new( opts )
24
41
  headers = Slideshow::Headers.new( config ) ## NB: needed for build - move into build - why? why not?
25
42
 
26
-
27
43
  config.load
28
44
 
29
45
 
46
+
47
+ program_desc 'Slide Show (S9) - a free web alternative to PowerPoint and Keynote in Ruby'
48
+
49
+ version SlideshowCli::VERSION
50
+
51
+
52
+ =begin
30
53
  ## gets all merged in one paragraph - does not honor whitespace
31
54
  xxx_program_long_desc = <<EOS
32
55
 
@@ -51,6 +74,7 @@ Further information:
51
74
  http://slideshow-s9.github.io
52
75
 
53
76
  EOS
77
+ =end
54
78
 
55
79
 
56
80
  ## "global" options (switches/flags)
@@ -169,15 +193,6 @@ command [:update,:u] do |c|
169
193
  end
170
194
 
171
195
 
172
- ######
173
- # add command :g,:gen,:generate ??? why? why not? better just git clone repos
174
- # or use command copy?
175
- #
176
- # cmd.on( '-g', '--generate', 'Generate Slide Show Templates (using built-in S6 Pack)' ) { opts.generate = true }
177
- #
178
- # GenTemplates.new( opts, config ).run ### todo: remove opts
179
-
180
-
181
196
  desc 'Generate quick starter sample'
182
197
  command [:new,:n] do |c|
183
198
 
@@ -276,4 +291,7 @@ on_error do |e|
276
291
  end
277
292
 
278
293
 
279
- exit run(ARGV)
294
+ #### exit run(ARGV) ## note: use Toolii.run( ARGV ) outside of class
295
+
296
+ end # class Toolii
297
+ end # module Slideshow
@@ -79,12 +79,18 @@ Gems versions:
79
79
  - fetcher #{Fetcher::VERSION}
80
80
  - markdown #{Markdown::VERSION}
81
81
  - textutils #{TextUtils::VERSION}
82
+ - logutils #{LogKernel::VERSION}
82
83
  - props #{Props::VERSION}
83
84
 
84
- Env home: #{Env.home}
85
- Slideshow config: #{config.config_dir}
86
- Slideshow cache: #{config.cache_dir}
87
- Slideshow root: #{Slideshow.root}
85
+ - slideshow-models #{Slideshow::VERSION}
86
+ - slideshow-templates #{SlideshowTemplates::VERSION}
87
+ - slideshow #{SlideshowCli::VERSION}
88
+
89
+ Env home: #{Env.home}
90
+ Slideshow config: #{config.config_dir}
91
+ Slideshow cache: #{config.cache_dir}
92
+ Slideshow root: #{Slideshow.root}
93
+ SlideshowTemplates root: #{SlideshowTemplates.root}
88
94
 
89
95
  EOS
90
96
 
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  module Slideshow
2
4
 
3
5
 
@@ -124,4 +126,4 @@ class Opts
124
126
 
125
127
  end # class Opts
126
128
 
127
- end # module Slideshow
129
+ end # module Slideshow
@@ -0,0 +1,26 @@
1
+ # encoding: utf-8
2
+
3
+ ###
4
+ # Note: Slideshow.version already used by core, that is, slideshow-models
5
+ #
6
+
7
+ module SlideshowCli
8
+
9
+ MAJOR = 2
10
+ MINOR = 4
11
+ PATCH = 0
12
+ VERSION = [MAJOR,MINOR,PATCH].join('.')
13
+
14
+ def self.version
15
+ VERSION
16
+ end
17
+
18
+ def self.root
19
+ "#{File.expand_path( File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) )}"
20
+ end
21
+
22
+ def self.banner
23
+ "slideshow/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
24
+ end
25
+
26
+ end # module SlideshowCli
metadata CHANGED
@@ -1,219 +1,135 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slideshow
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
5
- prerelease:
4
+ version: 2.4.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Gerald Bauer
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-07-16 00:00:00.000000000 Z
11
+ date: 2014-12-10 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
- name: props
16
- requirement: &88039630 !ruby/object:Gem::Requirement
17
- none: false
14
+ name: slideshow-models
15
+ requirement: !ruby/object:Gem::Requirement
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
- version: 1.0.0
19
+ version: 2.4.0
22
20
  type: :runtime
23
21
  prerelease: false
24
- version_requirements: *88039630
25
- - !ruby/object:Gem::Dependency
26
- name: markdown
27
- requirement: &88039410 !ruby/object:Gem::Requirement
28
- none: false
22
+ version_requirements: !ruby/object:Gem::Requirement
29
23
  requirements:
30
- - - ! '>='
24
+ - - ">="
31
25
  - !ruby/object:Gem::Version
32
- version: 1.0.0
33
- type: :runtime
34
- prerelease: false
35
- version_requirements: *88039410
26
+ version: 2.4.0
36
27
  - !ruby/object:Gem::Dependency
37
- name: textutils
38
- requirement: &88039190 !ruby/object:Gem::Requirement
39
- none: false
28
+ name: slideshow-templates
29
+ requirement: !ruby/object:Gem::Requirement
40
30
  requirements:
41
- - - ! '>='
31
+ - - ">="
42
32
  - !ruby/object:Gem::Version
43
- version: 0.2.0
33
+ version: 2.4.1
44
34
  type: :runtime
45
35
  prerelease: false
46
- version_requirements: *88039190
47
- - !ruby/object:Gem::Dependency
48
- name: pakman
49
- requirement: &88038970 !ruby/object:Gem::Requirement
50
- none: false
36
+ version_requirements: !ruby/object:Gem::Requirement
51
37
  requirements:
52
- - - ! '>='
38
+ - - ">="
53
39
  - !ruby/object:Gem::Version
54
- version: 0.4.0
55
- type: :runtime
56
- prerelease: false
57
- version_requirements: *88038970
58
- - !ruby/object:Gem::Dependency
59
- name: activesupport
60
- requirement: &88038760 !ruby/object:Gem::Requirement
61
- none: false
62
- requirements:
63
- - - ! '>='
64
- - !ruby/object:Gem::Version
65
- version: 3.2.6
66
- type: :runtime
67
- prerelease: false
68
- version_requirements: *88038760
40
+ version: 2.4.1
69
41
  - !ruby/object:Gem::Dependency
70
- name: logutils
71
- requirement: &88038540 !ruby/object:Gem::Requirement
72
- none: false
42
+ name: gli
43
+ requirement: !ruby/object:Gem::Requirement
73
44
  requirements:
74
- - - ! '>='
45
+ - - ">="
75
46
  - !ruby/object:Gem::Version
76
- version: 0.6.0
47
+ version: 2.5.6
77
48
  type: :runtime
78
49
  prerelease: false
79
- version_requirements: *88038540
80
- - !ruby/object:Gem::Dependency
81
- name: gli
82
- requirement: &88038320 !ruby/object:Gem::Requirement
83
- none: false
50
+ version_requirements: !ruby/object:Gem::Requirement
84
51
  requirements:
85
- - - ! '>='
52
+ - - ">="
86
53
  - !ruby/object:Gem::Version
87
54
  version: 2.5.6
88
- type: :runtime
89
- prerelease: false
90
- version_requirements: *88038320
91
55
  - !ruby/object:Gem::Dependency
92
56
  name: rdoc
93
- requirement: &88038100 !ruby/object:Gem::Requirement
94
- none: false
57
+ requirement: !ruby/object:Gem::Requirement
95
58
  requirements:
96
- - - ~>
59
+ - - "~>"
97
60
  - !ruby/object:Gem::Version
98
- version: '3.10'
61
+ version: '4.0'
99
62
  type: :development
100
63
  prerelease: false
101
- version_requirements: *88038100
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '4.0'
102
69
  - !ruby/object:Gem::Dependency
103
70
  name: hoe
104
- requirement: &88037880 !ruby/object:Gem::Requirement
105
- none: false
71
+ requirement: !ruby/object:Gem::Requirement
106
72
  requirements:
107
- - - ~>
73
+ - - "~>"
108
74
  - !ruby/object:Gem::Version
109
- version: '3.3'
75
+ version: '3.13'
110
76
  type: :development
111
77
  prerelease: false
112
- version_requirements: *88037880
113
- description: ! "The Slide Show (S9) Ruby gem lets you create slide shows and author
114
- slides in plain text\r\nusing a wiki-style markup language that's easy-to-write
115
- and easy-to-read.\r\nThe Slide Show (S9) project also collects and welcomes themes
116
- and ships\r\n\"out-of-the-gem\" with built-in support for \"loss-free\" gradient
117
- vector graphics themes.\r\n\r\n~~~\r\nSYNOPSIS\r\n slideshow [global options]
118
- command [command options] [arguments...]\r\n\r\nVERSION\r\n 2.0.0\r\n\r\nGLOBAL
119
- OPTIONS\r\n -c, --config=PATH - Configuration Path (default: ~/.slideshow)\r\n
120
- \ --verbose - (Debug) Show debug messages\r\n --version - Show
121
- version\r\n\r\nCOMMANDS\r\n build, b - Build slideshow\r\n install,
122
- i - Install template pack\r\n list, ls, l - List installed template
123
- packs\r\n new, n - Generate quick starter sample\r\n about, a
124
- \ - (Debug) Show more version info\r\n help - Shows a
125
- list of commands or help for one command\r\n~~~"
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.13'
83
+ description: Slide Show (S9) - A Free Web Alternative to PowerPoint and Keynote in
84
+ Ruby
126
85
  email: webslideshow@googlegroups.com
127
86
  executables:
128
87
  - slideshow
129
88
  extensions: []
130
89
  extra_rdoc_files:
90
+ - HISTORY.md
131
91
  - Manifest.txt
132
- - templates/s6.txt
92
+ - README.md
133
93
  files:
134
- - History.markdown
94
+ - HISTORY.md
135
95
  - Manifest.txt
136
- - README.markdown
96
+ - README.md
137
97
  - Rakefile
138
98
  - bin/slideshow
139
- - config/slideshow.builtin.yml
140
- - config/slideshow.index.yml
141
- - config/slideshow.yml
142
99
  - lib/slideshow.rb
143
- - lib/slideshow/cli/commands/fetch.rb
144
- - lib/slideshow/cli/commands/gen.rb
145
- - lib/slideshow/cli/commands/gen_templates.rb
146
- - lib/slideshow/cli/commands/list.rb
147
- - lib/slideshow/cli/commands/plugins.rb
148
- - lib/slideshow/cli/commands/quick.rb
149
100
  - lib/slideshow/cli/main.rb
150
101
  - lib/slideshow/cli/main_utils.rb
151
102
  - lib/slideshow/cli/opts.rb
152
- - lib/slideshow/config.rb
153
- - lib/slideshow/filters/debug_filter.rb
154
- - lib/slideshow/filters/headers_filter.rb
155
- - lib/slideshow/filters/slide_filter.rb
156
- - lib/slideshow/filters/text_filter.rb
157
- - lib/slideshow/headers.rb
158
- - lib/slideshow/helpers/background_helper.rb
159
- - lib/slideshow/helpers/capture_helper.rb
160
- - lib/slideshow/helpers/directive_helper.rb
161
- - lib/slideshow/helpers/markdown_helper.rb
162
- - lib/slideshow/helpers/source_helper.rb
163
- - lib/slideshow/helpers/step_helper.rb
164
- - lib/slideshow/helpers/syntax/coderay_helper.rb
165
- - lib/slideshow/helpers/syntax/sh_helper.rb
166
- - lib/slideshow/helpers/syntax/uv_helper.rb
167
- - lib/slideshow/helpers/text_helper.rb
168
- - lib/slideshow/manifest_helpers.rb
169
- - lib/slideshow/markup/markdown.rb
170
- - lib/slideshow/markup/mediawiki.rb
171
- - lib/slideshow/markup/rest.rb
172
- - lib/slideshow/markup/textile.rb
173
- - lib/slideshow/plugin_helpers.rb
174
- - lib/slideshow/slide.rb
175
- - lib/slideshow/version.rb
176
- - templates/s6.txt
177
- - templates/s6.txt.gen
178
- - templates/s6/jquery.js
179
- - templates/s6/jquery.microsoft.js
180
- - templates/s6/jquery.slideshow.js
181
- - templates/s6/print.css
182
- - templates/s6/projection.css
183
- - templates/s6/screen.css
184
- - templates/slides.html.erb
185
- - templates/slides.pdf.html.erb
186
- - templates/style.css.erb
187
- - templates/welcome.text
188
- - templates/welcome.txt.quick
189
- homepage: http://slideshow-s9.github.io
190
- licenses: []
191
- post_install_message: ! "******************************************************************************\n\nTip:
192
- Try some new template packs. Example:\n\n $ slideshow install impress.js\n \n
193
- \ or\n \n $ slideshow install deck.js\n \n and use like\n \n $ slideshow build
194
- welcome.text -t impress.js\n \n or\n \n $ slideshow build welcome.text -t deck.js\n\n\nQuestions?
195
- Comments? Send them along to the mailing list.\nhttps://groups.google.com/group/webslideshow\n\n******************************************************************************\n"
103
+ - lib/slideshow/cli/version.rb
104
+ homepage: https://github.com/slideshow-s9/slideshow
105
+ licenses:
106
+ - Public Domain
107
+ metadata: {}
108
+ post_install_message: "******************************************************************************\n\nTip:
109
+ Try some new template packs. Example:\n\n $ slideshow install impress.js\n \nor\n
110
+ \ \n $ slideshow install deck.js\n \nand use like\n \n $ slideshow build welcome.text
111
+ -t impress.js\n \nor\n \n $ slideshow build welcome.text -t deck.js\n \nor add
112
+ some extra (plugins) helpers (left, right, etc). Example:\n \n $ slideshow install
113
+ plugins\n\nQuestions? Comments? Send them along to the mailing list.\nhttps://groups.google.com/group/webslideshow\n\n******************************************************************************\n"
196
114
  rdoc_options:
197
- - --main
198
- - README.markdown
115
+ - "--main"
116
+ - README.md
199
117
  require_paths:
200
118
  - lib
201
119
  required_ruby_version: !ruby/object:Gem::Requirement
202
- none: false
203
120
  requirements:
204
- - - ! '>='
121
+ - - ">="
205
122
  - !ruby/object:Gem::Version
206
- version: '0'
123
+ version: 1.9.2
207
124
  required_rubygems_version: !ruby/object:Gem::Requirement
208
- none: false
209
125
  requirements:
210
- - - ! '>='
126
+ - - ">="
211
127
  - !ruby/object:Gem::Version
212
128
  version: '0'
213
129
  requirements: []
214
- rubyforge_project: slideshow
215
- rubygems_version: 1.8.17
130
+ rubyforge_project:
131
+ rubygems_version: 2.4.2
216
132
  signing_key:
217
- specification_version: 3
133
+ specification_version: 4
218
134
  summary: Slide Show (S9) - A Free Web Alternative to PowerPoint and Keynote in Ruby
219
135
  test_files: []
@@ -1,171 +0,0 @@
1
- === 0.9.8 / 2011-02-06
2
-
3
- * Added support for HTTPS and HTTP redirect for downloads
4
- * Update builtin S6 blank template
5
-
6
- === 0.9.7 / 2010-07-22
7
-
8
- * Added support for reStructedText (using pandoc-ruby gem)
9
- * Update builtin S6 blank templates (toggle slide counter, debug, etc.)
10
- * Update SyntaxHighlighter helper
11
-
12
- === 0.9.6 / 2010-07-18
13
-
14
- * Update builtin S6 blank templates (adding autoplay, custom transitions, custom title selector, and more)
15
-
16
- === 0.9.5 / 2010-07-14
17
-
18
- * Minor fix (for custom converter methods)
19
-
20
- === 0.9.4 / 2010-07-14
21
-
22
- * Added support for custom converter methods (for Markdown processing)
23
-
24
- === 0.9.3 / 2010-07-13
25
-
26
- * Added support for pandoc-ruby (for Markdown processing); skip %-filters; break slides using div/h1 rule [Thanks David Sanson]
27
-
28
- === 0.9.2 / 2010-07-11
29
-
30
- * Change default template pack from s6gradients to s6blank
31
- * Added syntax highlighting helper (sh) for SyntaxHighlighter JavaScript Library
32
- * Added gradient and background helper
33
- * Added simplified parameters for Django-style expressions and statements
34
- * Added support for %-directives (e.g. %helper, %css, %yourown, etc)
35
- * Minor fixes
36
-
37
- === 0.9 / 2010-07-04
38
-
39
- * Added support for !SLIDE (and alternative syntax %slide)
40
- * Added support for comments using %, %begin/%end and %end
41
- * Added more helpers (step, google_analytics, left/right for two-column layouts)
42
- * Added support for Django-style expressions and statements as an alternative to <% %>
43
- * Added support for configuring text filters in slideshow.yml
44
- * Added support for configuring Markdown engines in slideshow.yml
45
- * Added fetch shortcuts (configure in slideshow.yml)
46
- * Added support for template manifests w/o .txt extensions
47
- * Removed old options -s5,--fullerscreen (use -t s5blank or -t fullerscreen instead)
48
-
49
- === 0.8.5 / 2010-06-25
50
-
51
- * Added workaround for RedCloth 4 (Java-only) multi-byte character bug
52
-
53
- === 0.8.4 / 2010-06-24
54
-
55
- * Added support for proxy via HTTP_PROXY env for fetching templates from the internet
56
-
57
- === 0.8.3 / 2010-06-23
58
-
59
- * Added support for @slides and @content variables in templates
60
-
61
- === 0.8.2 / 2010-06-19
62
-
63
- * Add pdf templates to built-in S6 template package
64
- * Started to add hash support to S6 script
65
-
66
- === 0.8.1 / 2010-06-13
67
-
68
- * Add patches for Ruby 1.9 compatibility [Thanks Lorenzo Riccucci]
69
- * Replaced BlueCloth 1.x with Kramdown 0.8 as default markdown engine
70
- * Minor fixes
71
-
72
- === 0.8 / 2009-03-14
73
-
74
- * Added -f/--fetch URI option; lets you fetch templates from the internet
75
- * Added -l/--list option; list all installed templates
76
- * Added -c/--config PATH option; lets you set config folder (default is ~/.slideshow)
77
- * Moved S5 v11 blank package out of core/gem
78
-
79
- === 0.7.8 / 2009-03-09
80
-
81
- * Added SLIDESHOWOPT env variable; lets you set default command line options (e.g. -o slides)
82
- * Using Hoe Rake tasks to manage gem; adding required files and build script
83
- * Move templates folder to top-level (out of lib/)
84
- * Minor code clean-up
85
-
86
- === 0.7.7 / 2009-03-02
87
-
88
- * Added new helpers for syntax highlighting (using ultraviolet and coderay gems)
89
-
90
- === 0.7.6 / 2009-02-24
91
-
92
- * Added plugin/helpers support
93
- * Added include and content_for helpers
94
- * Added __SKIP__/__END__ pragmas
95
-
96
- === 0.7.5 / 2009-02-19
97
-
98
- * Updated s6 templates (added support for steps/incrementals)
99
-
100
- === 0.7.4 / 2009-02-06
101
-
102
- * Added sample template package generation for S5 v11 blank package
103
-
104
- === 0.7.3 / 2009-02-04
105
-
106
- * Added check for installed markdown libs/gems
107
- * Added support for rdiscount, rpeg-markdown libs/gems
108
-
109
- === 0.7.2 / 2009-01-27
110
-
111
- * Added support for output directory switch -o/--output and relative or absolute source file [Thanks Jorge L. Cangas]
112
-
113
- === 0.7.1 / 2009-01-26
114
-
115
- * Fixed newline in manifests for file paths on unix bug
116
-
117
- === 0.7 / 2009-01-26
118
-
119
- * Adding support for custom template packages using manifests
120
-
121
- === 0.6.1 / 2008-08-31
122
-
123
- * Fixed gradient header bug [Thanks Suraj N. Kurapati]
124
-
125
- === 0.6 / 2008-08-26
126
-
127
- * Added support for custom templates
128
-
129
- === 0.5.2 / 2008-07-23
130
-
131
- * Pumped RedCloth gem dependency to use new 4.0 release
132
-
133
- === 0.5.1 / 2008-07-08
134
-
135
- * Added support for S6 JavaScript slide shows as new default
136
-
137
- === 0.5 / 2008-07-03
138
-
139
- * Added support for S5
140
-
141
- === 0.4.2 / 2008-05-20
142
-
143
- * Added escaping of code blocks and unescaping of html entities in highlighted code
144
-
145
- === 0.4.1 / 2008-05-19
146
-
147
- * {{{ and }}} shortcuts now supported standing in for <pre class='code'> and </pre>
148
- * Added patch for h1 pattern
149
-
150
- === 0.4 / 2008-05-17
151
-
152
- * Added support for code syntax highlighting using Ultraviolet gem [Thanks zimbatm]
153
-
154
- === 0.3.1 / 2008-05-17
155
-
156
- * Switched markdown processor to maruku gem [Thanks zimbatm]
157
- * Fix gem executable install for unix systems [Thanks zimbatm]
158
-
159
- === 0.3 / 2008-03-09
160
-
161
- * Added support for Markdown using BlueCloth
162
- * Moved all templates into templates folder processed using erb (embedded ruby)
163
-
164
- === 0.2 / 2008-02-26
165
-
166
- * Added theming support using svg gradients
167
- * Added compatibility support for Opera Show (no browser plugin/addon required)
168
-
169
- === 0.1 / 2008-02-17
170
-
171
- * Everything is new. First release