-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathmondrian-olap.gemspec
More file actions
27 lines (23 loc) · 1.15 KB
/
mondrian-olap.gemspec
File metadata and controls
27 lines (23 loc) · 1.15 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
27
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mondrian/olap/version'
Gem::Specification.new do |gem|
gem.name = "mondrian-olap"
gem.version = ::Mondrian::OLAP::VERSION
gem.authors = ["Raimonds Simanovskis"]
gem.email = ["raimonds.simanovskis@gmail.com"]
gem.description = "JRuby gem for performing multidimensional queries of relational database data using Mondrian OLAP Java library"
gem.summary = "JRuby API for Mondrian OLAP Java library"
gem.homepage = "http://github.com/rsim/mondrian-olap"
gem.date = "2023-06-02"
gem.license = 'MIT'
gem.files = Dir['Changelog.md', 'LICENSE*', 'README.md', 'VERSION', 'lib/**/*', 'test/**/*'] -
Dir['test/support/jars/*']
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^test/})
gem.require_paths = ["lib"]
gem.extra_rdoc_files = Dir["README.md"]
gem.platform = Gem::Platform::RUBY # as otherwise rubygems.org are not showing latest version
gem.add_dependency "nokogiri"
end