forked from binford2k/showoff
-
Notifications
You must be signed in to change notification settings - Fork 2
/
showoff.gemspec
34 lines (33 loc) · 1.47 KB
/
showoff.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'lib/showoff'
Gem::Specification.new do |s|
s.name = "showoff"
s.version = ShowOff::Version
s.date = "2010-08-17"
s.summary = "The best damn presentation software a developer could ever love."
s.homepage = "http://github.com/schacon/showoff"
s.email = "[email protected]"
s.authors = ["Scott Chacon"]
s.has_rdoc = false
s.require_path = "lib"
s.executables = %w( showoff )
s.files = %w( README.rdoc Rakefile LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("views/**/*")
s.files += Dir.glob("public/**/*")
s.add_dependency "sinatra"
s.add_dependency "bluecloth"
s.add_dependency "nokogiri"
s.add_dependency "json"
s.add_dependency ("gli",">= 1.2.5")
s.description = <<-desc
ShowOff is a Sinatra web app that reads simple configuration files for a
presentation. It is sort of like a Keynote web app engine. I am using it
to do all my talks in 2010, because I have a deep hatred in my heart for
Keynote and yet it is by far the best in the field.
The idea is that you setup your slide files in section subdirectories and
then startup the showoff server in that directory. It will read in your
showoff.json file for which sections go in which order and then will give
you a URL to present from.
desc
end