Froze rails gems
[depot.git] / vendor / rails / activesupport / lib / active_support / cache / drb_store.rb
1 require 'drb'
2
3 module ActiveSupport
4 module Cache
5 class DRbStore < MemoryStore #:nodoc:
6 attr_reader :address
7
8 def initialize(address = 'druby://localhost:9192')
9 super()
10 @address = address
11 @data = DRbObject.new(nil, address)
12 end
13 end
14 end
15 end