slideshow 1.2.4 → 1.2.5
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.
- data/README.markdown +8 -3
- data/Rakefile +8 -8
- data/lib/slideshow.rb +3 -2
- data/lib/slideshow/cli/commands/fetch.rb +4 -3
- data/lib/slideshow/cli/commands/gen.rb +38 -38
- data/lib/slideshow/cli/commands/gen_templates.rb +4 -3
- data/lib/slideshow/cli/commands/list.rb +4 -3
- data/lib/slideshow/cli/commands/plugins.rb +4 -3
- data/lib/slideshow/cli/commands/quick.rb +4 -3
- data/lib/slideshow/cli/opts.rb +11 -2
- data/lib/slideshow/cli/runner.rb +21 -18
- data/lib/slideshow/config.rb +5 -4
- data/lib/slideshow/filters/debug_filter.rb +21 -9
- data/lib/slideshow/version.rb +1 -1
- metadata +31 -20
data/README.markdown
CHANGED
@@ -1,6 +1,11 @@
|
|
1
|
-
# Slide Show (S9) - A Free Web Alternative to PowerPoint and
|
1
|
+
# Slide Show (S9) - A Free Web Alternative to PowerPoint and Keynote in Ruby
|
2
|
+
|
3
|
+
* docu :: [slideshow-s9.github.io](http://slideshow-s9.github.io)
|
4
|
+
* source :: [github.com/geraldb/slideshow](https://github.com/geraldb/slideshow)
|
5
|
+
* bugs :: [github.com/geraldb/slideshow/issues](https://github.com/geraldb/slideshow/issues)
|
6
|
+
* gem :: [rubygems.org/gems/slideshow](https://rubygems.org/gems/slideshow)
|
7
|
+
* rdoc :: [rubydoc.info/gems/slideshow](http://rubydoc.info/gems/slideshow)
|
2
8
|
|
3
|
-
* [`slideshow.rubyforge.org`](http://slideshow.rubyforge.org)
|
4
9
|
|
5
10
|
## DESCRIPTION
|
6
11
|
|
@@ -11,7 +16,7 @@ The Slide Show (S9) project also collects and welcomes themes and ships
|
|
11
16
|
|
12
17
|
## SYNOPSIS
|
13
18
|
|
14
|
-
Slide Show (S9) is a free web alternative to PowerPoint or
|
19
|
+
Slide Show (S9) is a free web alternative to PowerPoint or Keynote in Ruby
|
15
20
|
|
16
21
|
Usage: slideshow [options] name
|
17
22
|
-o, --output PATH Output Path (default is .)
|
data/Rakefile
CHANGED
@@ -2,13 +2,12 @@ require 'hoe'
|
|
2
2
|
require './lib/slideshow/version.rb'
|
3
3
|
|
4
4
|
Hoe.spec 'slideshow' do
|
5
|
-
|
5
|
+
|
6
6
|
self.version = Slideshow::VERSION
|
7
|
-
|
8
|
-
self.summary = 'Slide Show (S9) - A Free Web Alternative to PowerPoint and
|
9
|
-
self.urls = ['http://slideshow.
|
10
|
-
|
11
|
-
|
7
|
+
|
8
|
+
self.summary = 'Slide Show (S9) - A Free Web Alternative to PowerPoint and Keynote in Ruby'
|
9
|
+
self.urls = ['http://slideshow-s9.github.io']
|
10
|
+
|
12
11
|
self.author = 'Gerald Bauer'
|
13
12
|
self.email = 'webslideshow@googlegroups.com'
|
14
13
|
|
@@ -18,9 +17,10 @@ Hoe.spec 'slideshow' do
|
|
18
17
|
['textutils','>= 0.2.0'],
|
19
18
|
['pakman','>= 0.4.0'],
|
20
19
|
['activesupport', '>= 3.2.6'],
|
21
|
-
['RedCloth','>= 4.2.9']
|
20
|
+
['RedCloth','>= 4.2.9'],
|
21
|
+
['logutils','>=0.6.0']
|
22
22
|
]
|
23
|
-
|
23
|
+
|
24
24
|
# switch extension to .markdown for gihub formatting
|
25
25
|
self.readme_file = 'README.markdown'
|
26
26
|
self.history_file = 'History.markdown'
|
data/lib/slideshow.rb
CHANGED
@@ -3,14 +3,13 @@
|
|
3
3
|
###
|
4
4
|
# NB: for local testing run like:
|
5
5
|
#
|
6
|
-
# 1.8.x: ruby -Ilib -rrubygems lib/slideshow.rb
|
7
6
|
# 1.9.x: ruby -Ilib lib/slideshow.rb
|
8
7
|
|
9
8
|
|
10
9
|
# core and stlibs
|
11
10
|
require 'optparse'
|
12
11
|
require 'erb'
|
13
|
-
require 'logger'
|
12
|
+
require 'logger' # todo: remove!! replaced by logutils gem
|
14
13
|
require 'fileutils'
|
15
14
|
require 'pp'
|
16
15
|
require 'uri'
|
@@ -24,6 +23,8 @@ require 'cgi'
|
|
24
23
|
# required gems
|
25
24
|
require 'active_support/all'
|
26
25
|
|
26
|
+
require 'logutils' # logger utils library
|
27
|
+
|
27
28
|
require 'redcloth' # default textile library
|
28
29
|
require 'markdown' # default markdown library
|
29
30
|
require 'fetcher' # fetch docs and blogs via http, https, etc.
|
@@ -4,13 +4,14 @@ class Fetch
|
|
4
4
|
|
5
5
|
### fix: remove opts, use config (wrapped!!)
|
6
6
|
|
7
|
-
|
8
|
-
|
7
|
+
include LogUtils::Logging
|
8
|
+
|
9
|
+
def initialize( opts, config )
|
9
10
|
@opts = opts
|
10
11
|
@config = config
|
11
12
|
end
|
12
13
|
|
13
|
-
attr_reader :
|
14
|
+
attr_reader :opts, :config
|
14
15
|
|
15
16
|
|
16
17
|
def run
|
@@ -1,22 +1,32 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
1
3
|
module Slideshow
|
2
4
|
|
3
5
|
## fix:/todo: move generation code out of command into its own class
|
4
6
|
## not residing/depending on cli
|
5
7
|
|
6
|
-
class Gen
|
8
|
+
class Gen ## todo: rename command to build
|
9
|
+
|
10
|
+
include LogUtils::Logging
|
7
11
|
|
8
12
|
include ManifestHelper
|
9
13
|
|
10
14
|
### fix: remove opts, use config (wrapped!!)
|
11
15
|
|
12
|
-
def initialize(
|
13
|
-
@logger = logger
|
16
|
+
def initialize( opts, config, headers )
|
14
17
|
@opts = opts
|
15
18
|
@config = config
|
16
19
|
@headers = headers
|
20
|
+
|
21
|
+
## todo: check if we need to use expand_path - Dir.pwd always absolute (check ~/user etc.)
|
22
|
+
@usrdir = File.expand_path( Dir.pwd ) # save original (current) working directory
|
17
23
|
end
|
18
24
|
|
19
|
-
attr_reader :
|
25
|
+
attr_reader :usrdir # original working dir (user called slideshow from)
|
26
|
+
attr_reader :srcdir, :outdir, :pakdir # NB: "initalized" in create_slideshow
|
27
|
+
|
28
|
+
|
29
|
+
attr_reader :opts, :config, :headers
|
20
30
|
attr_reader :session # give helpers/plugins a session-like hash
|
21
31
|
|
22
32
|
attr_reader :markup_type # :textile, :markdown, :rest
|
@@ -75,12 +85,14 @@ class Gen
|
|
75
85
|
## from helpers
|
76
86
|
## fix: cleanup and remove
|
77
87
|
|
78
|
-
def load_template( path )
|
88
|
+
def load_template( path )
|
89
|
+
puts "*** depreceated api - load_template() - use Pakman gem api"
|
79
90
|
puts " Loading template #{path}..."
|
80
91
|
return File.read( path )
|
81
92
|
end
|
82
93
|
|
83
94
|
def render_template( content, the_binding )
|
95
|
+
puts "*** depreceated api - render_template() - use Pakman gem api"
|
84
96
|
ERB.new( content ).result( the_binding )
|
85
97
|
end
|
86
98
|
|
@@ -211,12 +223,12 @@ class Gen
|
|
211
223
|
## do NOT default to cwd (because cwd will change!)
|
212
224
|
|
213
225
|
# Reference src with absolute path, because this can be used with different pwd
|
214
|
-
manifestsrc = File.expand_path(manifestsrc)
|
226
|
+
manifestsrc = File.expand_path( manifestsrc, usrdir )
|
215
227
|
|
216
228
|
# expand output path in current dir and make sure output path exists
|
217
|
-
|
218
|
-
logger.debug "
|
219
|
-
FileUtils.makedirs(
|
229
|
+
@outdir = File.expand_path( opts.output_path, usrdir )
|
230
|
+
logger.debug "setting outdir to >#{outdir}<"
|
231
|
+
FileUtils.makedirs( outdir ) unless File.directory? outdir
|
220
232
|
|
221
233
|
dirname = File.dirname( fn )
|
222
234
|
basename = File.basename( fn, '.*' )
|
@@ -225,20 +237,13 @@ class Gen
|
|
225
237
|
|
226
238
|
# change working dir to sourcefile dir
|
227
239
|
# todo: add a -c option to commandline? to let you set cwd?
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
srcdir_restore = File.expand_path( dirname )
|
236
|
-
orgdir_restore = File.expand_path( Dir.pwd )
|
237
|
-
|
238
|
-
unless newcwd == oldcwd then
|
239
|
-
logger.debug "oldcwd=#{oldcwd}"
|
240
|
-
logger.debug "newcwd=#{newcwd}"
|
241
|
-
Dir.chdir newcwd
|
240
|
+
|
241
|
+
@srcdir = File.expand_path( dirname, usrdir )
|
242
|
+
logger.debug "setting srcdir to >#{srcdir}<"
|
243
|
+
|
244
|
+
unless usrdir == srcdir
|
245
|
+
logger.debug "changing cwd to src - new >#{srcdir}<, old >#{Dir.pwd}<"
|
246
|
+
Dir.chdir srcdir
|
242
247
|
end
|
243
248
|
|
244
249
|
puts "Preparing slideshow '#{basename}'..."
|
@@ -300,33 +305,28 @@ class Gen
|
|
300
305
|
# nb: change cwd to template pak root
|
301
306
|
|
302
307
|
@pakdir = File.dirname( manifestsrc ) # template pak root - make availabe too in erb via binding
|
303
|
-
logger.debug "
|
308
|
+
logger.debug " setting pakdir to >#{pakdir}<"
|
304
309
|
|
305
310
|
# todo/fix: change current work dir (cwd) in pakman gem itself
|
306
311
|
# for now lets do it here
|
307
312
|
|
308
|
-
logger.debug "changing cwd to pak
|
309
|
-
Dir.chdir(
|
313
|
+
logger.debug "changing cwd to pak - new >#{pakdir}<, old >#{Dir.pwd}<"
|
314
|
+
Dir.chdir( pakdir )
|
310
315
|
|
311
316
|
|
312
|
-
pakpath =
|
317
|
+
pakpath = outdir
|
313
318
|
|
314
|
-
|
315
|
-
pakpath = File.expand_path( pakpath, orgdir_restore )
|
316
|
-
logger.debug "pakpath=#{pakpath}"
|
317
|
-
FileUtils.makedirs( pakpath ) unless File.directory? pakpath
|
319
|
+
logger.debug( "manifestsrc >#{manifestsrc}<, pakpath >#{pakpath}<" )
|
318
320
|
|
319
|
-
logger.debug( "manifestsrc=>#{manifestsrc}<, pakpath=>#{pakpath}<" )
|
320
|
-
|
321
321
|
Pakman::Templater.new( logger ).merge_pak( manifestsrc, pakpath, binding, basename )
|
322
322
|
|
323
|
-
logger.debug "restoring cwd to src
|
324
|
-
Dir.chdir(
|
323
|
+
logger.debug "restoring cwd to src - new >#{srcdir}<, old >#{Dir.pwd}<"
|
324
|
+
Dir.chdir( srcdir )
|
325
325
|
|
326
326
|
## pop/restore org (original) working folder/dir
|
327
|
-
unless
|
328
|
-
logger.debug "restoring cwd to
|
329
|
-
Dir.chdir(
|
327
|
+
unless usrdir == srcdir
|
328
|
+
logger.debug "restoring cwd to usr - new >#{usrdir}<, old >#{Dir.pwd}<"
|
329
|
+
Dir.chdir( usrdir )
|
330
330
|
end
|
331
331
|
|
332
332
|
puts "Done."
|
@@ -3,15 +3,16 @@ module Slideshow
|
|
3
3
|
class GenTemplates
|
4
4
|
|
5
5
|
|
6
|
+
include LogUtils::Logging
|
7
|
+
|
6
8
|
### fix: remove opts, use config (wrapped!!)
|
7
9
|
|
8
|
-
def initialize(
|
9
|
-
@logger = logger
|
10
|
+
def initialize( opts, config )
|
10
11
|
@opts = opts
|
11
12
|
@config = config
|
12
13
|
end
|
13
14
|
|
14
|
-
attr_reader :
|
15
|
+
attr_reader :opts, :config
|
15
16
|
|
16
17
|
def run
|
17
18
|
manifest_name = opts.manifest
|
@@ -2,17 +2,18 @@ module Slideshow
|
|
2
2
|
|
3
3
|
class List
|
4
4
|
|
5
|
+
include LogUtils::Logging
|
6
|
+
|
5
7
|
include ManifestHelper
|
6
8
|
|
7
9
|
### fix: remove opts, use config (wrapped!!)
|
8
10
|
|
9
|
-
def initialize(
|
10
|
-
@logger = logger
|
11
|
+
def initialize( opts, config )
|
11
12
|
@opts = opts
|
12
13
|
@config = config
|
13
14
|
end
|
14
15
|
|
15
|
-
attr_reader :
|
16
|
+
attr_reader :opts, :config
|
16
17
|
|
17
18
|
def run
|
18
19
|
home = Env.home
|
@@ -2,17 +2,18 @@ module Slideshow
|
|
2
2
|
|
3
3
|
class Plugins
|
4
4
|
|
5
|
+
include LogUtils::Logging
|
6
|
+
|
5
7
|
include PluginHelper
|
6
8
|
|
7
9
|
### fix: remove opts, use config (wrapped!!)
|
8
10
|
|
9
|
-
def initialize(
|
10
|
-
@logger = logger
|
11
|
+
def initialize( opts, config )
|
11
12
|
@opts = opts
|
12
13
|
@config = config
|
13
14
|
end
|
14
15
|
|
15
|
-
attr_reader :
|
16
|
+
attr_reader :opts, :config
|
16
17
|
|
17
18
|
def run
|
18
19
|
puts ''
|
@@ -2,17 +2,18 @@ module Slideshow
|
|
2
2
|
|
3
3
|
class Quick
|
4
4
|
|
5
|
+
include LogUtils::Logging
|
6
|
+
|
5
7
|
include ManifestHelper
|
6
8
|
|
7
9
|
### fix: remove opts, use config (wrapped!!)
|
8
10
|
|
9
|
-
def initialize(
|
10
|
-
@logger = logger
|
11
|
+
def initialize( opts, config )
|
11
12
|
@opts = opts
|
12
13
|
@config = config
|
13
14
|
end
|
14
15
|
|
15
|
-
attr_reader :
|
16
|
+
attr_reader :opts, :config
|
16
17
|
|
17
18
|
def run
|
18
19
|
manifest_name = opts.quick_manifest.gsub('.txt','').gsub('.quick','') # make sure we get name w/o .quick and .txt extension
|
data/lib/slideshow/cli/opts.rb
CHANGED
@@ -30,6 +30,15 @@ class Opts
|
|
30
30
|
@takahashi == true
|
31
31
|
end
|
32
32
|
|
33
|
+
def verbose=(boolean) # add: alias for debug ??
|
34
|
+
@verbose = boolean
|
35
|
+
end
|
36
|
+
|
37
|
+
def verbose?
|
38
|
+
return false if @verbose.nil? # default verbose/debug flag is false
|
39
|
+
@verbose == true
|
40
|
+
end
|
41
|
+
|
33
42
|
|
34
43
|
def quick=(boolean)
|
35
44
|
@quick = boolean
|
@@ -77,10 +86,10 @@ class Opts
|
|
77
86
|
@list == true
|
78
87
|
end
|
79
88
|
|
80
|
-
|
89
|
+
def fetch_all=(boolean)
|
81
90
|
@fetch_all = boolean
|
82
91
|
end
|
83
|
-
|
92
|
+
|
84
93
|
def fetch_all?
|
85
94
|
return false if @fetch_all.nil? # default fetch all flag is false
|
86
95
|
@fetch_all == true
|
data/lib/slideshow/cli/runner.rb
CHANGED
@@ -2,18 +2,21 @@ module Slideshow
|
|
2
2
|
|
3
3
|
class Runner
|
4
4
|
|
5
|
+
include LogUtils::Logging
|
6
|
+
|
5
7
|
include PluginHelper
|
6
8
|
|
7
|
-
def initialize
|
8
|
-
@logger = Logger.new(STDOUT)
|
9
|
-
@logger.level = Logger::INFO
|
10
9
|
|
10
|
+
def initialize
|
11
11
|
@opts = Opts.new
|
12
|
-
@config = Config.new( @
|
12
|
+
@config = Config.new( @opts )
|
13
13
|
@headers = Headers.new( @config )
|
14
|
+
|
15
|
+
## todo/fix: move into slideshow loader script - why? why not?
|
16
|
+
LogUtils::Logger.root.level = :info
|
14
17
|
end
|
15
18
|
|
16
|
-
attr_reader :
|
19
|
+
attr_reader :opts, :config, :headers
|
17
20
|
|
18
21
|
|
19
22
|
def find_file_with_known_extension( fn )
|
@@ -124,7 +127,7 @@ def run( args )
|
|
124
127
|
cmd.on( "-h", "--help", "Show this message" ) do
|
125
128
|
puts <<EOS
|
126
129
|
|
127
|
-
Slide Show (S9) is a free web alternative to PowerPoint or
|
130
|
+
Slide Show (S9) is a free web alternative to PowerPoint or Keynote in Ruby
|
128
131
|
|
129
132
|
#{cmd.help}
|
130
133
|
|
@@ -144,8 +147,8 @@ More examles:
|
|
144
147
|
slideshow -t s5blank microformats # Use your own slide show templates (e.g. s5blank)
|
145
148
|
|
146
149
|
Further information:
|
147
|
-
http://slideshow.
|
148
|
-
|
150
|
+
http://slideshow-s9.github.io
|
151
|
+
|
149
152
|
EOS
|
150
153
|
exit
|
151
154
|
end
|
@@ -191,17 +194,17 @@ EOS
|
|
191
194
|
|
192
195
|
|
193
196
|
cmd.on( "--verbose", "(Debug) Show debug trace" ) do
|
194
|
-
|
195
|
-
|
197
|
+
LogUtils::Logger.root.level = :debug
|
198
|
+
opts.verbose = true
|
196
199
|
end
|
197
|
-
|
200
|
+
|
198
201
|
end
|
199
202
|
|
200
203
|
opt.parse!( args )
|
201
204
|
|
202
205
|
puts Slideshow.generator
|
203
206
|
|
204
|
-
if
|
207
|
+
if opts.verbose?
|
205
208
|
# dump Slideshow settings
|
206
209
|
config.dump
|
207
210
|
puts
|
@@ -212,15 +215,15 @@ EOS
|
|
212
215
|
end
|
213
216
|
|
214
217
|
if opts.list?
|
215
|
-
List.new(
|
218
|
+
List.new( opts, config ).run ### todo: remove opts (merge access into config)
|
216
219
|
elsif opts.plugins?
|
217
|
-
Plugins.new(
|
220
|
+
Plugins.new( opts, config ).run ### todo: remove opts (merge access into config)
|
218
221
|
elsif opts.generate?
|
219
|
-
GenTemplates.new(
|
222
|
+
GenTemplates.new( opts, config ).run ### todo: remove opts
|
220
223
|
elsif opts.quick?
|
221
|
-
Quick.new(
|
224
|
+
Quick.new( opts, config ).run ### todo: remove opts
|
222
225
|
elsif opts.fetch? || opts.fetch_all?
|
223
|
-
Fetch.new(
|
226
|
+
Fetch.new( opts, config ).run ### todo: remove opts
|
224
227
|
else
|
225
228
|
load_plugins # check for optional plugins/extension in ./lib folder
|
226
229
|
|
@@ -228,7 +231,7 @@ EOS
|
|
228
231
|
files = find_files( arg )
|
229
232
|
files.each do |file|
|
230
233
|
### fix/todo: reset/clean headers
|
231
|
-
Gen.new(
|
234
|
+
Gen.new( opts, config, headers ).create_slideshow( file )
|
232
235
|
end
|
233
236
|
end
|
234
237
|
end
|
data/lib/slideshow/config.rb
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
module Slideshow
|
2
2
|
|
3
3
|
class Config
|
4
|
-
|
5
|
-
|
6
|
-
|
4
|
+
|
5
|
+
include LogUtils::Logging
|
6
|
+
|
7
|
+
def initialize( opts )
|
7
8
|
@opts = opts
|
8
9
|
end
|
9
10
|
|
10
|
-
attr_reader :
|
11
|
+
attr_reader :opts
|
11
12
|
|
12
13
|
def header_level
|
13
14
|
@opts.header_level
|
@@ -6,14 +6,18 @@ module Slideshow
|
|
6
6
|
|
7
7
|
def dump_content_to_file_debug_text_erb( content )
|
8
8
|
|
9
|
-
|
9
|
+
# NB: using attribs from mixed in class
|
10
|
+
# - opts
|
11
|
+
# - outdir
|
10
12
|
|
11
|
-
|
13
|
+
return content unless opts.verbose?
|
14
|
+
|
15
|
+
outname = "#{outdir}/#{@name}.debug.text.erb"
|
12
16
|
|
13
17
|
puts " Dumping content before erb merge to #{outname}..."
|
14
18
|
|
15
19
|
File.open( outname, 'w' ) do |f|
|
16
|
-
f.write( content )
|
20
|
+
f.write( content )
|
17
21
|
end
|
18
22
|
|
19
23
|
content
|
@@ -23,14 +27,18 @@ end
|
|
23
27
|
|
24
28
|
def dump_content_to_file_debug_html( content )
|
25
29
|
|
26
|
-
|
30
|
+
# NB: using attribs from mixed in class
|
31
|
+
# - opts
|
32
|
+
# - outdir
|
33
|
+
|
34
|
+
return content unless opts.verbose?
|
27
35
|
|
28
|
-
outname = "#{@name}.debug.html"
|
36
|
+
outname = "#{outdir}/#{@name}.debug.html"
|
29
37
|
|
30
38
|
puts " Dumping content before html post processing to #{outname}..."
|
31
39
|
|
32
40
|
File.open( outname, 'w' ) do |f|
|
33
|
-
f.write( content )
|
41
|
+
f.write( content )
|
34
42
|
end
|
35
43
|
|
36
44
|
content
|
@@ -40,14 +48,18 @@ end
|
|
40
48
|
|
41
49
|
def dump_content_to_file_debug_text( content )
|
42
50
|
|
43
|
-
|
51
|
+
# NB: using attribs from mixed in class
|
52
|
+
# - opts
|
53
|
+
# - outdir
|
54
|
+
|
55
|
+
return content unless opts.verbose?
|
44
56
|
|
45
|
-
outname = "#{@name}.debug.text"
|
57
|
+
outname = "#{outdir}/#{@name}.debug.text"
|
46
58
|
|
47
59
|
puts " Dumping content before text-to-html conversion to #{outname}..."
|
48
60
|
|
49
61
|
File.open( outname, 'w' ) do |f|
|
50
|
-
f.write( content )
|
62
|
+
f.write( content )
|
51
63
|
end
|
52
64
|
|
53
65
|
content
|
data/lib/slideshow/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slideshow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-06-
|
12
|
+
date: 2013-06-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: props
|
16
|
-
requirement: &
|
16
|
+
requirement: &84536570 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 1.0.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *84536570
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: markdown
|
27
|
-
requirement: &
|
27
|
+
requirement: &84536350 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 1.0.0
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *84536350
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: textutils
|
38
|
-
requirement: &
|
38
|
+
requirement: &84536130 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: 0.2.0
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *84536130
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: pakman
|
49
|
-
requirement: &
|
49
|
+
requirement: &84535910 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ! '>='
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: 0.4.0
|
55
55
|
type: :runtime
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *84535910
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: activesupport
|
60
|
-
requirement: &
|
60
|
+
requirement: &84535700 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ! '>='
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: 3.2.6
|
66
66
|
type: :runtime
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *84535700
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: RedCloth
|
71
|
-
requirement: &
|
71
|
+
requirement: &84535480 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ! '>='
|
@@ -76,10 +76,21 @@ dependencies:
|
|
76
76
|
version: 4.2.9
|
77
77
|
type: :runtime
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *84535480
|
80
|
+
- !ruby/object:Gem::Dependency
|
81
|
+
name: logutils
|
82
|
+
requirement: &84535260 !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
84
|
+
requirements:
|
85
|
+
- - ! '>='
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: 0.6.0
|
88
|
+
type: :runtime
|
89
|
+
prerelease: false
|
90
|
+
version_requirements: *84535260
|
80
91
|
- !ruby/object:Gem::Dependency
|
81
92
|
name: rdoc
|
82
|
-
requirement: &
|
93
|
+
requirement: &84535040 !ruby/object:Gem::Requirement
|
83
94
|
none: false
|
84
95
|
requirements:
|
85
96
|
- - ~>
|
@@ -87,10 +98,10 @@ dependencies:
|
|
87
98
|
version: '3.10'
|
88
99
|
type: :development
|
89
100
|
prerelease: false
|
90
|
-
version_requirements: *
|
101
|
+
version_requirements: *84535040
|
91
102
|
- !ruby/object:Gem::Dependency
|
92
103
|
name: hoe
|
93
|
-
requirement: &
|
104
|
+
requirement: &84534820 !ruby/object:Gem::Requirement
|
94
105
|
none: false
|
95
106
|
requirements:
|
96
107
|
- - ~>
|
@@ -98,7 +109,7 @@ dependencies:
|
|
98
109
|
version: '3.3'
|
99
110
|
type: :development
|
100
111
|
prerelease: false
|
101
|
-
version_requirements: *
|
112
|
+
version_requirements: *84534820
|
102
113
|
description: ! "The Slide Show (S9) Ruby gem lets you create slide shows and author
|
103
114
|
slides in plain text\r\nusing a wiki-style markup language that's easy-to-write
|
104
115
|
and easy-to-read.\r\nThe Slide Show (S9) project also collects and welcomes themes
|
@@ -166,7 +177,7 @@ files:
|
|
166
177
|
- templates/style.css.erb
|
167
178
|
- templates/welcome.text
|
168
179
|
- templates/welcome.txt.quick
|
169
|
-
homepage: http://slideshow.
|
180
|
+
homepage: http://slideshow-s9.github.io
|
170
181
|
licenses: []
|
171
182
|
post_install_message: ! '******************************************************************************
|
172
183
|
|
@@ -201,5 +212,5 @@ rubyforge_project: slideshow
|
|
201
212
|
rubygems_version: 1.8.17
|
202
213
|
signing_key:
|
203
214
|
specification_version: 3
|
204
|
-
summary: Slide Show (S9) - A Free Web Alternative to PowerPoint and
|
215
|
+
summary: Slide Show (S9) - A Free Web Alternative to PowerPoint and Keynote in Ruby
|
205
216
|
test_files: []
|