]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - mailshears.gemspec
Add the GPL3 'LICENSE' file.
[mailshears.git] / mailshears.gemspec
diff --git a/mailshears.gemspec b/mailshears.gemspec
new file mode 100644 (file)
index 0000000..b0a024d
--- /dev/null
@@ -0,0 +1,23 @@
+Gem::Specification.new do |s|
+
+  s.name              = 'mailshears'
+  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/code/'
+  s.summary           = 'Prune unused mail directories.'
+  s.description       = s.summary
+
+  s.required_rubygems_version = '>= 1.3.6'
+
+  # If you have runtime dependencies, add them here
+  s.add_runtime_dependency 'pg', '>= 0.11.0'
+
+  # The list of files to be contained in the gem
+  s.files         = `git ls-files`.split("\n")
+  s.executables   = ['mailshears']
+
+  s.require_path = 'lib'
+
+end