rubx 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +2 -8
- data/{LICENSE.md → LICENSE.txt} +1 -1
- data/README.md +15 -30
- data/Rakefile +9 -2
- data/lib/rubx.rb +3 -2
- data/lib/rubx/version.rb +1 -1
- data/rubx.gemspec +16 -17
- data/test/helper.rb +2 -0
- data/test/test_version.rb +7 -0
- metadata +45 -18
- data/CHANGELOG.md +0 -5
- data/CONTRIBUTING.md +0 -46
- data/Gemfile.lock +0 -16
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 800f71eaef00fb093f85f78c6f7752fb21216f98
|
4
|
+
data.tar.gz: afa6a18be4ef06a9ccdebc1c565ad09df2da2a3f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1c27dc71a3f1a443f1953d8622702131e4bdeeaf911e48c6d2f64dd4ce2249fcb8bc632c63aa911e6f9a4e346e70c0a6fb8bfeb33fa92cc4147326603be721f6
|
7
|
+
data.tar.gz: 25284ce9ad8a1b05980829959e8acaa5bc4db5430c195ddfc2a96dd31799c193a01883f91dfe8ea5874f0f69a3eafd159460ed830298ced0740edeebd7c65b9f
|
data/Gemfile
CHANGED
@@ -1,10 +1,4 @@
|
|
1
|
-
source '
|
1
|
+
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
#
|
3
|
+
# Specify your gem's dependencies in the gemspec
|
4
4
|
gemspec
|
5
|
-
|
6
|
-
# Test and development dependencies are defined here
|
7
|
-
# so CI can include just test dependencies
|
8
|
-
group :test do
|
9
|
-
gem 'rake'
|
10
|
-
end
|
data/{LICENSE.md → LICENSE.txt}
RENAMED
data/README.md
CHANGED
@@ -1,44 +1,29 @@
|
|
1
1
|
# Rubx
|
2
2
|
|
3
|
-
|
4
|
-
and provides the ability to:
|
3
|
+
Multi-dimensional analytics in MagLev
|
5
4
|
|
6
|
-
|
7
|
-
* execute [MultiDimensional eXpressions][wiki_mdx] ( **MDX** ) queries
|
5
|
+
## Installation
|
8
6
|
|
9
|
-
|
10
|
-
### Installation
|
11
|
-
|
12
|
-
Run `gem install rubx` to install the gem on its own.
|
13
|
-
|
14
|
-
Or you can add the following to your Gemfile and run the `bundle` command to install it.
|
7
|
+
Add this line to your application's Gemfile:
|
15
8
|
|
16
9
|
gem 'rubx'
|
17
10
|
|
11
|
+
And then execute:
|
18
12
|
|
19
|
-
|
20
|
-
|
21
|
-
Check out these projects (which have been super helpful in working on Rubx):
|
22
|
-
|
23
|
-
* [Mondrian (git)](https://github.com/pentaho/mondrian) - source code for Mondrian on GitHub
|
24
|
-
* [mondrian-olap](https://github.com/rsim/mondrian-olap) - a RubyGem wrapping Mondrian
|
25
|
-
* [Saiku](http://analytical-labs.com) ([Saiku on GitHub](https://github.com/OSBI/saiku)) - a modular open-source analysis suite offering lightweight OLAP which remains easily embeddable, extendable and configurable.
|
26
|
-
|
13
|
+
$ bundle
|
27
14
|
|
28
|
-
|
15
|
+
Or install it yourself as:
|
29
16
|
|
30
|
-
|
31
|
-
(both code and general help) over in [CONTRIBUTING.md](CONTRIBUTING.md)
|
17
|
+
$ gem install rubx
|
32
18
|
|
19
|
+
## Usage
|
33
20
|
|
34
|
-
|
21
|
+
TODO: Write usage instructions here
|
35
22
|
|
36
|
-
|
23
|
+
## Contributing
|
37
24
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
[wiki_star_schema]: http://en.wikipedia.org/wiki/Star_schema
|
44
|
-
[wiki_dimensional_modeling]: http://en.wikipedia.org/wiki/Dimensional_modeling
|
25
|
+
1. Fork it ( https://github.com/johnnyt/rubx/fork )
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create a new Pull Request
|
data/Rakefile
CHANGED
data/lib/rubx.rb
CHANGED
data/lib/rubx/version.rb
CHANGED
data/rubx.gemspec
CHANGED
@@ -1,24 +1,23 @@
|
|
1
|
-
#
|
1
|
+
# coding: utf-8
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
4
|
require 'rubx/version'
|
5
5
|
|
6
|
-
Gem::Specification.new do |
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "rubx"
|
8
|
+
spec.version = Rubx::VERSION
|
9
|
+
spec.authors = ["JohnnyT"]
|
10
|
+
spec.email = ["ubergeek3141@gmail.com"]
|
11
|
+
spec.summary = %q{Multi-dimensional analytics in MagLev}
|
12
|
+
spec.description = spec.summary
|
13
|
+
spec.homepage = "https://github.com/johnnyt/rubx"
|
14
|
+
spec.license = "MIT"
|
15
15
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
20
|
|
21
|
-
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.6"
|
22
|
+
spec.add_development_dependency "rake"
|
22
23
|
end
|
23
|
-
|
24
|
-
# vim: syntax=ruby
|
data/test/helper.rb
ADDED
metadata
CHANGED
@@ -1,58 +1,85 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
5
|
-
prerelease:
|
4
|
+
version: 0.1.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- JohnnyT
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
13
|
-
dependencies:
|
14
|
-
|
11
|
+
date: 2014-10-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.6'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Multi-dimensional analytics in MagLev
|
15
42
|
email:
|
16
43
|
- ubergeek3141@gmail.com
|
17
44
|
executables: []
|
18
45
|
extensions: []
|
19
46
|
extra_rdoc_files: []
|
20
47
|
files:
|
21
|
-
- .gitignore
|
22
|
-
- CHANGELOG.md
|
23
|
-
- CONTRIBUTING.md
|
48
|
+
- ".gitignore"
|
24
49
|
- Gemfile
|
25
|
-
-
|
26
|
-
- LICENSE.md
|
50
|
+
- LICENSE.txt
|
27
51
|
- README.md
|
28
52
|
- Rakefile
|
29
53
|
- lib/rubx.rb
|
30
54
|
- lib/rubx/version.rb
|
31
55
|
- rubx.gemspec
|
56
|
+
- test/helper.rb
|
57
|
+
- test/test_version.rb
|
32
58
|
homepage: https://github.com/johnnyt/rubx
|
33
59
|
licenses:
|
34
60
|
- MIT
|
61
|
+
metadata: {}
|
35
62
|
post_install_message:
|
36
63
|
rdoc_options: []
|
37
64
|
require_paths:
|
38
65
|
- lib
|
39
66
|
required_ruby_version: !ruby/object:Gem::Requirement
|
40
|
-
none: false
|
41
67
|
requirements:
|
42
|
-
- -
|
68
|
+
- - ">="
|
43
69
|
- !ruby/object:Gem::Version
|
44
70
|
version: '0'
|
45
71
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
46
|
-
none: false
|
47
72
|
requirements:
|
48
|
-
- -
|
73
|
+
- - ">="
|
49
74
|
- !ruby/object:Gem::Version
|
50
75
|
version: '0'
|
51
76
|
requirements: []
|
52
77
|
rubyforge_project:
|
53
|
-
rubygems_version:
|
78
|
+
rubygems_version: 2.4.0
|
54
79
|
signing_key:
|
55
|
-
specification_version:
|
56
|
-
summary:
|
57
|
-
test_files:
|
80
|
+
specification_version: 4
|
81
|
+
summary: Multi-dimensional analytics in MagLev
|
82
|
+
test_files:
|
83
|
+
- test/helper.rb
|
84
|
+
- test/test_version.rb
|
58
85
|
has_rdoc:
|
data/CHANGELOG.md
DELETED
data/CONTRIBUTING.md
DELETED
@@ -1,46 +0,0 @@
|
|
1
|
-
## Contributing
|
2
|
-
In the spirit of [free software][free-sw], **everyone** is encouraged to help
|
3
|
-
improve this project.
|
4
|
-
|
5
|
-
[free-sw]: http://www.fsf.org/licensing/essays/free-sw.html
|
6
|
-
|
7
|
-
Here are some ways *you* can contribute:
|
8
|
-
|
9
|
-
* by using alpha, beta, and prerelease versions
|
10
|
-
* by reporting bugs
|
11
|
-
* by suggesting new features
|
12
|
-
* by writing or editing documentation
|
13
|
-
* by writing specifications
|
14
|
-
* by writing code ( **no patch is too small**: fix typos, add comments, clean up
|
15
|
-
inconsistent whitespace)
|
16
|
-
* by refactoring code
|
17
|
-
* by closing [issues][]
|
18
|
-
* by reviewing patches
|
19
|
-
|
20
|
-
[issues]: https://github.com/johnnyt/rubx/issues
|
21
|
-
|
22
|
-
## Submitting an Issue
|
23
|
-
We use the [GitHub issue tracker][issues] to track bugs and features. Before
|
24
|
-
submitting a bug report or feature request, check to make sure it hasn't
|
25
|
-
already been submitted. When submitting a bug report, please include a [Gist][]
|
26
|
-
that includes a stack trace and any details that may be necessary to reproduce
|
27
|
-
the bug, including your gem version, Ruby version, and operating system.
|
28
|
-
Ideally, a bug report should include a pull request with failing specs.
|
29
|
-
|
30
|
-
[gist]: https://gist.github.com/
|
31
|
-
|
32
|
-
## Submitting a Pull Request
|
33
|
-
1. [Fork the repository.][fork]
|
34
|
-
2. [Create a topic branch.][branch]
|
35
|
-
3. Add specs for your unimplemented feature or bug fix.
|
36
|
-
4. Run `bundle exec rake spec`. If your specs pass, return to step 3.
|
37
|
-
5. Implement your feature or bug fix.
|
38
|
-
6. Run `bundle exec rake spec`. If your specs fail, return to step 5.
|
39
|
-
7. Run `open coverage/index.html`. If your changes are not completely covered
|
40
|
-
by your tests, return to step 3.
|
41
|
-
8. Add, commit, and push your changes.
|
42
|
-
9. [Submit a pull request.][pr]
|
43
|
-
|
44
|
-
[fork]: http://help.github.com/fork-a-repo/
|
45
|
-
[branch]: http://learn.github.com/p/branching.html
|
46
|
-
[pr]: http://help.github.com/send-pull-requests/
|