Sha256: 839c83ef881d6086a7340ca8cac8ca64fd1752c1377de79276ef9a2b8b42697a

Contents?: true

Size: 301 Bytes

Versions: 5

Compression:

Stored size: 301 Bytes

Contents

require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:test)

task :default => :test

task :client do
	require 'irb'
	require 'async/redis/client'
	
	endpoint = Async::Redis.local_endpoint
	client = Async::Redis::Client.new(endpoint)
	
	Async do
		binding.irb
	end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
async-redis-0.4.2 Rakefile
async-redis-0.4.1 Rakefile
async-redis-0.4.0 Rakefile
async-redis-0.3.4 Rakefile
async-redis-0.3.3 Rakefile