swot-ruby 1.0.5.20230909 → 1.0.5.20230911
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/academic_data/stoplist.txt +2 -1
- data/data/lib/domains/stoplist.txt +2 -1
- data/swot.gemspec +1 -1
- data/test/test_swot.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4f8328258748549b596d56c7dd3eb2225acae9f6894af6c6dc9eaa7e9efa03d
|
4
|
+
data.tar.gz: a276c9cdcf59fbc78b4f4071f568746ddf8795c9b711fc519941dd01b1157df3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39ef2f75f3e40c8e57ccf309fee27c25287ce159ad8f53b3d809e1e2947296881afa6c186a0d267099446b96fa30a9a068391e63c4121c470253b4fe500fea9b
|
7
|
+
data.tar.gz: 727aa9a9939fe356e25be243df39629aaf82b840565a045f7323f7df5694dda0e8a1ff4b239626a056a1854415083ee0007452bc968152b9fcd2308351a1e5f6
|
data/academic_data/stoplist.txt
CHANGED
data/swot.gemspec
CHANGED
data/test/test_swot.rb
CHANGED
@@ -10,7 +10,7 @@ describe Swot do
|
|
10
10
|
assert Swot::is_academic?('lreilly@strath.ac.uk')
|
11
11
|
assert Swot::is_academic?('lreilly@soft-eng.strath.ac.uk')
|
12
12
|
assert Swot::is_academic?('lee@ugr.es')
|
13
|
-
|
13
|
+
assert_not Swot::is_academic?('lee@uottawa.ca')
|
14
14
|
assert Swot::is_academic?('lee@mother.edu.ru')
|
15
15
|
assert Swot::is_academic?('lee@ucy.ac.cy')
|
16
16
|
assert Swot::is_academic?('dave.kimura@osu.edu')
|
@@ -38,7 +38,7 @@ describe Swot do
|
|
38
38
|
assert Swot::is_academic?('strath.ac.uk')
|
39
39
|
assert Swot::is_academic?('soft-eng.strath.ac.uk')
|
40
40
|
assert Swot::is_academic?('ugr.es')
|
41
|
-
|
41
|
+
assert_not Swot::is_academic?('uottawa.ca')
|
42
42
|
assert Swot::is_academic?('mother.edu.ru')
|
43
43
|
assert Swot::is_academic?('ucy.ac.cy')
|
44
44
|
|