swot-ruby 1.0.1 → 1.0.2.20230618

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48975caa5bc76ace803513f8a88f4b85ecacee1bf403bf16391ee3c70a1ed25c
4
- data.tar.gz: 9e3b7455b425fe93de048e3c52d1d526ebd0fde6fb64a3ce43245db6249ce8e9
3
+ metadata.gz: c31718e80e4c452cdf75d028434e5fd59dfe7bd641cd24285cbcc1c36f1d8ac0
4
+ data.tar.gz: f23921d2936ed656544ffc1aeb747174793021707b2ae2a565682f8163d01864
5
5
  SHA512:
6
- metadata.gz: dd4cdb067c3ffde706579eb3c4199103c432b1175cef16afe61c64d8cefd376b9a8aad9396a40f5ce0999bc82e6a9357321d5e18bd55126ed0399580c2590e73
7
- data.tar.gz: 458d5c2edba7652a510f88dd6d388f46b2050014b714e71020905c44c4f76cf70605b2872c0b87dcead26c3c834f204187f99c738cb5df275867a0fcd0d88b62
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
@@ -5,7 +5,7 @@ require_relative "swot/collection_methods"
5
5
 
6
6
  class Swot
7
7
 
8
- VERSION = "1.0.1"
8
+ VERSION = "1.0.2"
9
9
 
10
10
  # These are domains that snuck into the edu registry,
11
11
  # but don't pass the education sniff test
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.1"
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.1
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,5 +0,0 @@
1
- lib/**/*.rb
2
- bin/*
3
- -
4
- features/**/*.feature
5
- LICENSE.txt
@@ -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
@@ -1,3 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.3.1
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 1.0.0