mogilefs-client.git  about / heads / tags
MogileFS client library for Ruby
blob c6adc4f1a8f02cca7f6ff492110e00269083e488 620 bytes (raw)
$ git show v3.9.0: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
 
ENV["VERSION"] or abort "VERSION= must be specified"
require 'olddoc'
$LOAD_PATH << 'lib'
require 'mogilefs'
extend Olddoc::Gemspec
name, summary, title = readme_metadata
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.email = Olddoc.config['private_email']
  s.files = manifest
  s.add_development_dependency('olddoc', '~> 1.0')
  s.homepage = Olddoc.config['rdoc_url']
  s.license = 'BSD-3-Clause'
end

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