stopwords-filter 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +15 -0
  2. data/CHANGELOG +9 -7
  3. data/VERSION +1 -1
  4. metadata +26 -34
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ODhiNzk3Y2I1OTJhNTViNjIyYmVjM2QyNjBkMzUyNDI3Y2E0NzFmNg==
5
+ data.tar.gz: !binary |-
6
+ MDU4NTU1NmEyM2VkMmE3MzExYjVhZDVlOTQ0ZjFjZTEwMWI3MDA1OQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ OGFmODQ4ZDA1M2E1MWM3NmYyMmUzZTA3OTczY2U4NzdhNThiODkxNzc5ZTFl
10
+ MjU2M2M4ZTMyNmYzOWQzNDljMTZlNjg3MDE1M2MzNDMyNTJkN2FhNWNhZTYw
11
+ NDk5Yjc5NDAxMTgyOGYzYjA1MjZkNTY0MDk2MGI2Yzk4OTI0ODc=
12
+ data.tar.gz: !binary |-
13
+ ZTg1ZTlhN2QxNTViMjAyMmUyMzFjYjVhNDEyYzAzYWYxNWIxNzQxMmRlZTYz
14
+ OTFmOWRjOGViNWJkNmNlNDI3YTAzZmYwZGU5NzNiMDhiNGQ0NjAyNjA3MzJh
15
+ M2VjYTg4NWI4ZDNhOGFjOWQzM2YyNDNmMjQyZDM4MDAxMTc3MmM=
data/CHANGELOG CHANGED
@@ -1,10 +1,12 @@
1
+ 0.3.1:
2
+ * Added Romanian language [@MihaiValentin]
1
3
  0.3.0:
2
- * Added custom words list to snowball filter [@sbeckeriv]
3
- * Fixed problem about initialization: https://github.com/brenes/stopwords-filter/issues/3 [@zackxu1]
4
+ * Added custom words list to snowball filter [@sbeckeriv]
5
+ * Fixed problem about initialization: https://github.com/brenes/stopwords-filter/issues/3 [@zackxu1]
4
6
  0.2.0:
5
- * Added stopword? method [@s2gatev]
6
- * Added Sieve class [@s2gatev]
7
- * Added bulgarian language [@s2gatev]
7
+ * Added stopword? method [@s2gatev]
8
+ * Added Sieve class [@s2gatev]
9
+ * Added bulgarian language [@s2gatev]
8
10
  0.1.0
9
- * Added simple filter [@brenes]
10
- * Added snowball filter [@brenes]
11
+ * Added simple filter [@brenes]
12
+ * Added snowball filter [@brenes]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.3.1
metadata CHANGED
@@ -1,39 +1,35 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: stopwords-filter
3
- version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.3.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.1
6
5
  platform: ruby
7
- authors:
6
+ authors:
8
7
  - David J. Brenes
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
-
13
- date: 2013-02-03 00:00:00 Z
11
+ date: 2014-08-03 00:00:00.000000000 Z
14
12
  dependencies: []
15
-
16
- description: Small library that allows you to create a simple stopwords filter or use some based on Snowball stopwords lists
13
+ description: Small library that allows you to create a simple stopwords filter or
14
+ use some based on Snowball stopwords lists
17
15
  email: davidjbrenes@gmail.com
18
16
  executables: []
19
-
20
17
  extensions: []
21
-
22
- extra_rdoc_files:
18
+ extra_rdoc_files:
23
19
  - CHANGELOG
24
20
  - LICENSE.txt
25
21
  - README.md
26
- files:
22
+ files:
27
23
  - CHANGELOG
28
24
  - Gemfile
29
25
  - Gemfile.lock
26
+ - LICENSE.txt
30
27
  - README.md
31
28
  - VERSION
32
29
  - lib/stopwords.rb
33
30
  - lib/stopwords/filter.rb
34
31
  - lib/stopwords/snowball.rb
35
32
  - lib/stopwords/snowball/filter.rb
36
- - lib/stopwords/snowball/wordsieve.rb
37
33
  - lib/stopwords/snowball/locales/bg.csv
38
34
  - lib/stopwords/snowball/locales/da.csv
39
35
  - lib/stopwords/snowball/locales/de.csv
@@ -47,36 +43,32 @@ files:
47
43
  - lib/stopwords/snowball/locales/pt.csv
48
44
  - lib/stopwords/snowball/locales/ru.csv
49
45
  - lib/stopwords/snowball/locales/sv.csv
46
+ - lib/stopwords/snowball/wordsieve.rb
50
47
  - spec/lib/filter_spec.rb
51
48
  - spec/lib/snowball_filter_spec.rb
52
49
  - spec/spec_helper.rb
53
- - LICENSE.txt
54
50
  homepage: http://github.com/brenes/stopwords-filter
55
- licenses:
51
+ licenses:
56
52
  - MIT
53
+ metadata: {}
57
54
  post_install_message:
58
55
  rdoc_options: []
59
-
60
- require_paths:
56
+ require_paths:
61
57
  - lib
62
- required_ruby_version: !ruby/object:Gem::Requirement
63
- none: false
64
- requirements:
65
- - - ">="
66
- - !ruby/object:Gem::Version
67
- version: "0"
68
- required_rubygems_version: !ruby/object:Gem::Requirement
69
- none: false
70
- requirements:
71
- - - ">="
72
- - !ruby/object:Gem::Version
73
- version: "0"
58
+ required_ruby_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ! '>='
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ! '>='
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
74
68
  requirements: []
75
-
76
69
  rubyforge_project:
77
- rubygems_version: 1.8.24
70
+ rubygems_version: 2.2.2
78
71
  signing_key:
79
- specification_version: 3
72
+ specification_version: 4
80
73
  summary: Snowball based filters for stopwords
81
74
  test_files: []
82
-