natto2classifier 0.3.2 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +18 -2
- data/Gemfile.lock +2 -2
- data/README.md +4 -2
- data/lib/natto2classifier/version.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3ae8ae7a0796de33c72feb4ce5b5926ba945c0779ea3fae42ca17b6a04ed3e32
|
4
|
+
data.tar.gz: d7083a5371d528fed4ced8bcaf9a522d0db4c6abc62e9df15c63e2af62c8b77f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15cead65621e2f1d63e243605a3148377248a0940977efb545ad050d53914836ebf70d7b8792e5f7cf550835a77f7c296666d51e1b926b8dfea1e83864ced27a
|
7
|
+
data.tar.gz: 25977c17d175688768efd47a76d30136aae83fe48bc33138b7d80fc8e6b0415128ac765cf7ec9578c4a355138e431e86e1fda5ce5e0c1cfbdd73aafd6ee58691
|
data/.travis.yml
CHANGED
@@ -1,5 +1,21 @@
|
|
1
|
-
sudo: false
|
2
1
|
language: ruby
|
3
2
|
rvm:
|
4
3
|
- 2.4.3
|
5
|
-
before_install:
|
4
|
+
before_install:
|
5
|
+
- gem install bundler -v 1.16.1
|
6
|
+
- sudo apt-get update -qq
|
7
|
+
install:
|
8
|
+
# mecab
|
9
|
+
- wget --no-check-certificate https://github.com/buruzaemon/natto/raw/master/etc/mecab-0.996.tar.gz && tar zxf mecab-0.996.tar.gz
|
10
|
+
- pushd mecab-0.996 && ./configure --enable-utf8-only && make && sudo make install && popd
|
11
|
+
- sudo ldconfig
|
12
|
+
# mecab-ipadic
|
13
|
+
- wget --no-check-certificate https://github.com/buruzaemon/natto/raw/master/etc/mecab-ipadic-2.7.0-20070801.tar.gz && tar zxf mecab-ipadic-2.7.0-20070801.tar.gz
|
14
|
+
- pushd mecab-ipadic-2.7.0-20070801 && ./configure --with-charset=utf8 && make && sudo make install && popd
|
15
|
+
- sudo ldconfig
|
16
|
+
# gsl
|
17
|
+
- sudo apt-get install libgsl2 libgsl-dev
|
18
|
+
# explicitly install
|
19
|
+
- bundle install --path .bundle
|
20
|
+
script:
|
21
|
+
- bundle exec ruby test/natto2classifier_test.rb
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Natto2classifier
|
2
2
|
|
3
|
+
[![Build Status](https://travis-ci.org/kanayannet/natto2classifier.svg?branch=master)](https://travis-ci.org/kanayannet/natto2classifier)
|
4
|
+
|
3
5
|
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/natto2classifier`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
6
|
|
5
7
|
## Installation
|
@@ -58,7 +60,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
58
60
|
|
59
61
|
## Contributing
|
60
62
|
|
61
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
63
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/kanayannet/natto2classifier. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
62
64
|
|
63
65
|
## License
|
64
66
|
|
@@ -66,4 +68,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
66
68
|
|
67
69
|
## Code of Conduct
|
68
70
|
|
69
|
-
Everyone interacting in the Natto2classifier project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
71
|
+
Everyone interacting in the Natto2classifier project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/kanayannet/natto2classifier/blob/master/CODE_OF_CONDUCT.md).
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: natto2classifier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kanayannet
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -139,7 +139,7 @@ homepage: https://github.com/kanayannet/natto2classifier
|
|
139
139
|
licenses:
|
140
140
|
- MIT
|
141
141
|
metadata: {}
|
142
|
-
post_install_message:
|
142
|
+
post_install_message:
|
143
143
|
rdoc_options: []
|
144
144
|
require_paths:
|
145
145
|
- lib
|
@@ -154,9 +154,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
154
|
- !ruby/object:Gem::Version
|
155
155
|
version: '0'
|
156
156
|
requirements: []
|
157
|
-
|
158
|
-
|
159
|
-
signing_key:
|
157
|
+
rubygems_version: 3.0.3
|
158
|
+
signing_key:
|
160
159
|
specification_version: 4
|
161
160
|
summary: It is a library that classifies Japanese language.
|
162
161
|
test_files: []
|