cabocha 0.69 → 0.69.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f6b750b5eb161ca57674dfd974091a08233d4fb0
4
- data.tar.gz: 1690ecbacd5ea1c3182412199dced342f7cc37ac
3
+ metadata.gz: 98b4b10935b03d4d4dca93085e748516ce4a337f
4
+ data.tar.gz: cbf6400c8312dafb9485ae571c19bc7f2e6f3bb5
5
5
  SHA512:
6
- metadata.gz: 8f146b5bf816709918d44cc34c8072b422195f1c77927f5d06141788c0fb8dc1590ce20387ea2ff59702eb49558c9528e1c6a565663f19c426822e2bbf081f21
7
- data.tar.gz: 5652e28a556dce9e9f60ceb3b620d65cdf35161cad8fad44058ed1fe2cacaa2b005ffea727e673d0990737f5a0718c1b10b126a574d79501067851003821225d
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/myo-ruby/fork )
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/).
@@ -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 = CaboCha::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.}
@@ -7,6 +7,7 @@ enable_config('cabocha-config')
7
7
  have_library(lib)
8
8
  }
9
9
 
10
- $CFLAGS += ' ' + `#{cabocha_config} --cflags`.chomp
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: '0.69'
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: 2015-02-25 00:00:00.000000000 Z
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.4.5
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.