]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - whatever-dl.gemspec
Add a gemspec file, completing(?) the move to a sane package layout.
[dead/whatever-dl.git] / whatever-dl.gemspec
1 Gem::Specification.new do |s|
2
3 s.name = 'whatever-dl'
4 s.version = '0.0.1'
5 s.platform = Gem::Platform::RUBY
6 s.authors = ['Michael Orlitzky']
7 s.email = ['michael@orlitzky.com']
8 s.homepage = 'http://michael.orlitzky.com/git/?p=whatever-dl.git'
9 s.summary = 'Download Flash and HTML5 videos from websites.'
10 s.description = s.summary
11
12 s.required_rubygems_version = '>= 1.3.6'
13
14 # The list of files to be contained in the gem
15 s.files = `git ls-files`.split("\n")
16 s.executables = ['whatever-dl']
17
18 s.require_path = 'lib'
19
20 end