-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathredis_props.gemspec
28 lines (24 loc) · 1.26 KB
/
redis_props.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
26
27
28
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/redis_props/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "redis_props"
gem.version = RedisProps::VERSION
gem.authors = ["Obie Fernandez"]
gem.email = ["[email protected]"]
gem.description = %q{A simple way to annotate ActiveRecord objects with properties that are stored in Redis.
Perfect for adding attributes to your models that you won't have to worry about querying
or reporting on later. Examples include flags, preferences, etc.}
gem.summary = %q{Add non-relational attributes to your ActiveRecord objects.}
gem.homepage = "http://github.com/obie/redis_properties"
gem.files = `git ls-files`.split($\)
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.add_development_dependency "rspec"
gem.add_development_dependency "activesupport"
gem.add_development_dependency "sqlite3"
gem.add_development_dependency "pry-nav"
gem.add_runtime_dependency "activesupport"
gem.add_runtime_dependency "activerecord"
gem.add_runtime_dependency "redis"
end