From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 44C5C20D17 for ; Tue, 31 Jan 2017 18:21:21 +0000 (UTC) From: Eric Wong To: mogilefs-client-public@bogomips.org Subject: [PATCH 4/4] gemspec: remove olddoc development dependency Date: Tue, 31 Jan 2017 18:21:19 +0000 Message-Id: <20170131182119.4020-5-e@80x24.org> In-Reply-To: <20170131182119.4020-1-e@80x24.org> References: <20170131182119.4020-1-e@80x24.org> List-Id: At least it should not be needed for rebuilding the gem, anymore. This will hopefully make it easier to package and hack. --- README | 6 +++--- mogilefs-client.gemspec | 18 +++++++++--------- 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 = < 1.0') - s.homepage = Olddoc.config['rdoc_url'] + s.homepage = 'https://bogomips.org/mogilefs-client/' s.license = 'BSD-3-Clause' end -- EW