module ObStore

This library allows you to persist objects with meta data ObStore supports data expiry and is designed with thread safety

Author

Michael Heijmans (parabuzzle@gmail.com)

Copyright

Copyright © 2014 Michael Heijmans

License

MIT

Provides the Version Constant

Author

Michael Heijmans (parabuzzle@gmail.com)

Copyright

Copyright © 2014 Michael Heijmans

License

MIT

Constants

VERSION

Public Class Methods

require_lib(lib) click to toggle source

require library file that was passed

# File lib/obstore.rb, line 11
def self.require_lib(lib)
  require lib
end
require_libs(libs) click to toggle source

iterates through the passed in array of library paths and requires each of them

# File lib/obstore.rb, line 17
def self.require_libs(libs)
  libs.each do |lib|
    self.require_lib(lib)
  end
end