Module: ZMQMachine
- Defined in:
- lib/zm/timers.rb,
lib/zm/address.rb,
lib/zm/message.rb,
lib/zm/reactor.rb,
lib/zmqmachine.rb,
lib/zm/deferrable.rb,
lib/zm/exceptions.rb,
lib/zm/log_client.rb,
lib/zm/log_server.rb,
lib/zm/server/pub.rb,
lib/zm/server/rep.rb,
lib/zm/server/req.rb,
lib/zm/server/sub.rb,
lib/zm/server/base.rb,
lib/zm/server/pair.rb,
lib/zm/server/pull.rb,
lib/zm/server/push.rb,
lib/zm/sockets/pub.rb,
lib/zm/sockets/rep.rb,
lib/zm/sockets/req.rb,
lib/zm/sockets/sub.rb,
lib/zm/device/queue.rb,
lib/zm/sockets/base.rb,
lib/zm/sockets/pair.rb,
lib/zm/sockets/pull.rb,
lib/zm/sockets/push.rb,
lib/zm/configuration.rb,
lib/zm/configuration.rb,
lib/zm/configuration.rb,
lib/zm/device/forwarder.rb,
lib/zm/device/configuration.rb,
lib/zm/server/configuration.rb,
lib/zm/sockets/envelope_help.rb,
lib/zm/server/routing_envelope.rb
Overview
–
- Author
-
Chuck Remes
- Homepage
- Date
-
20100823
Copyright © 2010 by Chuck Remes. All Rights Reserved. Email: cremes at mac dot com
(The MIT License)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Defined Under Namespace
Modules: ConfigClassMaker, Deferrable, Device, Message, Server, Socket Classes: Address, ConnectionError, DefaultDeferrable, LogClient, LogServer, NotReadyError, Reactor, SetsockoptError, TimeoutError, Timer, Timers, UnknownAddressError
Constant Summary collapse
- LIBPATH =
:stopdoc:
::File.(::File.dirname(__FILE__)) + ::File::SEPARATOR
- PATH =
::File.dirname(LIBPATH) + ::File::SEPARATOR
Class Method Summary collapse
-
.libpath(*args, &block) ⇒ Object
Returns the library path for the module.
-
.path(*args, &block) ⇒ Object
Returns the lpath for the module.
-
.require_all_libs_relative_to(fname, dir = nil) ⇒ Object
Utility method used to require all files ending in .rb that lie in the directory below this file that has the same name as the filename passed in.
-
.version ⇒ Object
Returns the version string for the library.
Class Method Details
.libpath(*args, &block) ⇒ Object
Returns the library path for the module. If any arguments are given, they will be joined to the end of the libray path using File.join
.
19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/zmqmachine.rb', line 19 def self.libpath( *args, &block ) rv = args.empty? ? LIBPATH : ::File.join(LIBPATH, args.flatten) if block begin $LOAD_PATH.unshift LIBPATH rv = block.call ensure $LOAD_PATH.shift end end return rv end |
.path(*args, &block) ⇒ Object
Returns the lpath for the module. If any arguments are given, they will be joined to the end of the path using File.join
.
36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/zmqmachine.rb', line 36 def self.path( *args, &block ) rv = args.empty? ? PATH : ::File.join(PATH, args.flatten) if block begin $LOAD_PATH.unshift PATH rv = block.call ensure $LOAD_PATH.shift end end return rv end |
.require_all_libs_relative_to(fname, dir = nil) ⇒ Object
Utility method used to require all files ending in .rb that lie in the directory below this file that has the same name as the filename passed in. Optionally, a specific directory name can be passed in such that the filename does not have to be equivalent to the directory.
54 55 56 57 58 59 60 |
# File 'lib/zmqmachine.rb', line 54 def self.require_all_libs_relative_to( fname, dir = nil ) dir ||= ::File.basename(fname, '.*') search_me = ::File.( ::File.join(::File.dirname(fname), dir, '**', '*.rb')) Dir.glob(search_me).sort.each {|rb| require rb} end |
.version ⇒ Object
Returns the version string for the library.
11 12 13 |
# File 'lib/zmqmachine.rb', line 11 def self.version @version ||= File.read(path('version.txt')).strip end |