-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranscode.gemspec
More file actions
27 lines (23 loc) · 939 Bytes
/
transcode.gemspec
File metadata and controls
27 lines (23 loc) · 939 Bytes
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
# frozen_string_literal: true
# SPDX-FileCopyrightText: 2023-2025 David Rabkin
# SPDX-License-Identifier: 0BSD
$LOAD_PATH.unshift File.expand_path("#{File.dirname(__FILE__)}/lib")
require 'transcode'
Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
s.required_ruby_version = '>=3.2'
s.name = 'transcode'
s.version = Transcode::VERSION
s.summary = 'Tools to transcode batch of video files'
s.description = <<-HERE
Transcode is a wrapper on Video Transcoding.
HERE
s.license = '0BSD'
s.author = 'David Rabkin'
s.email = 'david@rabkin.co.il'
s.homepage = 'https://github.com/rdavid/transcode'
s.files = `git ls-files | grep -E -v '^(test/|\\.)'`.split($RS)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.extra_rdoc_files = ['LICENSE', 'README.adoc']
s.metadata['rubygems_mfa_required'] = 'true'
end