forked from bnmrrs/ruby-youtube-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-youtube-dl.gemspec
More file actions
24 lines (20 loc) · 839 Bytes
/
ruby-youtube-dl.gemspec
File metadata and controls
24 lines (20 loc) · 839 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ruby-youtube-dl/version"
Gem::Specification.new do |s|
s.name = "ruby-youtube-dl"
s.version = YoutubeDL::VERSION
s.authors = ["Ben Morris"]
s.email = ["ben@bnmrrs.com"]
s.homepage = "https://github.com/bnmrrs/ruby-youtube-dl"
s.summary = %q{Wrapper around the youtube-dl python lib}
s.description = %q{Wraps youtube-dl for easy package management}
s.rubyforge_project = "ruby-youtube-dl"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables << 'ruby-youtube-dl'
s.require_paths = ["lib"]
# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
# s.add_runtime_dependency "rest-client"
end