forked from orslumen/record-cache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
record-cache.gemspec
30 lines (25 loc) · 1.25 KB
/
record-cache.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
29
30
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "record_cache/version"
Gem::Specification.new do |s|
s.name = "record-cache"
s.version = RecordCache::Version::STRING
s.authors = ["Orslumen"]
s.email = "[email protected]"
s.homepage = "https://github.com/orslumen/record-cache"
s.summary = "Record Cache v#{RecordCache::Version::STRING} transparantly stores Records in a Cache Store and retrieve those Records from the store when queried (by ID) using Active Model."
s.description = "Record Cache for Rails 3"
s.files = `git ls-files -- lib/*`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
s.add_runtime_dependency "rails", [">= 3.0"] # add ,"< 3.1" when testing active_record_30 code
s.add_development_dependency "activerecord", [">= 3.0"] # add ,"< 3.1" when testing active_record_30 code
s.add_development_dependency "sqlite3"
s.add_development_dependency "rake"
s.add_development_dependency "rcov"
s.add_development_dependency "rspec"
s.add_development_dependency "rr"
s.add_development_dependency "database_cleaner"
s.add_development_dependency "rdoc"
end