swot-ruby 1.0.1 → 1.0.2.20230618
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/README.md +7 -0
- data/data/lib/domains/stoplist.txt +24 -1
- data/lib/swot.rb +1 -1
- data/swot.gemspec +1 -5
- metadata +1 -6
- data/.document +0 -5
- data/.github/PULL_REQUEST_TEMPLATE.md +0 -24
- data/.ruby-version +0 -1
- data/.travis.yml +0 -3
- data/VERSION +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c31718e80e4c452cdf75d028434e5fd59dfe7bd641cd24285cbcc1c36f1d8ac0
|
4
|
+
data.tar.gz: f23921d2936ed656544ffc1aeb747174793021707b2ae2a565682f8163d01864
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eae1b343035ca7a64359fe68e60a0208120202629c97b33bfbd55f97ab3758bfa6bcaef0df328c6f583607f59f531028cb23fc2bab6fc304cf7c774ddbc72833
|
7
|
+
data.tar.gz: a72e73a002efff1ad5e315b87e50306c9120d9288db0278bd3a70da17b680acdf8d87b84631ea40d416e1a92327d86a46d62605cefdc51d4bd5f14e11e28d9b3
|
data/README.md
CHANGED
@@ -17,6 +17,13 @@ to be updated. There is a nightly job which will update the
|
|
17
17
|
submodule and push the changes to this repo. However, to pick up the new domains, a gem release will be required. I'm still
|
18
18
|
considering the best path for this.
|
19
19
|
|
20
|
+
## Versioning
|
21
|
+
|
22
|
+
Since there is a reliance on the submodule's data being updated,
|
23
|
+
there will be periodic releases that do not contain any code changes of this library. However, this library will follow the Semantic versioning + a date stamp of the latest list of academic institutions.
|
24
|
+
|
25
|
+
For example, the gem `1.0.2.20230618` references to the gem version `1.0.2` and the list of academic institutions was last updated on `June 18th, 2023`.
|
26
|
+
|
20
27
|
### Installation
|
21
28
|
|
22
29
|
Or add this to your `Gemfile` before doing a `bundle install`:
|
@@ -1291,4 +1291,27 @@ url.edu.gt
|
|
1291
1291
|
scun.edu.cn
|
1292
1292
|
meduca.edu.pa
|
1293
1293
|
os-bbuha.edu.me
|
1294
|
-
go.shoreline.edu
|
1294
|
+
go.shoreline.edu
|
1295
|
+
eniac.edu.br
|
1296
|
+
upnm.edu.my
|
1297
|
+
sga.pucminas.br
|
1298
|
+
wayne.edu
|
1299
|
+
alumnos.kennedy.edu.ar
|
1300
|
+
anu.edu.gh
|
1301
|
+
alumni.gsb.stanford.edu
|
1302
|
+
g.skku.edu
|
1303
|
+
georgetown.edu
|
1304
|
+
student.iuh.edu.vn
|
1305
|
+
students.gov.ge
|
1306
|
+
my.hancockcollege.edu
|
1307
|
+
lcps.org
|
1308
|
+
stu.huel.edu.cn
|
1309
|
+
whut.edu.cn
|
1310
|
+
2011.cqut.edu.cn
|
1311
|
+
2012.cqut.edu.cn
|
1312
|
+
2013.cqut.edu.cn
|
1313
|
+
2014.cqut.edu.cn
|
1314
|
+
2015.cqut.edu.cn
|
1315
|
+
2016.cqut.edu.cn
|
1316
|
+
2017.cqut.edu.cn
|
1317
|
+
2018.cqut.edu.cn
|
data/lib/swot.rb
CHANGED
data/swot.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
s.name = "swot-ruby"
|
4
|
-
s.version = "1.0.
|
4
|
+
s.version = "1.0.2.20230618"
|
5
5
|
|
6
6
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
7
7
|
s.authors = ["Dave Kimura", "Lee Reilly"]
|
@@ -15,10 +15,6 @@ Gem::Specification.new do |s|
|
|
15
15
|
|
16
16
|
s.files = `git ls-files -z`.split("\x0") + Dir['data/lib/domains/*']
|
17
17
|
|
18
|
-
Dir.glob('lib/domains/**/*.txt').each do |path|
|
19
|
-
s.files << path if File.file?(path)
|
20
|
-
end
|
21
|
-
|
22
18
|
s.homepage = "https://github.com/kobaltz/swot"
|
23
19
|
s.licenses = ["MIT"]
|
24
20
|
s.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: swot-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2.20230618
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dave Kimura
|
@@ -48,20 +48,15 @@ extra_rdoc_files:
|
|
48
48
|
- LICENSE.txt
|
49
49
|
- README.md
|
50
50
|
files:
|
51
|
-
- ".document"
|
52
|
-
- ".github/PULL_REQUEST_TEMPLATE.md"
|
53
51
|
- ".github/workflows/ruby.yml"
|
54
52
|
- ".github/workflows/update_domains.yml"
|
55
53
|
- ".gitignore"
|
56
54
|
- ".gitmodules"
|
57
|
-
- ".ruby-version"
|
58
|
-
- ".travis.yml"
|
59
55
|
- CONTRIBUTING.md
|
60
56
|
- Gemfile
|
61
57
|
- LICENSE.txt
|
62
58
|
- README.md
|
63
59
|
- Rakefile
|
64
|
-
- VERSION
|
65
60
|
- data/lib/domains/stoplist.txt
|
66
61
|
- data/lib/domains/tlds.txt
|
67
62
|
- lib/swot.rb
|
data/.document
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
#### Institution/School Name
|
2
|
-
{Name Here}
|
3
|
-
|
4
|
-
#### Instiution/School Website
|
5
|
-
{Website URL}
|
6
|
-
|
7
|
-
#### Email Users
|
8
|
-
|
9
|
-
*Please place an x between the square brackets if yes*
|
10
|
-
- [ ] Students
|
11
|
-
- [ ] Academic/Teaching Staff
|
12
|
-
- [ ] Other/Support Staff
|
13
|
-
- [ ] Alumni
|
14
|
-
|
15
|
-
#### Education Levels
|
16
|
-
|
17
|
-
*Please place an x between the square brackets if yes*
|
18
|
-
|
19
|
-
- [ ] Post-graduate research
|
20
|
-
- [ ] Graduate School
|
21
|
-
- [ ] College (University) or Undergraduate School or equivalent
|
22
|
-
- [ ] Community College or equivalent
|
23
|
-
- [ ] High School or equivalent
|
24
|
-
- [ ] Elementary School or equivalent
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
2.0.0
|
data/.travis.yml
DELETED
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
1.0.0
|