Sha256: 4f18dccfd05982d48ecc9e7a917e76db723de38c76596db13233f429bf94d6d2
Contents?: true
Size: 696 Bytes
Versions: 1
Compression:
Stored size: 696 Bytes
Contents
$:.unshift(File.dirname(__FILE__)) unless $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__))) require 'mongo' require 'set' require 'magent/utils' require 'magent/generic_channel' require 'magent/channel' require 'magent/push' require 'magent/actor' require 'magent/processor' module Magent VERSION = '0.1.3' def self.connection @@connection ||= Mongo::Connection.new(nil, nil, :auto_reconnect => true) end def self.connection=(new_connection) @@connection = new_connection end def self.database=(name) @@database = Magent.connection.db(name) end def self.database @@database end end Magent.database = 'magent'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
magent-0.1.3 | lib/magent.rb |