-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathslide-em-up.gemspec
24 lines (23 loc) · 1.18 KB
/
slide-em-up.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
require "./lib/slide-em-up/version.rb"
Gem::Specification.new do |s|
s.name = "slide-em-up"
s.version = SlideEmUp::VERSION
s.date = Time.now.utc.strftime("%Y-%m-%d")
s.homepage = "http://github.com/nono/slide-em-up"
s.authors = "Bruno Michel"
s.email = "[email protected]"
s.description = "Slide'em up is a presentation tool that displays markdown-formatted slides"
s.summary = "Slide'em up is a presentation tool. You write some slides in markdown, choose a style and it displays it in HTML5. With a browser in full-screen, you can make amazing presentations!"
s.license = 'MIT'
s.extra_rdoc_files = %w(README.md)
s.files = Dir["MIT-LICENSE", "README.md", "Gemfile", "bin/*", "lib/**/*.rb", "themes/**/*"]
s.executables = ["slide-em-up", "slide-em-up2pdf"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.add_dependency "goliath", "=1.0.2"
s.add_dependency "redcarpet", "~>2.1"
s.add_dependency "erubis", "~>2.7"
s.add_dependency "yajl-ruby", "~>1.1"
s.add_dependency "pygments.rb", "~>0.3"
s.add_development_dependency "minitest", "~>2.3"
end