weka 0.7.1-java → 0.7.2-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +10 -10
- data/CHANGELOG.md +9 -1
- data/CODE_OF_CONDUCT.md +70 -7
- data/MIT-LICENSE.txt +1 -1
- data/README.md +6 -6
- data/lib/weka/version.rb +1 -1
- data/weka.gemspec +4 -5
- metadata +11 -27
- data/.travis.yml +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f91160c33a52f390b636a257d66851a7fefce0ebee2e84f4b10a6b35f4134456
|
4
|
+
data.tar.gz: f3e10b30623765748d3a13e882d480e1666c713b54c0ee6eb953c99f805074bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80de1d2db74c21ae47298e485dcf6206f9bdcdf796a916dab62b97f518344e4cd0410204b09f3d489d6a99bbf0d6221ab47f72822631c22e3e1b7e7bf7236cbb
|
7
|
+
data.tar.gz: f7ef2fe8706e5f48f967b241cf9795731b3fffa51a10c03e73f4759516a7b08afb0d72114ff1680dc9dfc0a39fcf0c5a8a0bdc9e178b3cb49abe50f27f641038
|
data/.gitignore
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
1
|
+
.bundle
|
2
|
+
.yardoc
|
3
|
+
Gemfile.lock
|
4
|
+
_yardoc
|
5
|
+
coverage
|
6
|
+
doc
|
7
|
+
pkg
|
8
|
+
spec/reports
|
9
|
+
tmp
|
10
10
|
jars
|
11
|
-
|
11
|
+
lib/*_jars.rb
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [0.7.2] – 2020-03-20
|
11
|
+
### Changed
|
12
|
+
- Update Weka Jar dependency to weka-dev v3.9.4
|
13
|
+
Please also refer to the weka changelog for included updates & fixes:
|
14
|
+
https://www.cs.waikato.ac.nz/~ml/weka/CHANGELOG-3-9-4
|
15
|
+
- Drop shoulda-matchers as dev-dependency
|
16
|
+
|
10
17
|
## [0.7.1] – 2018-11-09
|
11
18
|
### Changed
|
12
19
|
- Update Weka Jar dependency to weka-dev v3.9.3
|
@@ -77,7 +84,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
77
84
|
## [0.1.0] – 2015-12-26
|
78
85
|
Initial release
|
79
86
|
|
80
|
-
[Unreleased]: https://github.com/paulgoetze/weka-jruby/compare/v0.7.
|
87
|
+
[Unreleased]: https://github.com/paulgoetze/weka-jruby/compare/v0.7.2...HEAD
|
88
|
+
[0.7.2]: https://github.com/paulgoetze/weka-jruby/compare/v0.7.1...v0.7.2
|
81
89
|
[0.7.1]: https://github.com/paulgoetze/weka-jruby/compare/v0.7.0...v0.7.1
|
82
90
|
[0.7.0]: https://github.com/paulgoetze/weka-jruby/compare/v0.6.0...v0.7.0
|
83
91
|
[0.6.0]: https://github.com/paulgoetze/weka-jruby/compare/v0.5.0...v0.6.0
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -1,13 +1,76 @@
|
|
1
|
-
# Contributor Code of Conduct
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
2
|
|
3
|
-
|
3
|
+
## Our Pledge
|
4
4
|
|
5
|
-
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to make participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
9
|
+
level of experience, education, socio-economic status, nationality, personal
|
10
|
+
appearance, race, religion, or sexual identity and orientation.
|
6
11
|
|
7
|
-
|
12
|
+
## Our Standards
|
8
13
|
|
9
|
-
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
10
16
|
|
11
|
-
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
12
22
|
|
13
|
-
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies within all project spaces, and it also applies when
|
49
|
+
an individual is representing the project or its community in public spaces.
|
50
|
+
Examples of representing a project or community include using an official
|
51
|
+
project e-mail address, posting via an official social media account, or acting
|
52
|
+
as an appointed representative at an online or offline event. Representation of
|
53
|
+
a project may be further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at paul.christoph.goetze@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
72
|
+
|
73
|
+
[homepage]: https://www.contributor-covenant.org
|
74
|
+
|
75
|
+
For answers to common questions about this code of conduct, see
|
76
|
+
https://www.contributor-covenant.org/faq
|
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Weka
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/weka.svg)](http://badge.fury.io/rb/weka)
|
4
|
-
[![
|
4
|
+
[![Build Status](https://github.com/paulgoetze/weka-jruby/workflows/JRuby%20CI/badge.svg)](https://github.com/paulgoetze/weka-jruby/workflows/JRuby%20CI/badge.svg)
|
5
5
|
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/9634a6709ef545198e079a8daddff100)](https://www.codacy.com/app/paul-christoph-goetze/weka-jruby?utm_source=github.com&utm_medium=referral&utm_content=paulgoetze/weka-jruby&utm_campaign=Badge_Grade)
|
6
6
|
[![Open Source Helpers](https://www.codetriage.com/paulgoetze/weka-jruby/badges/users.svg)](https://www.codetriage.com/paulgoetze/weka-jruby)
|
7
7
|
|
@@ -41,7 +41,7 @@ detailed information about how to use weka with JRuby and some examplary code sn
|
|
41
41
|
## Development
|
42
42
|
|
43
43
|
1. Check out the repo with `git clone git@github.com:paulgoetze/weka-jruby.git`.
|
44
|
-
2. Set a local environment variable `export JARS_VENDOR=false`.
|
44
|
+
2. Set a local environment variable `export JARS_VENDOR=false`.
|
45
45
|
This will prevent
|
46
46
|
compiling the jars into your repo’s /lib directory and will load them from your local maven repository instead.
|
47
47
|
See the [jar-dependencies README](https://github.com/mkristian/jar-dependencies#for-development-you-do-not-need-to-vendor-the-jars-at-all) for more information.
|
@@ -51,19 +51,19 @@ Then, run `rake spec` to run the tests. You can also run `bin/console` or `rake
|
|
51
51
|
|
52
52
|
## Contributing
|
53
53
|
|
54
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/paulgoetze/weka-jruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant
|
54
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/paulgoetze/weka-jruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant Code of Conduct](https://github.com/paulgoetze/weka-jruby/blob/master/CODE_OF_CONDUCT.md).
|
55
55
|
|
56
56
|
For development we use the [git branching model](http://nvie.com/posts/a-successful-git-branching-model/) described by [nvie](https://github.com/nvie).
|
57
57
|
|
58
58
|
Here’s how to contribute:
|
59
59
|
|
60
|
-
1. Fork it (
|
60
|
+
1. Fork it (https://github.com/paulgoetze/weka-jruby/fork)
|
61
61
|
2. Create your feature branch (`git checkout -b feature/my-new-feature develop`)
|
62
62
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
63
63
|
4. Push to the branch (`git push origin feature/my-new-feature`)
|
64
64
|
5. Create a new Pull Request
|
65
65
|
|
66
|
-
Please try to add RSpec tests along with your new
|
66
|
+
Please try to add RSpec tests along with your new feature. This will ensure that your code does not break existing functionality and that your feature is working as expected.
|
67
67
|
|
68
68
|
We use [Rubocop](https://github.com/bbatsov/rubocop) for code style recommendations.
|
69
69
|
Please make sure your contributions comply with the project’s Rubocop config.
|
@@ -74,4 +74,4 @@ The original ideas for wrapping Weka in JRuby come from [@arrigonialberto86](htt
|
|
74
74
|
|
75
75
|
## License
|
76
76
|
|
77
|
-
The gem is available as open source under the terms of the [MIT License](
|
77
|
+
The gem is available as open source under the terms of the [MIT License](https://github.com/paulgoetze/weka-jruby/blob/master/MIT-LICENSE.txt).
|
data/lib/weka/version.rb
CHANGED
data/weka.gemspec
CHANGED
@@ -18,16 +18,15 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.platform = 'java'
|
19
19
|
spec.required_ruby_version = '~> 2.0'
|
20
20
|
|
21
|
-
spec.files =
|
21
|
+
spec.files = Dir['**/{.*,*}'].reject { |f| f.match(%r{^((spec|jars|pkg)/|.*\.lock|lib/.*_jars\.rb)}) || File.directory?(f) }
|
22
22
|
spec.bindir = 'bin'
|
23
23
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
24
24
|
spec.require_paths = ['lib']
|
25
25
|
|
26
|
-
spec.add_development_dependency 'bundler', '~>
|
27
|
-
spec.add_development_dependency 'rake', '~>
|
26
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
27
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
28
28
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
29
|
-
spec.add_development_dependency 'shoulda-matchers', '~> 3.0'
|
30
29
|
|
31
30
|
spec.add_runtime_dependency 'jar-dependencies', '~> 0.4'
|
32
|
-
spec.requirements << 'jar nz.ac.waikato.cms.weka, weka-dev, 3.9.
|
31
|
+
spec.requirements << 'jar nz.ac.waikato.cms.weka, weka-dev, 3.9.4'
|
33
32
|
end
|
metadata
CHANGED
@@ -1,43 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: weka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Paul Götze
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
15
15
|
requirements:
|
16
16
|
- - "~>"
|
17
17
|
- !ruby/object:Gem::Version
|
18
|
-
version: '
|
18
|
+
version: '2.0'
|
19
19
|
name: bundler
|
20
|
-
prerelease: false
|
21
20
|
type: :development
|
21
|
+
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '2.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
29
29
|
requirements:
|
30
30
|
- - "~>"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '13.0'
|
33
33
|
name: rake
|
34
|
-
prerelease: false
|
35
34
|
type: :development
|
35
|
+
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '13.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
@@ -45,22 +45,8 @@ dependencies:
|
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '3.0'
|
47
47
|
name: rspec
|
48
|
-
prerelease: false
|
49
48
|
type: :development
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '3.0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
requirement: !ruby/object:Gem::Requirement
|
57
|
-
requirements:
|
58
|
-
- - "~>"
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
version: '3.0'
|
61
|
-
name: shoulda-matchers
|
62
49
|
prerelease: false
|
63
|
-
type: :development
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
66
52
|
- - "~>"
|
@@ -73,8 +59,8 @@ dependencies:
|
|
73
59
|
- !ruby/object:Gem::Version
|
74
60
|
version: '0.4'
|
75
61
|
name: jar-dependencies
|
76
|
-
prerelease: false
|
77
62
|
type: :runtime
|
63
|
+
prerelease: false
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
79
65
|
requirements:
|
80
66
|
- - "~>"
|
@@ -92,7 +78,6 @@ files:
|
|
92
78
|
- ".gitignore"
|
93
79
|
- ".rspec"
|
94
80
|
- ".rubocop.yml"
|
95
|
-
- ".travis.yml"
|
96
81
|
- CHANGELOG.md
|
97
82
|
- CODE_OF_CONDUCT.md
|
98
83
|
- Gemfile
|
@@ -162,9 +147,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
162
147
|
- !ruby/object:Gem::Version
|
163
148
|
version: '0'
|
164
149
|
requirements:
|
165
|
-
- jar nz.ac.waikato.cms.weka, weka-dev, 3.9.
|
166
|
-
|
167
|
-
rubygems_version: 2.7.6
|
150
|
+
- jar nz.ac.waikato.cms.weka, weka-dev, 3.9.4
|
151
|
+
rubygems_version: 3.0.6
|
168
152
|
signing_key:
|
169
153
|
specification_version: 4
|
170
154
|
summary: Machine Learning & Data Mining with JRuby.
|