diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-17 21:53:17 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-17 21:53:17 -0700 |
commit | 595e03336f7366b5143a8af295b4e0fefbb8f294 (patch) | |
tree | 5fd1def896a16653d7ffb5ebfe64c27638fda183 /activesupport/lib/active_support/cache | |
parent | bd84b820188daed991756531071137dc7e0876a0 (diff) | |
download | rails-595e03336f7366b5143a8af295b4e0fefbb8f294.tar.gz rails-595e03336f7366b5143a8af295b4e0fefbb8f294.tar.bz2 rails-595e03336f7366b5143a8af295b4e0fefbb8f294.zip |
Remove rarely-used DRb cache store
Diffstat (limited to 'activesupport/lib/active_support/cache')
-rw-r--r-- | activesupport/lib/active_support/cache/drb_store.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/activesupport/lib/active_support/cache/drb_store.rb b/activesupport/lib/active_support/cache/drb_store.rb deleted file mode 100644 index b16ed25aa3..0000000000 --- a/activesupport/lib/active_support/cache/drb_store.rb +++ /dev/null @@ -1,14 +0,0 @@ -module ActiveSupport - module Cache - class DRbStore < MemoryStore #:nodoc: - attr_reader :address - - def initialize(address = 'druby://localhost:9192') - require 'drb' unless defined?(DRbObject) - super() - @address = address - @data = DRbObject.new(nil, address) - end - end - end -end |