forked from boncey/ruby-podcast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpodcast.gemspec
More file actions
21 lines (18 loc) · 783 Bytes
/
podcast.gemspec
File metadata and controls
21 lines (18 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "podcast/version"
Gem::Specification.new do |s|
s.name = "ruby-podcast"
s.version = Podcast::VERSION
s.authors = ["Ed Summers", "Darren Greaves"]
s.email = ["github@djgreaves.org"]
s.homepage = "https://github.com/boncey/ruby-podcast"
s.summary = %q{Create podcasts from MP3 files}
s.description = %q{Iterate over a directory of mp3 files and write out a podcast RSS file}
s.rubyforge_project = "ruby-podcast"
s.files = %w{bin/podcast lib/podcast.rb lib/podcast/version.rb}
s.test_files = %w{test/test_podcast.rb}
s.executables = %w{podcast}
s.require_paths = ["lib"]
s.add_dependency "ruby-mp3info"
end