-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathttml.gemspec
More file actions
21 lines (17 loc) · 782 Bytes
/
ttml.gemspec
File metadata and controls
21 lines (17 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ttml/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Luca S.G. de Marinis"]
gem.email = ["loop23@gmail.com"]
gem.description = %q{Parse a ttml file}
gem.summary = %q{Minimal parsing for timed text markup language (http://www.w3.org/TR/ttaf1-dfxp/)}
gem.homepage = "http://github.com/loop23/ttml"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "ttml"
gem.require_paths = ["lib"]
gem.version = Ttml::VERSION
gem.add_runtime_dependency "nokogiri"
gem.add_runtime_dependency "trollop"
end