File: em-redis.gemspec

package info (click to toggle)
ruby-em-redis 0.3.0%2Bgh-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 240 kB
  • sloc: ruby: 1,546; makefile: 9; sh: 4
file content (17 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require File.expand_path('../lib/em-redis/version.rb', __FILE__)

Gem::Specification.new do |s|
  s.name = "em-redis"
  s.version = EMRedis::VERSION
  s.authors = ['Jonathan Broad', 'Eugene Pimenov']
  s.email = 'libc@me.com'
  s.homepage = 'http://github.com/libc/em-redis'

  s.files = Dir['lib/**/*', '*.txt']
  s.require_paths = ["lib"]
  s.summary = "An eventmachine-based implementation of the Redis protocol"
  s.description = s.summary

  s.add_dependency "eventmachine"
  s.add_development_dependency "bundler", "~>1.0.rc.6"
end