Module: Active

Defined in:
lib/services/IActivity.rb,
lib/Active.rb,
lib/services/ats.rb,
lib/services/gsa.rb,
lib/services/_ats.rb,
lib/services/search.rb,
lib/services/address.rb,
lib/services/activity.rb,
lib/services/dto/user.rb,
lib/services/reg_center.rb,
lib/services/validators.rb,
lib/services/active_works.rb

Overview

require ‘./defaultDriver.rb’

Defined Under Namespace

Modules: Services

Constant Summary collapse

LIBPATH =

:stopdoc:

::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
PATH =
::File.dirname(LIBPATH) + ::File::SEPARATOR

Class Method Summary collapse

Class Method Details

.CACHEObject



71
72
73
# File 'lib/Active.rb', line 71

def self.CACHE
  @CACHE
end

.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.



22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/Active.rb', line 22

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

.memcache_host(url) ⇒ Object

Active.memcache_host = “localhost:11211”



66
67
68
69
# File 'lib/Active.rb', line 66

def self.memcache_host(url)
  require 'dalli'
  @CACHE = Dalli::Client.new(url)
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.



39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/Active.rb', line 39

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.



57
58
59
60
61
62
63
# File 'lib/Active.rb', line 57

def self.require_all_libs_relative_to( fname, dir = nil )
  dir ||= ::File.basename(fname, '.*')
  search_me = ::File.expand_path(
      ::File.join(::File.dirname(fname), dir, '**', '*.rb'))

  Dir.glob(search_me).sort.each {|rb| require rb}
end

.versionObject

Returns the version string for the library.



14
15
16
# File 'lib/Active.rb', line 14

def self.version
  @version ||= File.read(path('version.txt')).strip
end