about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2014-05-02 22:45:48 +0000
committerEric Wong <normalperson@yhbt.net>2014-05-04 08:14:41 +0000
commit6c5c3027fc65da49c5dd3cd780d09fc05cf987da (patch)
tree17d3b532b5cda480d170f4e026498dbb42bc3c85
parent2255b5c7c1d1cbe0834cfefcab26d54f8008823e (diff)
downloadwrongdoc-6c5c3027fc65da49c5dd3cd780d09fc05cf987da.tar.gz
gemspec: fix warnings from RubyGems
By loosening dependencies a bit and using the Licenses
attribute.
-rwxr-xr-x[-rw-r--r--]bin/wrongdoc0
-rw-r--r--wrongdoc.gemspec8
2 files changed, 3 insertions, 5 deletions
diff --git a/bin/wrongdoc b/bin/wrongdoc
index 5e6bd36..5e6bd36 100644..100755
--- a/bin/wrongdoc
+++ b/bin/wrongdoc
diff --git a/wrongdoc.gemspec b/wrongdoc.gemspec
index f2889e5..d9fdea8 100644
--- a/wrongdoc.gemspec
+++ b/wrongdoc.gemspec
@@ -10,7 +10,6 @@ Gem::Specification.new do |s|
   s.name = %q{wrongdoc}
   s.version = ENV["VERSION"].dup
   s.authors = ["#{name} hackers"]
-  s.date = Time.now.utc.strftime('%Y-%m-%d')
   s.description = readme_description
   s.email = %q{wrongdoc@librelist.org}
   s.executables = %w(wrongdoc)
@@ -19,9 +18,8 @@ Gem::Specification.new do |s|
   s.homepage = Wrongdoc.config[:rdoc_url]
   s.summary = summary
   s.rdoc_options = rdoc_options
-  s.require_paths = %w(lib)
-  s.rubyforge_project = %q{rainbows}
   s.add_dependency(%q<nokogiri>, ['~> 1.5'])
-  s.add_dependency(%q<tidy_ffi>, ['~> 0.1.3'])
-  s.add_dependency(%q<rdoc>, ['~> 3.9.4'])
+  s.add_dependency(%q<tidy_ffi>, ['~> 0.1', '>= 0.1.5'])
+  s.add_dependency(%q<rdoc>, ['~> 3.9', '>= 3.9'])
+  s.licenses = %w(GPLv3+)
 end