--- /dev/null
+Gem::Specification.new do |s|
+
+ s.name = 'whatever-dl'
+ s.version = '0.0.1'
+ s.platform = Gem::Platform::RUBY
+ s.authors = ['Michael Orlitzky']
+ s.email = ['michael@orlitzky.com']
+ s.homepage = 'http://michael.orlitzky.com/git/?p=whatever-dl.git'
+ s.summary = 'Download Flash and HTML5 videos from websites.'
+ s.description = s.summary
+
+ s.required_rubygems_version = '>= 1.3.6'
+
+ # The list of files to be contained in the gem
+ s.files = `git ls-files`.split("\n")
+ s.executables = ['whatever-dl']
+
+ s.require_path = 'lib'
+
+end