forked from funkenstrahlen/podcast-to-youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpodcast-to-youtube.gemspec
18 lines (16 loc) · 998 Bytes
/
podcast-to-youtube.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Gem::Specification.new do |spec|
spec.name = 'podcast-to-youtube'
spec.version = '0.3.6'
spec.licenses = ['MIT']
spec.summary = "Ruby script to upload an existing podcast feed and to Youtube."
spec.description = "Take your existing podcast feed and upload it to Youtube. The script will automatically generate video .mkv files from your audio files with the episode image as a still image. As far as possible metadata from the podcast feed will be added to the Youtube video. All uploaded videos are private by default, so you can review them before publishing."
spec.authors = ["Stefan Trauth"]
spec.email = '[email protected]'
spec.homepage = 'https://github.com/funkenstrahlen/podcast-to-youtube'
spec.files = ["lib/podcast-to-youtube.rb"]
spec.executables << 'podcast-to-youtube'
spec.required_ruby_version = '>= 1.9.3'
spec.add_dependency 'feedjira', '~> 2.0'
spec.add_dependency 'yt', '~> 0.25'
spec.add_dependency 'json', '~> 1.7'
end