forked from yonahforst/jbuilder_cache_multi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjbuilder_cache_multi.gemspec
More file actions
24 lines (19 loc) · 911 Bytes
/
jbuilder_cache_multi.gemspec
File metadata and controls
24 lines (19 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jbuilder_cache_multi/version'
Gem::Specification.new do |spec|
spec.name = "jbuilder_cache_multi"
spec.version = JbuilderCacheMulti::VERSION
spec.authors = ["Yonah Forst"]
spec.email = ["joshblour@hotmail.com"]
spec.summary = %q{Adds cache_collection! to jbuilder. Uses memcache fetch_multi/read_multi}
spec.homepage = "http://www.github.com/joshblour/jbuilder_cache_multi"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 1.9.3'
spec.add_dependency 'jbuilder', '>= 1.5.0', '< 3'
end