gems-status 0.54.0 → 0.55.0
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.
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.55.0
|
|
@@ -22,6 +22,7 @@ module GemsStatus
|
|
|
22
22
|
@mailing_lists = conf["mailing_lists"]
|
|
23
23
|
@email_to = conf["email_to"]
|
|
24
24
|
@emails = {}
|
|
25
|
+
@gem = nil
|
|
25
26
|
download_emails
|
|
26
27
|
end
|
|
27
28
|
|
|
@@ -111,6 +112,7 @@ module GemsStatus
|
|
|
111
112
|
end
|
|
112
113
|
|
|
113
114
|
def check?(gem)
|
|
115
|
+
@gem = gem
|
|
114
116
|
#ignore upstream checks
|
|
115
117
|
return true if gem.origin == gem.gems_url
|
|
116
118
|
|
|
@@ -123,7 +125,11 @@ module GemsStatus
|
|
|
123
125
|
end
|
|
124
126
|
|
|
125
127
|
def description
|
|
126
|
-
|
|
128
|
+
if !@gem
|
|
129
|
+
Utils::log_debug("No gem. That means that check method has not been called in NotASecurityAlertChecker")
|
|
130
|
+
return
|
|
131
|
+
end
|
|
132
|
+
message(@gem)
|
|
127
133
|
end
|
|
128
134
|
|
|
129
135
|
private
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gems-status
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.55.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -229,7 +229,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
229
229
|
version: '0'
|
|
230
230
|
segments:
|
|
231
231
|
- 0
|
|
232
|
-
hash:
|
|
232
|
+
hash: 2033246831570977620
|
|
233
233
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
234
234
|
none: false
|
|
235
235
|
requirements:
|
|
@@ -238,7 +238,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
238
238
|
version: '0'
|
|
239
239
|
segments:
|
|
240
240
|
- 0
|
|
241
|
-
hash:
|
|
241
|
+
hash: 2033246831570977620
|
|
242
242
|
requirements: []
|
|
243
243
|
rubyforge_project:
|
|
244
244
|
rubygems_version: 1.8.25
|