-
Notifications
You must be signed in to change notification settings - Fork 39
/
record-cache.gemspec
34 lines (29 loc) · 1.3 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
31
32
33
34
# -*- 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 = 'orslumen@gmail.com'
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 using Active Model."
s.description = 'Record Cache for Rails 3'
s.license = 'MIT'
s.files = `git ls-files -- lib/*`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_path = 'lib'
s.add_runtime_dependency 'rails'
s.add_development_dependency 'bundler'
s.add_development_dependency 'activerecord', '< 4.2'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'pry'
s.add_development_dependency 'mysql2'
s.add_development_dependency 'rake'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'database_cleaner'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'test_after_commit'
s.add_development_dependency 'timecop'
end