mondrian-rest 0.7.7-java → 0.7.8-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/README.md +2 -0
- data/lib/mondrian_rest/query_helper.rb +2 -2
- data/lib/mondrian_rest/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6023f46286466d2773e0bf1ac6cb52fe205bf2bbe584aea26170b4359e87385c
|
4
|
+
data.tar.gz: 384f5eaf3e30be55fa31c909e30880845499dba09f058361876d4bb62dc627a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bcf966cbbad1d698004c825954bcc86b3b65b98234ae88d92bf9576e39dc9fe8dff89e973102e3ed14dead99894fae88a31bca0b59127edd19f33ec53bb79c5
|
7
|
+
data.tar.gz: e605341fc73f78a852b12f77e733ff919fa938f200201be2f810a5b4ba2f39c578f909766ba4845980df117365783566adf256ad6e5be903331b97faf2d646ba
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2015-2017 Manuel Aristarán
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -14,6 +14,8 @@ See [`mondrian-rest-demo`](https://github.com/jazzido/mondrian-rest-demo) and [`
|
|
14
14
|
|
15
15
|
Initial inspiration for this project came from [Stefan Urbanek](https://github.com/Stiivi)'s [`cubes`](http://cubes.databrewery.org/) OLAP server. `mondrian-rest` uses [Raimonds Simanovskis](https://github.com/rsim)'s fantastic [`mondrian-olap`](https://github.com/rsim/mondrian-olap) library.
|
16
16
|
|
17
|
+
Development of this project has been generously sponsored by [Datawheel](http://datawheel.us).
|
18
|
+
|
17
19
|
|
18
20
|
## License
|
19
21
|
|
@@ -184,11 +184,11 @@ module Mondrian::REST
|
|
184
184
|
|
185
185
|
case cut[:type]
|
186
186
|
when :member
|
187
|
-
"DESCENDANTS(#{cut[:cut]}, #{qa.
|
187
|
+
"DESCENDANTS(#{cut[:cut]}, #{qa.unique_name})"
|
188
188
|
when :set
|
189
189
|
# TODO
|
190
190
|
"{" + cut[:set_members].map { |m|
|
191
|
-
"DESCENDANTS(#{m.full_name}, #{qa.
|
191
|
+
"DESCENDANTS(#{m.full_name}, #{qa.unique_name})"
|
192
192
|
}.join(",") + "}"
|
193
193
|
when :range
|
194
194
|
# TODO
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mondrian-rest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.8
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Manuel Aristarán
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-11-
|
11
|
+
date: 2017-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -202,6 +202,7 @@ files:
|
|
202
202
|
- ".gitignore"
|
203
203
|
- ".travis.yml"
|
204
204
|
- Gemfile
|
205
|
+
- LICENSE
|
205
206
|
- README.md
|
206
207
|
- Rakefile
|
207
208
|
- lib/jars/com/codepoetics/protonpack/1.9/protonpack-1.9.jar
|