mkvtoolhelper 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1574e21575f6fef442a04b91cf93b02af84017a8
4
+ data.tar.gz: 0550f9b6591a0e23dbed0313f17e31ddfc51771e
5
+ SHA512:
6
+ metadata.gz: 1dabef5cc0bd5149301e47a02ec3942a599825922bfd3a3cc25557df7367180da87a5ce7f553214c0e4aec6edee494f64cab8bc80de106189b36e9c62c96982e
7
+ data.tar.gz: 1e373dc39dea5fa628a31b64001f52253fc97f804aa899774f25d0115c0ecbe7903265a13eac3aed1f503b7673a536f469aaffb6e3fcd81ecfc0f26b0a3aeda3
data/bin/mkvtoolhelper ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
4
+
5
+ require 'mkvtoolhelper'
6
+
7
+ begin
8
+ raise "TODO"
9
+ rescue => e
10
+ STDERR.puts e.message
11
+ STDERR.puts
12
+ STDERR.puts "Backtrace:"
13
+ STDERR.puts e.backtrace
14
+ exit 1
15
+ end
@@ -0,0 +1,3 @@
1
+ module Mkvtool
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1 @@
1
+ require 'mkvtoolhelper/version'
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mkvtoolhelper
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Gray Wolf
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-07-30 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |
14
+ The cli interface of mkvtool isn't the best for batch editing
15
+ multiple files, this helper should help a bit. Not really intended
16
+ to be used in scripts but for interactive work.
17
+ email: wolf@wolfsden.cz
18
+ executables:
19
+ - mkvtoolhelper
20
+ extensions: []
21
+ extra_rdoc_files: []
22
+ files:
23
+ - bin/mkvtoolhelper
24
+ - lib/mkvtoolhelper.rb
25
+ - lib/mkvtoolhelper/version.rb
26
+ homepage: https://github.com/graywolf/mkvtoolhelper
27
+ licenses:
28
+ - MIT
29
+ metadata: {}
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubyforge_project:
46
+ rubygems_version: 2.6.11
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: Helper to ease work with mkvtool cli
50
+ test_files: []