X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=mailshears.gemspec;h=1dc7b0d707a17129bd93b86b9f32f00dbef9bf3d;hp=6af744f0486d29ac836dec338591166f3445d705;hb=313f50286308da3e0669d477e7d6ad1c5937c24b;hpb=439b686d8a0907bf8c0fc86a50014754da380534 diff --git a/mailshears.gemspec b/mailshears.gemspec index 6af744f..1dc7b0d 100644 --- a/mailshears.gemspec +++ b/mailshears.gemspec @@ -1,11 +1,11 @@ Gem::Specification.new do |s| s.name = 'mailshears' - s.version = '0.0.1' + s.version = '0.0.2' s.platform = Gem::Platform::RUBY s.authors = ['Michael Orlitzky'] s.email = ['michael@orlitzky.com'] - s.homepage = 'http://michael.orlitzky.com/code/mailshears.php' + s.homepage = 'http://michael.orlitzky.com/code/mailshears.xhtml' s.summary = 'Prune unused mail directories.' s.description = <<-EOF Managing a mail system with virtual users is annoying. The @@ -30,9 +30,12 @@ Gem::Specification.new do |s| # If you have runtime dependencies, add them here s.add_runtime_dependency 'pg', '~> 0.11' - # The list of files to be contained in the gem - s.files = `git ls-files`.split("\n") - s.executables = ['mailshears'] + # The list of files to be contained in the gem. We can obtain it + # from git as long as we remember that this magic will happen and we + # don't add any files in weird locations or build the gem before + # running `git add`. + s.files = `git ls-files`.split("\n") + s.executables = ['mailshears'] s.require_path = 'lib'