cabocha 0.69 → 0.69.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -1
- data/cabocha.gemspec +1 -5
- data/ext/cabocha/extconf.rb +2 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98b4b10935b03d4d4dca93085e748516ce4a337f
|
4
|
+
data.tar.gz: cbf6400c8312dafb9485ae571c19bc7f2e6f3bb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f9bc5250f2b9afc2fc64d86d68a14ccf402a89691f0248318915d12f96e6d1dfef3f6becc6f044fa6b80066affe5624c1941718a9d2e96187c7ae7b5e5eef1c
|
7
|
+
data.tar.gz: 924b30a42ff96039f6b97a35831fed3d03991024f84514aa975d4c1ed8a821abeab2570221e0c728ced4d7eaead48ec3739f9ff86b28f303b0f72a03489b4c0f
|
data/README.md
CHANGED
@@ -33,8 +33,12 @@ $ bundle
|
|
33
33
|
|
34
34
|
## Contributing
|
35
35
|
|
36
|
-
1. Fork it ( https://github.com/uetchy/
|
36
|
+
1. Fork it ( https://github.com/uetchy/cabocha-ruby/fork )
|
37
37
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
38
38
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
39
39
|
4. Push to the branch (`git push origin my-new-feature`)
|
40
40
|
5. Create a new Pull Request
|
41
|
+
|
42
|
+
## License
|
43
|
+
|
44
|
+
This is based on [CaboCha SWIG bindings](https://code.google.com/p/cabocha/).
|
data/cabocha.gemspec
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
|
3
|
-
lib = File.expand_path('../lib', __FILE__)
|
4
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
-
require 'cabocha'
|
6
|
-
|
7
3
|
Gem::Specification.new do |spec|
|
8
4
|
spec.name = 'cabocha'
|
9
|
-
spec.version =
|
5
|
+
spec.version = '0.69.1'
|
10
6
|
spec.authors = ['Yasuaki Uechi']
|
11
7
|
spec.email = ['uetchy@randompaper.co']
|
12
8
|
spec.summary = %q{cabocha-ruby is a gem that provides Ruby bindings for CaboCha.}
|
data/ext/cabocha/extconf.rb
CHANGED
@@ -7,6 +7,7 @@ enable_config('cabocha-config')
|
|
7
7
|
have_library(lib)
|
8
8
|
}
|
9
9
|
|
10
|
-
$
|
10
|
+
$CPPFLAGS += ' ' + `#{cabocha_config} --cflags`.chomp
|
11
|
+
$LDFLAGS += ' ' + `#{cabocha_config} --libs`.chomp
|
11
12
|
|
12
13
|
have_header('cabocha.h') && create_makefile('cabocha/CaboCha')
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cabocha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.69.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yasuaki Uechi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
120
|
version: '0'
|
121
121
|
requirements: []
|
122
122
|
rubyforge_project:
|
123
|
-
rubygems_version: 2.
|
123
|
+
rubygems_version: 2.5.1
|
124
124
|
signing_key:
|
125
125
|
specification_version: 4
|
126
126
|
summary: cabocha-ruby is a gem that provides Ruby bindings for CaboCha.
|