mogilefs-client.git  about / heads / tags
MogileFS client library for Ruby
blob ad912cd216bd58b06b8d0e3f3550cc4f506d1516 749 bytes (raw)
$ git show HEAD: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
21
 
$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:
https://github.com/mogilefs/MogileFS-Server/wiki 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@yhbt.net'
  s.files = manifest
  s.homepage = 'https://yhbt.net/mogilefs-client/'
  s.license = 'BSD-3-Clause'
end

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