-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandbrake.gemspec
More file actions
22 lines (18 loc) · 880 Bytes
/
handbrake.gemspec
File metadata and controls
22 lines (18 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'handbrake/version'
Gem::Specification.new do |spec|
spec.name = 'handbrake-ruby'
spec.version = Handbrake::VERSION
spec.authors = ['Mathias Karstädt']
spec.email = ['mathias.karstaedt@gmail.com']
spec.summary = 'Ruby wrapper for HandBrake CLI'
spec.description = 'A Ruby library that provides an easy-to-use interface for the HandBrake CLI video transcoder'
spec.homepage = 'https://github.com/webmatze/handbrake-ruby'
spec.license = 'MIT'
spec.files = Dir.glob('{bin,lib}/**/*') + %w[LICENSE README.md]
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
end