Icarus-Mod-Tools 1.5.0 → 1.5.1

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: 1d6eb166c9060d92ba85aeac7876bc1160ed775f6ef1f0f3408ca5cd5faa36da
4
- data.tar.gz: 43849af1d46cc903e2beafee089dc64c24469c30a89033968285505a960d5ff1
3
+ metadata.gz: 8f68f524c29cc673a82735bffc97c0fb93fc4170466e774879f39935aa08729f
4
+ data.tar.gz: d4e336be0968b54baade6752f66b5e56ad0139fe371eec58dc72d74decd4e2ab
5
5
  SHA512:
6
- metadata.gz: 86c344b70fcff28597a5b638d3898fd0ed52fd9894ef65ce304d37a459e94489412e37806de6415b61d501e647fc6b28ec12222a5cdb276078b95707b03cdb9a
7
- data.tar.gz: 7074fbe10cbcc7170305fe4f651ee06ec8c6f7a4799d7a2a2923beff53b69eae5ad1524afa6ac5be47c55ddc443152e7ef918dfb50b3437d0df0d923073ee858
6
+ metadata.gz: 3cd31a2d76b7ab415242cf8755c59139c50bcd8e07d6ab011efb21a2f146147583c461ae19b7fa3378f919c7405bb55248be8c38c89a66708fd25614a8d1167a
7
+ data.tar.gz: 2121ab82950054dd62990c4d41f2d5c7c13bb62ea909d8e9959b2c44040de1dafa2d6878e38e28644caf390a8a6ec4b51b83a68dd4c420235a6606a5360115c1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- Icarus-Mod-Tools (1.5.0)
4
+ Icarus-Mod-Tools (1.5.1)
5
5
  google-cloud-firestore (~> 2.7)
6
6
  octokit (~> 6.0)
7
7
  thor (~> 1.2)
@@ -82,7 +82,7 @@ GEM
82
82
  rspec (>= 2.99.0, < 4.0)
83
83
  json (2.6.3)
84
84
  jwt (2.6.0)
85
- listen (3.7.1)
85
+ listen (3.8.0)
86
86
  rb-fsevent (~> 0.10, >= 0.10.3)
87
87
  rb-inotify (~> 0.9, >= 0.9.10)
88
88
  lumberjack (1.2.8)
@@ -98,9 +98,9 @@ GEM
98
98
  sawyer (~> 0.9)
99
99
  os (1.1.4)
100
100
  parallel (1.22.1)
101
- parser (3.1.3.0)
101
+ parser (3.2.0.0)
102
102
  ast (~> 2.4.1)
103
- pry (0.14.1)
103
+ pry (0.14.2)
104
104
  coderay (~> 1.1)
105
105
  method_source (~> 1.0)
106
106
  public_suffix (5.0.1)
@@ -118,23 +118,23 @@ GEM
118
118
  rspec-mocks (~> 3.12.0)
119
119
  rspec-core (3.12.0)
120
120
  rspec-support (~> 3.12.0)
121
- rspec-expectations (3.12.1)
121
+ rspec-expectations (3.12.2)
122
122
  diff-lcs (>= 1.2.0, < 2.0)
123
123
  rspec-support (~> 3.12.0)
124
- rspec-mocks (3.12.1)
124
+ rspec-mocks (3.12.2)
125
125
  diff-lcs (>= 1.2.0, < 2.0)
126
126
  rspec-support (~> 3.12.0)
127
127
  rspec-support (3.12.0)
128
- rubocop (1.42.0)
128
+ rubocop (1.43.0)
129
129
  json (~> 2.3)
130
130
  parallel (~> 1.10)
131
- parser (>= 3.1.2.1)
131
+ parser (>= 3.2.0.0)
132
132
  rainbow (>= 2.2.2, < 4.0)
133
133
  regexp_parser (>= 1.8, < 3.0)
134
134
  rexml (>= 3.2.5, < 4.0)
135
135
  rubocop-ast (>= 1.24.1, < 2.0)
136
136
  ruby-progressbar (~> 1.7)
137
- unicode-display_width (>= 1.4.0, < 3.0)
137
+ unicode-display_width (>= 2.4.0, < 3.0)
138
138
  rubocop-ast (1.24.1)
139
139
  parser (>= 3.1.1.0)
140
140
  rubocop-rspec (2.16.0)
@@ -151,7 +151,7 @@ GEM
151
151
  jwt (>= 1.5, < 3.0)
152
152
  multi_json (~> 1.10)
153
153
  thor (1.2.1)
154
- unicode-display_width (2.3.0)
154
+ unicode-display_width (2.4.2)
155
155
 
156
156
  PLATFORMS
157
157
  x86_64-linux
@@ -20,7 +20,7 @@ module Icarus
20
20
 
21
21
  def modinfo_array
22
22
  @modinfo_array ||= @firestore.modinfo_array.map do |url|
23
- retrieve_from_url(url)[:mods].map { |mod| Modinfo.new(mod) }
23
+ retrieve_from_url(url)[:mods].map { |mod| Modinfo.new(mod) if mod[:name] =~ /[a-z0-9]+/i }
24
24
  rescue Icarus::Mod::Tools::RequestFailed
25
25
  warn "Skipped; Failed to retrieve #{url}"
26
26
  next
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Icarus
4
4
  module Mod
5
- VERSION = "1.5.0"
5
+ VERSION = "1.5.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Icarus-Mod-Tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Donovan Young
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-09 00:00:00.000000000 Z
11
+ date: 2023-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-cloud-firestore
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
111
  - !ruby/object:Gem::Version
112
112
  version: '0'
113
113
  requirements: []
114
- rubygems_version: 3.3.7
114
+ rubygems_version: 3.3.26
115
115
  signing_key:
116
116
  specification_version: 4
117
117
  summary: Various tools for Icarus Modding