Sha256: ca662e5f2b414ead9b62281f4ee890ae9c444a5ac13fe88731389c740a2bb499

Contents?: true

Size: 705 Bytes

Versions: 5

Compression:

Stored size: 705 Bytes

Contents

require "rake/testtask"

REDIS_DIR = File.expand_path(File.join("..", "test"), __FILE__)
REDIS_CNF = File.join(REDIS_DIR, "test.conf")
REDIS_PID = File.join(REDIS_DIR, "db", "redis.pid")

task :default => :run

desc "Run tests and manage server start/stop"
task :run => [:start, :test, :stop]

desc "Start the Redis server"
task :start do
    unless File.exists?(REDIS_PID)
        system "redis-server #{REDIS_CNF}"
    end
end

desc "Stop the Redis server"
task :stop do
    if File.exists?(REDIS_PID)
        system "kill #{File.read(REDIS_PID)}"
        File.delete(REDIS_PID)
    end
end

Rake::TestTask.new do |t|
  t.libs << "test"
  t.test_files = FileList['test/test*.rb']
  t.verbose = true
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ohm-tallyable-0.1.4 Rakefile
ohm-tallyable-0.1.3 Rakefile
ohm-tallyable-0.1.2 Rakefile
ohm-tallyable-0.1.1 Rakefile
ohm-tallyable-0.1.0 Rakefile