module Bario

Main module of Bario

Constants

VERSION

Public Class Methods

redic() click to toggle source
# File lib/bario.rb, line 10
def self.redic
  Ohm.redis
end
redic=(redic) click to toggle source
# File lib/bario.rb, line 18
def self.redic=(redic)
  Ohm.redis = redic
end
redis_uri=(uri) click to toggle source
# File lib/bario.rb, line 14
def self.redis_uri=(uri)
  Ohm.redis = Redic.new(uri)
end