]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/commitdiff
Add a gemspec file, completing(?) the move to a sane package layout.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 13 Jun 2012 03:33:36 +0000 (23:33 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 13 Jun 2012 03:33:36 +0000 (23:33 -0400)
whatever-dl.gemspec [new file with mode: 0644]

diff --git a/whatever-dl.gemspec b/whatever-dl.gemspec
new file mode 100644 (file)
index 0000000..c812fd0
--- /dev/null
@@ -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