forked from seancribbs/riak-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathriak-cache.gemspec
More file actions
26 lines (23 loc) · 1.1 KB
/
riak-cache.gemspec
File metadata and controls
26 lines (23 loc) · 1.1 KB
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
$:.push File.expand_path("../lib", __FILE__)
require 'riak-cache/version'
Gem::Specification.new do |gem|
# Meta
gem.name = "riak-cache"
gem.version = Riak::Cache::VERSION
gem.summary = %Q{riak-cache is an ActiveSupport::Cache::Store that is backed by Riak.}
gem.description = %Q{riak-cache is an ActiveSupport::Cache::Store that is backed by Riak. It supports ActiveSupport version 3.x.}
gem.email = ["sean@basho.com"]
gem.homepage = "http://github.com/seancribbs/riak-cache"
gem.authors = ["Sean Cribbs"]
# Deps
gem.add_development_dependency "rspec", "~>2.8.0"
gem.add_development_dependency 'rake'
gem.add_runtime_dependency "riak-client", "~> 1.0.0"
gem.add_runtime_dependency "activesupport", "~> 3.0"
# Files
ignores = File.read(".gitignore").split(/\r?\n/).reject{ |f| f =~ /^(#.+|\s*)$/ }.map {|f| Dir[f] }.flatten
gem.files = (Dir['**/*','.gitignore'] - ignores).reject {|f| !File.file?(f) }
gem.test_files = (Dir['spec/**/*','.gitignore'] - ignores).reject {|f| !File.file?(f) }
# gem.executables = Dir['bin/*'].map { |f| File.basename(f) }
gem.require_paths = ['lib']
end