X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=mailshears.gemspec;fp=mailshears.gemspec;h=b0a024d7f055e26be559b3ff35d31d6c6ba4ecd1;hp=0000000000000000000000000000000000000000;hb=fd60e4e45d24c7efe5bc2710ae23f60bbb6b7be1;hpb=a3574c5b85a11d30ad3cb067818e99607625eb73 diff --git a/mailshears.gemspec b/mailshears.gemspec new file mode 100644 index 0000000..b0a024d --- /dev/null +++ b/mailshears.gemspec @@ -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