greeb 0.1.1 → 0.1.2

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: e5a7465b3eb4a40881ce1c9ded8fad73a91a6ae1
4
- data.tar.gz: d6569e655d2cb155b13bd6750d12b664dfca755f
3
+ metadata.gz: 9320c86f24d2f6a40459a3bb6be6a8eedb21a822
4
+ data.tar.gz: 810aec1c57162b502c1fb0dd9568f98a75690f6d
5
5
  SHA512:
6
- metadata.gz: 477607cef3fdc623ca6d0eb53c772ccf583787b8d19719c3b1a424e7abc5a4a41c529c2ce54a005546e6a91b12ffddf79ef3a1696f62e64f7e911baa6fd03815
7
- data.tar.gz: d9329ae10dd41e212dcc5bbec4ccd76fc1bebb1032206a99e1e1bedddb044aa6474a6cb809d76d137c98eaffa4ee0fb2e72de89c9825dfe5800548a5935eee0a
6
+ metadata.gz: fbde05e3be7f071c9c7095bd8dfb1d1373694612ddcba2bc2a31014a02f2db6b1ed989c3e0d92f17076282bd8471b3c8bd8ed8325d9beaa26e0c68c887b24d86
7
+ data.tar.gz: c2f613064ce1cebf4e39212c96a5861d86e269a5c3593622e3ec06dbd82d238982e3bf5f0aaa050bd3807021c8cc7d46ce569cba75a33eae56ff3a19fd0fd884
data/.gitignore CHANGED
@@ -24,6 +24,8 @@ nbproject
24
24
 
25
25
  ## RVM
26
26
  .rvmrc
27
+ .ruby-version
28
+ .ruby-gemset
27
29
 
28
30
  ## RUBINIUS
29
31
  .rbx
data/.travis.yml CHANGED
@@ -1,6 +1,5 @@
1
1
  branches:
2
2
  only:
3
- - develop
4
3
  - master
5
4
  rvm:
6
5
  - 2.0.0
data/README.md CHANGED
@@ -129,7 +129,7 @@ punctuation), and `:break`.
129
129
 
130
130
  ## Build Status [<img src="https://secure.travis-ci.org/ustalov/greeb.png"/>](http://travis-ci.org/ustalov/greeb)
131
131
 
132
- ## Dependency Status [<img src="https://gemnasium.com/ustalov/greeb.png?travis"/>](https://gemnasium.com/ustalov/greeb)
132
+ ## Dependency Status [<img src="https://gemnasium.com/ustalov/greeb.png"/>](https://gemnasium.com/ustalov/greeb)
133
133
 
134
134
  ## Copyright
135
135
 
@@ -39,7 +39,7 @@ module Greeb::Tokenizer
39
39
 
40
40
  # Residuals.
41
41
  #
42
- RESIDUALS = /[\p{C}\p{M}\p{Sk}]+/u
42
+ RESIDUALS = /([\p{C}\p{M}\p{Sk}]|[\p{Nd}&&[^\d]])+/u
43
43
 
44
44
  # Perform the tokenization process.
45
45
  #
data/lib/greeb/version.rb CHANGED
@@ -5,5 +5,5 @@
5
5
  module Greeb
6
6
  # Version of Greeb.
7
7
  #
8
- VERSION = '0.1.1'
8
+ VERSION = '0.1.2'
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: greeb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Ustalov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-03-04 00:00:00.000000000 Z
11
+ date: 2013-04-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  version: '0'
110
110
  requirements: []
111
111
  rubyforge_project: greeb
112
- rubygems_version: 2.0.0
112
+ rubygems_version: 2.0.3
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: Greeb is a simple Unicode-aware regexp-based tokenizer.