greeb 0.2.0 → 0.2.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 +4 -4
- data/Gemfile +0 -1
- data/greeb.gemspec +3 -1
- data/lib/greeb/parser.rb +1 -1
- data/lib/greeb/version.rb +1 -1
- metadata +18 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d36a8ea4366f3bbc2b14b3f02dd7fadf0f25571e
|
|
4
|
+
data.tar.gz: 42ecf5ddd8c4b8dac3ffa4394ce8c3211f91d918
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72282ee20c4566ccceac0a4f51aa3ad8ea213458502d2b5ed97c664c06fbc8aa8a28b5fb1f4e8bb84f0de2d7ea292d54d1500e646524b18c9af192069596e63e
|
|
7
|
+
data.tar.gz: 1188dc13cac34f31d2536b94d460dfe5948f86095aaebd43c1a85da9f521ba53ae1ebdd94df6cf5702cb2f64df4d0cce37fee6f7a4d308feb230bc78729a79ce
|
data/Gemfile
CHANGED
data/greeb.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
s.authors = ['Dmitry Ustalov']
|
|
10
10
|
s.email = ['dmitry@eveel.ru']
|
|
11
|
-
s.homepage = 'https://github.com/
|
|
11
|
+
s.homepage = 'https://github.com/dmchk/greeb'
|
|
12
12
|
s.summary = 'Greeb is a simple Unicode-aware regexp-based tokenizer.'
|
|
13
13
|
s.description = 'Greeb is a simple yet awesome and Unicode-aware ' \
|
|
14
14
|
'regexp-based tokenizer, written in Ruby.'
|
|
@@ -19,4 +19,6 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
20
20
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
21
21
|
s.require_paths = ['lib']
|
|
22
|
+
|
|
23
|
+
s.add_development_dependency 'minitest', '~> 5.0'
|
|
22
24
|
end
|
data/lib/greeb/parser.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
|
|
3
|
-
# It is often necessary to find different entities in natural language
|
|
3
|
+
# It is often necessary to find different entities in a natural language
|
|
4
4
|
# text. These entities are URLs, e-mail addresses, names, etc. This module
|
|
5
5
|
# includes several helpers that could help to solve these problems.
|
|
6
6
|
#
|
data/lib/greeb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: greeb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
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-
|
|
12
|
-
dependencies:
|
|
11
|
+
date: 2013-07-02 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: minitest
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '5.0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ~>
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '5.0'
|
|
13
27
|
description: Greeb is a simple yet awesome and Unicode-aware regexp-based tokenizer,
|
|
14
28
|
written in Ruby.
|
|
15
29
|
email:
|
|
@@ -41,7 +55,7 @@ files:
|
|
|
41
55
|
- spec/spec_helper.rb
|
|
42
56
|
- spec/support/invoker.rb
|
|
43
57
|
- spec/tokenizer_spec.rb
|
|
44
|
-
homepage: https://github.com/
|
|
58
|
+
homepage: https://github.com/dmchk/greeb
|
|
45
59
|
licenses: []
|
|
46
60
|
metadata: {}
|
|
47
61
|
post_install_message:
|