Sha256: fd79124f188d5c2d6dcaab6d0aa1d75ac381f7f0b29d4dac4eb135e73a878c97
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
require 'echoe' Echoe.new("memcache-auth") do |p| p.author = "Evan Weaver - updated by NorthScale for auth support" p.project = "Memcache-Auth" p.summary = "An interface to the libmemcached C client + sasl auth support." p.url = "http://github.com/seanlynch/libmemcached-ruby" p.docs_host = "blog.evanweaver.com:~/www/bax/public/files/doc/" p.rdoc_pattern = /README|TODO|LICENSE|CHANGELOG|BENCH|COMPAT|exceptions|behaviors|rails.rb|memcached.rb/ p.clean_pattern += ["ext/lib", "ext/include", "ext/share", "ext/libmemcached-?.??", "ext/bin", "ext/conftest.dSYM"] end task :exceptions do $LOAD_PATH << "lib" require 'memcached' Memcached.constants.sort.each do |const_name| const = Memcached.send(:const_get, const_name) next if const == Memcached::Success or const == Memcached::Stored if const.is_a? Class and const < Memcached::Error puts "* Memcached::#{const_name}" end end end task :valgrind do exec("valgrind --tool=memcheck --leak-check=yes --show-reachable=no --num-callers=15 --track-fds=yes ruby #{File.dirname(__FILE__)}/test/profile/valgrind.rb") end task :profile do exec("ruby #{File.dirname(__FILE__)}/test/profile/profile.rb") end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
memcache-auth-0.17.7 | Rakefile |