-
Notifications
You must be signed in to change notification settings - Fork 23
/
memcache.gemspec
25 lines (22 loc) · 1.03 KB
/
memcache.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.name = "memcache"
gem.version = IO.read('VERSION')
gem.authors = ["Justin Balthrop"]
gem.email = ["[email protected]"]
gem.description = %q{Ruby client for memcached supporting advanced protocol features and pluggable architecture.}
gem.summary = gem.description
gem.homepage = "https://github.com/ninjudd/memcache"
gem.license = 'MIT'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'shoulda', '3.0.1'
gem.add_development_dependency 'mocha'
gem.add_development_dependency 'activerecord'
gem.add_development_dependency 'activerecord-postgresql-adapter'
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.extensions = ["ext/extconf.rb"]
end