-
Notifications
You must be signed in to change notification settings - Fork 2
/
mondrian_redis_segment_cache.gemspec
30 lines (26 loc) · 1.16 KB
/
mondrian_redis_segment_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 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mondrian_redis_segment_cache/version'
Gem::Specification.new do |gem|
gem.name = "mondrian_redis_segment_cache"
gem.version = MondrianRedisSegmentCache::VERSION
gem.authors = ["Brandon Dewitt"]
gem.email = ["[email protected]"]
gem.description = %q{Segment Cache for Mondrian written in JRuby with Redis as the cache store}
gem.summary = %q{Segment Cache for Mondrian written in JRuby with Redis as the cache store}
gem.homepage = ""
gem.platform = "java"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "redis"
gem.add_dependency "java_to_base64"
gem.add_dependency "mondrian-olap"
gem.add_dependency "concurrent-ruby"
gem.add_development_dependency "bundler"
gem.add_development_dependency "mocha"
gem.add_development_dependency "pry"
gem.add_development_dependency "rake"
end