forked from rsim/mondrian-olap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mondrian-olap.gemspec
116 lines (111 loc) · 4.31 KB
/
mondrian-olap.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{mondrian-olap}
s.version = "0.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Raimonds Simanovskis"]
s.date = %q{2011-03-19}
s.description = %q{JRuby gem for performing multidimensional queries of relational database data using Mondrian OLAP Java library
}
s.email = %q{raimonds.simanovskis@gmail.com}
s.extra_rdoc_files = [
"LICENSE-Mondrian.html",
"LICENSE.txt",
"README.rdoc"
]
s.files = [
".rspec",
"Gemfile",
"LICENSE-Mondrian.html",
"LICENSE.txt",
"README.rdoc",
"RUNNING_TESTS.rdoc",
"Rakefile",
"VERSION",
"lib/mondrian-olap.rb",
"lib/mondrian/jars/commons-collections-3.1.jar",
"lib/mondrian/jars/commons-dbcp-1.2.1.jar",
"lib/mondrian/jars/commons-logging-1.0.4.jar",
"lib/mondrian/jars/commons-math-1.0.jar",
"lib/mondrian/jars/commons-pool-1.2.jar",
"lib/mondrian/jars/commons-vfs-1.0.jar",
"lib/mondrian/jars/eigenbase-properties.jar",
"lib/mondrian/jars/eigenbase-resgen.jar",
"lib/mondrian/jars/eigenbase-xom.jar",
"lib/mondrian/jars/javacup.jar",
"lib/mondrian/jars/log4j-1.2.8.jar",
"lib/mondrian/jars/log4j.properties",
"lib/mondrian/jars/mondrian.jar",
"lib/mondrian/jars/olap4j.jar",
"lib/mondrian/olap.rb",
"lib/mondrian/olap/connection.rb",
"lib/mondrian/olap/cube.rb",
"lib/mondrian/olap/query.rb",
"lib/mondrian/olap/result.rb",
"lib/mondrian/olap/schema.rb",
"lib/mondrian/olap/schema_element.rb",
"mondrian-olap.gemspec",
"spec/connection_spec.rb",
"spec/cube_spec.rb",
"spec/fixtures/MondrianTest.xml",
"spec/fixtures/MondrianTestOracle.xml",
"spec/query_spec.rb",
"spec/rake_tasks.rb",
"spec/schema_definition_spec.rb",
"spec/spec_helper.rb",
"spec/support/matchers/be_like.rb"
]
s.homepage = %q{http://github.com/rsim/mondrian-olap}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.5.1}
s.summary = %q{JRuby API for Mondrian OLAP Java library}
s.test_files = [
"spec/connection_spec.rb",
"spec/cube_spec.rb",
"spec/query_spec.rb",
"spec/rake_tasks.rb",
"spec/schema_definition_spec.rb",
"spec/spec_helper.rb",
"spec/support/matchers/be_like.rb"
]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<nokogiri>, ["~> 1.5.0.beta.4"])
s.add_development_dependency(%q<jruby-openssl>, [">= 0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
s.add_development_dependency(%q<rspec>, ["~> 2.5"])
s.add_development_dependency(%q<autotest>, [">= 0"])
s.add_development_dependency(%q<jdbc-mysql>, [">= 0"])
s.add_development_dependency(%q<jdbc-postgres>, [">= 0"])
s.add_development_dependency(%q<activerecord>, ["~> 3.0.5"])
s.add_development_dependency(%q<activerecord-jdbc-adapter>, [">= 0"])
s.add_development_dependency(%q<activerecord-oracle_enhanced-adapter>, [">= 0"])
else
s.add_dependency(%q<nokogiri>, ["~> 1.5.0.beta.4"])
s.add_dependency(%q<jruby-openssl>, [">= 0"])
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
s.add_dependency(%q<rspec>, ["~> 2.5"])
s.add_dependency(%q<autotest>, [">= 0"])
s.add_dependency(%q<jdbc-mysql>, [">= 0"])
s.add_dependency(%q<jdbc-postgres>, [">= 0"])
s.add_dependency(%q<activerecord>, ["~> 3.0.5"])
s.add_dependency(%q<activerecord-jdbc-adapter>, [">= 0"])
s.add_dependency(%q<activerecord-oracle_enhanced-adapter>, [">= 0"])
end
else
s.add_dependency(%q<nokogiri>, ["~> 1.5.0.beta.4"])
s.add_dependency(%q<jruby-openssl>, [">= 0"])
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
s.add_dependency(%q<rspec>, ["~> 2.5"])
s.add_dependency(%q<autotest>, [">= 0"])
s.add_dependency(%q<jdbc-mysql>, [">= 0"])
s.add_dependency(%q<jdbc-postgres>, [">= 0"])
s.add_dependency(%q<activerecord>, ["~> 3.0.5"])
s.add_dependency(%q<activerecord-jdbc-adapter>, [">= 0"])
s.add_dependency(%q<activerecord-oracle_enhanced-adapter>, [">= 0"])
end
end