forked from markolson/storyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstoryboard.gemspec
31 lines (25 loc) · 1.08 KB
/
storyboard.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
require File.expand_path('../lib/storyboard/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Mark Olson"]
gem.email = ["\"[email protected]\""]
gem.description = %q{Generate PDFs and eBooks from video files}
gem.summary = %q{Video to PDF/ePub generator}
gem.homepage = "http://github.com/markolson/storyboard"
gem.required_ruby_version = '>= 1.9.3'
gem.files = `git ls-files`.split($\) if File.exist?('.git')
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "storyboard"
gem.require_paths = ["lib","vendor/suby"]
gem.version = Storyboard::VERSION
gem.add_dependency 'bundler'
gem.add_dependency 'mini_magick'
gem.add_dependency 'prawn'
gem.add_dependency 'ruby-progressbar'
gem.add_dependency 'levenshtein-ffi'
# suby stuff.
gem.add_dependency 'path', '>= 1.3.0'
gem.add_dependency 'rubyzip'
gem.add_dependency 'term-ansicolor'
gem.add_dependency 'mime-types', '>= 1.19'
end