Sha256: 62481d8058abc59c895686c1e714ef1d7699f456f97616cd2f6bb08f6af755d9

Contents?: true

Size: 928 Bytes

Versions: 1

Compression:

Stored size: 928 Bytes

Contents

# -*- encoding: utf-8 -*-

$:.unshift File.expand_path("../lib", __FILE__)

require "redis/version"

Gem::Specification.new do |s|
  s.name = "discourse-redis"

  s.version = Redis::VERSION

  s.homepage = "https://github.com/discourse/redis-rb"

  s.summary = "A Ruby client library for Redis"

  s.description = <<-EOS
    A Ruby client that tries to match Redis' API one-to-one, while still
    providing an idiomatic interface. It features thread-safety,
    client-side sharding, pipelining, and an obsession for performance.
  EOS

  s.license = "MIT"

  s.authors = ["Alan Tan Guo Xiang"]

  s.email = ["tgx_world@hotmail.com"]

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }

  s.add_development_dependency("rake")
  s.add_development_dependency("test-unit")
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
discourse-redis-3.2.2 redis.gemspec