-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis-column.gemspec
25 lines (23 loc) · 1.06 KB
/
redis-column.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "redis-column/version"
Gem::Specification.new do |s|
s.name = "redis-column"
s.version = RedisColumn::VERSION
s.authors = ["Alex Neill"]
s.email = ["alex.neill@gmail.com"]
s.homepage = "https://github.com/ajn/redis-column"
s.summary = %q{Seamlessly extend your AR model with Redis}
s.description = %q{The RedisColumn gem allows for the seamless integration of Redis within your ActiveRecord model in order to store heavy objects away from tables with a lot of rows.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "activerecord"
s.add_dependency "redis"
# specify any dependencies here; for example:
s.add_development_dependency "rspec"
s.add_development_dependency "autotest"
s.add_development_dependency "sqlite3"
s.add_development_dependency "fakeredis"
end