dalli - initial gem2deb package.
authorFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 11 Mar 2014 23:34:37 +0000 (00:34 +0100)
committerFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 11 Mar 2014 23:36:13 +0000 (00:36 +0100)
commita3be7eea17e38c6d53976c887cd2ae2972a2555f
tree519a9afc8031c24cba4da65066919698e0645bbb
parentf9ee651927f659f6b5331f93819df6db999306fc
dalli - initial gem2deb package.
46 files changed:
ruby-dalli/Gemfile [new file with mode: 0644]
ruby-dalli/History.md [new file with mode: 0644]
ruby-dalli/LICENSE [new file with mode: 0644]
ruby-dalli/Performance.md [new file with mode: 0644]
ruby-dalli/README.md [new file with mode: 0644]
ruby-dalli/Rakefile [new file with mode: 0644]
ruby-dalli/checksums.yaml.gz [new file with mode: 0644]
ruby-dalli/dalli.gemspec [new file with mode: 0644]
ruby-dalli/debian/changelog [new file with mode: 0644]
ruby-dalli/debian/compat [new file with mode: 0644]
ruby-dalli/debian/control [new file with mode: 0644]
ruby-dalli/debian/copyright [new file with mode: 0644]
ruby-dalli/debian/ruby-dalli.docs [new file with mode: 0644]
ruby-dalli/debian/ruby-test-files.yaml [new file with mode: 0644]
ruby-dalli/debian/rules [new file with mode: 0755]
ruby-dalli/debian/source/format [new file with mode: 0644]
ruby-dalli/debian/watch [new file with mode: 0644]
ruby-dalli/lib/action_dispatch/middleware/session/dalli_store.rb [new file with mode: 0644]
ruby-dalli/lib/active_support/cache/dalli_store.rb [new file with mode: 0644]
ruby-dalli/lib/dalli.rb [new file with mode: 0644]
ruby-dalli/lib/dalli/cas/client.rb [new file with mode: 0644]
ruby-dalli/lib/dalli/client.rb [new file with mode: 0644]
ruby-dalli/lib/dalli/compressor.rb [new file with mode: 0644]
ruby-dalli/lib/dalli/options.rb [new file with mode: 0644]
ruby-dalli/lib/dalli/railtie.rb [new file with mode: 0644]
ruby-dalli/lib/dalli/ring.rb [new file with mode: 0644]
ruby-dalli/lib/dalli/server.rb [new file with mode: 0644]
ruby-dalli/lib/dalli/socket.rb [new file with mode: 0644]
ruby-dalli/lib/dalli/version.rb [new file with mode: 0644]
ruby-dalli/lib/rack/session/dalli.rb [new file with mode: 0644]
ruby-dalli/metadata.yml [new file with mode: 0644]
ruby-dalli/test/benchmark_test.rb [new file with mode: 0644]
ruby-dalli/test/helper.rb [new file with mode: 0644]
ruby-dalli/test/memcached_mock.rb [new file with mode: 0644]
ruby-dalli/test/sasldb [new file with mode: 0644]
ruby-dalli/test/test_active_support.rb [new file with mode: 0644]
ruby-dalli/test/test_cas_client.rb [new file with mode: 0644]
ruby-dalli/test/test_compressor.rb [new file with mode: 0644]
ruby-dalli/test/test_dalli.rb [new file with mode: 0644]
ruby-dalli/test/test_encoding.rb [new file with mode: 0644]
ruby-dalli/test/test_failover.rb [new file with mode: 0644]
ruby-dalli/test/test_network.rb [new file with mode: 0644]
ruby-dalli/test/test_rack_session.rb [new file with mode: 0644]
ruby-dalli/test/test_ring.rb [new file with mode: 0644]
ruby-dalli/test/test_sasl.rb [new file with mode: 0644]
ruby-dalli/test/test_serializer.rb [new file with mode: 0644]