From a440e90760bc16cef9ed6c20534bf491fe43db93 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 12 Jun 2012 23:33:36 -0400 Subject: [PATCH] Add a gemspec file, completing(?) the move to a sane package layout. --- whatever-dl.gemspec | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 whatever-dl.gemspec 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 -- 2.43.2