Sha256: 8c355ba729d3c1163f99f4ff1ea119d5f7f80fa958ebc2fba1701704860e9fcc

Contents?: true

Size: 296 Bytes

Versions: 1

Compression:

Stored size: 296 Bytes

Contents

module Daijobu
  
  module Adapter
    
    class TokyoTyrantAdapter
      
      def initialize(store)
        @store = store
      end
      
      def get(key)
        @store[key]
      end
      
      def set(key, value)
        @store[key] = value
      end
      
    end
    
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sander6-daijobu-0.1.1 lib/daijobu/adapters/tokyo_tyrant.rb