mogilefs-client.git  about / heads / tags
MogileFS client library for Ruby
blob fb6a2d56c5b64762b8605c90d4e00fff2606eebe 728 bytes (raw)
$ git show v3.11.1:mogilefs-client.gemspec	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
 
$LOAD_PATH << 'lib'
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 = '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.homepage = 'https://bogomips.org/mogilefs-client/'
  s.license = 'BSD-3-Clause'
end

git clone https://yhbt.net/mogilefs-client.git