vtt2ass 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3 @@
1
+ module Vtt2ass
2
+ VERSION = "0.2.1"
3
+ end
@@ -0,0 +1,27 @@
1
+ require_relative 'lib/vtt2ass/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "vtt2ass"
5
+ spec.version = Vtt2ass::VERSION
6
+ spec.authors = ["Louis-Philippe Fortin"]
7
+ spec.email = ["timemaster.lpf@gmail.com"]
8
+
9
+ spec.summary = "Convert VTT subtitles to ASS subtitles"
10
+ spec.homepage = "https://gitlab.com/dkb-weeblets/vtt2ass"
11
+ spec.license = "MIT"
12
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.7.2")
13
+
14
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
15
+
16
+ spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = spec.homepage
18
+
19
+ # Specify which files should be added to the gem when it is released.
20
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
22
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
23
+ end
24
+ spec.bindir = "exe"
25
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
+ spec.require_paths = ["lib"]
27
+ end
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vtt2ass
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
+ platform: ruby
6
+ authors:
7
+ - Louis-Philippe Fortin
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-01-16 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - timemaster.lpf@gmail.com
16
+ executables:
17
+ - vtt2ass
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".gitignore"
22
+ - ".gitlab-ci.yml"
23
+ - Gemfile
24
+ - LICENSE.txt
25
+ - README.md
26
+ - Rakefile
27
+ - bin/run
28
+ - bin/setup
29
+ - doc/ASSFile.html
30
+ - doc/ASSStyle.html
31
+ - doc/ASSSubtitle.html
32
+ - doc/Application.html
33
+ - doc/VTTSubtitle.html
34
+ - doc/Vtt2ass.html
35
+ - doc/Vtt2ass/Error.html
36
+ - doc/_index.html
37
+ - doc/class_list.html
38
+ - doc/css/common.css
39
+ - doc/css/full_list.css
40
+ - doc/css/style.css
41
+ - doc/file.README.html
42
+ - doc/file_list.html
43
+ - doc/frames.html
44
+ - doc/index.html
45
+ - doc/js/app.js
46
+ - doc/js/full_list.js
47
+ - doc/js/jquery.js
48
+ - doc/method_list.html
49
+ - doc/top-level-namespace.html
50
+ - exe/vtt2ass
51
+ - lib/vtt2ass.rb
52
+ - lib/vtt2ass/ASSFile.rb
53
+ - lib/vtt2ass/ASSStyle.rb
54
+ - lib/vtt2ass/ASSSubtitle.rb
55
+ - lib/vtt2ass/Application.rb
56
+ - lib/vtt2ass/VTTSubtitle.rb
57
+ - lib/vtt2ass/version.rb
58
+ - vtt2ass.gemspec
59
+ homepage: https://gitlab.com/dkb-weeblets/vtt2ass
60
+ licenses:
61
+ - MIT
62
+ metadata:
63
+ allowed_push_host: https://rubygems.org
64
+ homepage_uri: https://gitlab.com/dkb-weeblets/vtt2ass
65
+ source_code_uri: https://gitlab.com/dkb-weeblets/vtt2ass
66
+ post_install_message:
67
+ rdoc_options: []
68
+ require_paths:
69
+ - lib
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 2.7.2
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ requirements: []
81
+ rubygems_version: 3.1.4
82
+ signing_key:
83
+ specification_version: 4
84
+ summary: Convert VTT subtitles to ASS subtitles
85
+ test_files: []