dgoodlad-slider 0.1.0
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/MIT-LICENSE +21 -0
- data/README +5 -0
- data/doc/example.rb +9 -0
- data/lib/slider.rb +45 -0
- data/slider.gemspec +18 -0
- metadata +65 -0
data/MIT-LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
Slider
|
2
|
+
|
3
|
+
Copyright (c) 2008 David Goodlad <david@goodlad.ca>
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
Slider is a simple Ruby module to allow a presenter to create and view a
|
2
|
+
slideshow using only a terminal emulator. It requires the use of the console
|
3
|
+
application 'figlet' to draw the fancy headings.
|
4
|
+
|
5
|
+
This code is provided under the MIT license, included in the file MIT-LICENSE
|
data/doc/example.rb
ADDED
data/lib/slider.rb
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
module Slider
|
2
|
+
COLUMNS = 80
|
3
|
+
ROWS = 24
|
4
|
+
VERTICAL_PADDING = 10
|
5
|
+
FIGLET_FONT = 'standard'
|
6
|
+
|
7
|
+
def slide(heading, *text)
|
8
|
+
@slides ||= []
|
9
|
+
@slides << [heading] + text
|
10
|
+
end
|
11
|
+
|
12
|
+
def start_slideshow
|
13
|
+
@current_slide = 0
|
14
|
+
|
15
|
+
while @current_slide < num_slides
|
16
|
+
puts render_slide(*@slides[@current_slide])
|
17
|
+
STDIN.getc
|
18
|
+
@current_slide += 1
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
private
|
23
|
+
def render_slide(heading, *text)
|
24
|
+
heading = `figlet -f #{FIGLET_FONT} #{heading}`
|
25
|
+
width = heading.map { |line| line.length }.max
|
26
|
+
padding = " " * ((COLUMNS - width) / 2)
|
27
|
+
heading = heading.map { |line| "#{padding}#{line}" }
|
28
|
+
heading_height = heading.size
|
29
|
+
text = text.map { |line|
|
30
|
+
padding = " " * ((COLUMNS - line.length) / 2)
|
31
|
+
"#{padding}#{line}\n"
|
32
|
+
}
|
33
|
+
|
34
|
+
result = "\n" * VERTICAL_PADDING
|
35
|
+
result << heading.join
|
36
|
+
result << "\n"
|
37
|
+
result << text.join
|
38
|
+
result << "\n" * (ROWS - VERTICAL_PADDING - heading_height - text.size)
|
39
|
+
result
|
40
|
+
end
|
41
|
+
|
42
|
+
def num_slides
|
43
|
+
@slides.size
|
44
|
+
end
|
45
|
+
end
|
data/slider.gemspec
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = "slider"
|
3
|
+
s.version = "0.1.0"
|
4
|
+
s.date = "2008-11-07"
|
5
|
+
s.summary = "Text-based slideshow creation and playback"
|
6
|
+
s.email = "david@goodlad.ca"
|
7
|
+
s.homepage = "http://github.com/dgoodlad/slider"
|
8
|
+
s.description = "Slider is a Ruby library to build and display slideshows for presentations"
|
9
|
+
s.has_rdoc = false
|
10
|
+
s.authors = ["David Goodlad"]
|
11
|
+
s.files = [ "MIT-LICENSE",
|
12
|
+
"README",
|
13
|
+
"slider.gemspec",
|
14
|
+
"lib/slider.rb",
|
15
|
+
"doc/example.rb" ]
|
16
|
+
|
17
|
+
s.add_dependency "Text", ["> 0.0.0"]
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: dgoodlad-slider
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- David Goodlad
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-11-07 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: Text
|
17
|
+
version_requirement:
|
18
|
+
version_requirements: !ruby/object:Gem::Requirement
|
19
|
+
requirements:
|
20
|
+
- - ">"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.0.0
|
23
|
+
version:
|
24
|
+
description: Slider is a Ruby library to build and display slideshows for presentations
|
25
|
+
email: david@goodlad.ca
|
26
|
+
executables: []
|
27
|
+
|
28
|
+
extensions: []
|
29
|
+
|
30
|
+
extra_rdoc_files: []
|
31
|
+
|
32
|
+
files:
|
33
|
+
- MIT-LICENSE
|
34
|
+
- README
|
35
|
+
- slider.gemspec
|
36
|
+
- lib/slider.rb
|
37
|
+
- doc/example.rb
|
38
|
+
has_rdoc: false
|
39
|
+
homepage: http://github.com/dgoodlad/slider
|
40
|
+
post_install_message:
|
41
|
+
rdoc_options: []
|
42
|
+
|
43
|
+
require_paths:
|
44
|
+
- lib
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: "0"
|
50
|
+
version:
|
51
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: "0"
|
56
|
+
version:
|
57
|
+
requirements: []
|
58
|
+
|
59
|
+
rubyforge_project:
|
60
|
+
rubygems_version: 1.2.0
|
61
|
+
signing_key:
|
62
|
+
specification_version: 2
|
63
|
+
summary: Text-based slideshow creation and playback
|
64
|
+
test_files: []
|
65
|
+
|