Sha256: a62fa99f468ffc367e70c05c75890e59fe4cdd82f4e2980cad45b83ad0d1b2ca
Contents?: true
Size: 991 Bytes
Versions: 2
Compression:
Stored size: 991 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "hella-redis/version" Gem::Specification.new do |gem| gem.name = "hella-redis" gem.version = HellaRedis::VERSION gem.authors = ["Kelly Redding", "Collin Redding"] gem.email = ["kelly@kellyredding.com", "collin.redding@me.com"] gem.description = %q{It's-a hella-redis!} gem.summary = %q{It's-a hella-redis!} gem.homepage = "http://github.com/redding/hella-redis" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_development_dependency("assert") gem.add_dependency("redis", ["~> 3.0"]) gem.add_dependency("redis-namespace", ["~> 1.0"]) gem.add_dependency("connection_pool", ["= 0.9.2"]) # temp, for 1.8.7 support end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hella-redis-0.1.1 | hella-redis.gemspec |
hella-redis-0.1.0 | hella-redis.gemspec |