mogilefs-client.git  about / heads / tags
MogileFS client library for Ruby
blob 9d559eeb3438edc385efb069426e9bc1fbdd68ad 500 bytes (raw)
$ git show v1.3.0:lib/mogilefs.rb	# 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
22
23
24
25
26
 
##
# MogileFS is a Ruby client for Danga Interactive's open source distributed
# filesystem.
#
# To read more about Danga's MogileFS: http://danga.com/mogilefs/

module MogileFS

  VERSION = '1.3.0'

  ##
  # Raised when a socket remains unreadable for too long.

  class UnreadableSocketError < RuntimeError; end

end

require 'socket'

require 'mogilefs/backend'
require 'mogilefs/nfsfile'
require 'mogilefs/httpfile'
require 'mogilefs/client'
require 'mogilefs/mogilefs'
require 'mogilefs/admin'


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