Sha256: 663f13ceb8cb9631a8b9f95d0d4e631d818fbc9ca420fc9c29e98db5392313af
Contents?: true
Size: 468 Bytes
Versions: 1
Compression:
Stored size: 468 Bytes
Contents
REDIS_RELEASE = "2.6.14" Execute.define_task do desc "redis-download", "Download redis release #{REDIS_RELEASE}" def redis_download unless windows? system 'rm -rf /tmp/redis/' if File.exists?("#{RedisRunner.redisdir}") system 'git clone git://github.com/antirez/redis.git /tmp/redis -n' system "cd #{RedisRunner.redisdir} && git reset --hard && git checkout #{REDIS_RELEASE}" else puts "Not implemented on Windows" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rhoconnect-4.0.1 | commands/redis/redis_download.rb |