From: Michael Orlitzky Date: Wed, 13 Jun 2012 03:33:36 +0000 (-0400) Subject: Add a gemspec file, completing(?) the move to a sane package layout. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fwhatever-dl.git;a=commitdiff_plain;h=a440e90760bc16cef9ed6c20534bf491fe43db93 Add a gemspec file, completing(?) the move to a sane package layout. --- diff --git a/whatever-dl.gemspec b/whatever-dl.gemspec new file mode 100644 index 0000000..c812fd0 --- /dev/null +++ b/whatever-dl.gemspec @@ -0,0 +1,20 @@ +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