about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-01-31 18:10:10 +0000
committerEric Wong <e@80x24.org>2017-01-31 18:19:20 +0000
commit198f1025eb47139e927dddedf659728bc810c8cf (patch)
treef6f5a7282b46643de11d3fcb6e5da5f009b8700d
parentf8f4014a45d5446fa2eb34e79b042c84664cd0f7 (diff)
downloadmogilefs-client-198f1025eb47139e927dddedf659728bc810c8cf.tar.gz
At least it should not be needed for rebuilding the gem,
anymore.  This will hopefully make it easier to package
and hack.
-rw-r--r--README6
-rw-r--r--mogilefs-client.gemspec18
2 files changed, 12 insertions, 12 deletions
diff --git a/README b/README
index ab84111..a3f1ae4 100644
--- a/README
+++ b/README
@@ -1,9 +1,9 @@
 = mogilefs-client - MogileFS client library for Ruby
 
 A MogileFS client library for Ruby.  MogileFS is an open source
-distributed filesystem, see: http://mogilefs.org for more details.  This
-library allows any Ruby application to read, write and delete files in a
-MogileFS instance.
+distributed filesystem, see: http://mogilefs.org for more details.
+This library allows any Ruby application to read, write and delete
+files in a MogileFS instance.
 
 == Links
 
diff --git a/mogilefs-client.gemspec b/mogilefs-client.gemspec
index d5ce96b..fb6a2d5 100644
--- a/mogilefs-client.gemspec
+++ b/mogilefs-client.gemspec
@@ -1,20 +1,20 @@
-ENV["VERSION"] or abort "VERSION= must be specified"
-require 'olddoc'
 $LOAD_PATH << 'lib'
-require 'mogilefs'
-extend Olddoc::Gemspec
-name, summary, title = readme_metadata
+require 'mogilefs' # for MogileFS::VERSION
 Gem::Specification.new do |s|
   manifest = File.read('.manifest').split(/\n/)
   s.name = 'mogilefs-client'
   s.version = MogileFS::VERSION
   s.executables = %w(mog)
   s.authors = ["#{s.name} hackers"]
-  s.summary = summary
-  s.description = readme_description
+  s.summary = 'MogileFS client library for Ruby'
+  s.description = <<EOF
+A MogileFS client library for Ruby.  MogileFS is an open source
+distributed filesystem, see: http://mogilefs.org for more details.
+This library allows any Ruby application to read, write and delete
+files in a MogileFS instance.
+EOF
   s.email = 'mogilefs-client-public@bogomips.org'
   s.files = manifest
-  s.add_development_dependency('olddoc', '~> 1.0')
-  s.homepage = Olddoc.config['rdoc_url']
+  s.homepage = 'https://bogomips.org/mogilefs-client/'
   s.license = 'BSD-3-Clause'
 end