-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathstopwords-filter.gemspec
46 lines (42 loc) · 1.34 KB
/
stopwords-filter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{stopwords-filter}
s.version = "0.7.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["David J. Brenes"]
s.date = %q{2021-12-19}
s.description = %q{Small library that allows you to create a simple stopwords filter or use some based on Snowball stopwords lists}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"CHANGELOG",
"LICENSE.txt",
"README.md"
]
locale_files = []
Dir.glob("lib/stopwords/snowball/locales/*.csv") do |locale_file|
locale_files << locale_file
end
s.files = [
"CHANGELOG",
"Gemfile",
"Gemfile.lock",
"README.md",
"VERSION",
"lib/stopwords.rb",
"lib/stopwords/filter.rb",
"lib/stopwords/snowball.rb",
"lib/stopwords/snowball/filter.rb",
"lib/stopwords/snowball/wordsieve.rb",
"spec/lib/filter_spec.rb",
"spec/lib/snowball_filter_spec.rb",
"spec/spec_helper.rb"
] + locale_files
s.homepage = %q{http://github.com/brenes/stopwords-filter}
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2}
s.summary = %q{Snowball based filters for stopwords}
end