ruby-zoom 4.4.0 → 4.4.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
  SHA1:
3
- metadata.gz: cae14a1830640da75b5ab95bc66e0039676601a2
4
- data.tar.gz: a027b2d2e95ffc2a151bad4fe9d05ef9c4d2db13
3
+ metadata.gz: 1957c47ce4c42a823142ee1859ba5784d6e894e3
4
+ data.tar.gz: 23c0df8a4e7d0732dcc4bd0a091b6fb14478dc7a
5
5
  SHA512:
6
- metadata.gz: ac0e4985295cb5d5b5cb44b75acee5b3ae174aebd916c2f939fa5b1979e80d355edaa5da51d871a2c51c7d7e46264e0575e85927160a375a1e71890bb6a14b1f
7
- data.tar.gz: fb425a3f9d85016af48964168ed8e2afeb102a8f68841b8321357d667c36bffa9018af49673b570da119e0a356902d35d43a7164e174361f87976ee35f41f7f1
6
+ metadata.gz: 92e796d1c1115dd5b7dce8fa18c1eb37567d21bac873ed4ca70317cadddfa62ad0be3156dd24d7790e9b31f77db3af4183f029c57d8a3da744c6eb5151f40c17
7
+ data.tar.gz: 140fd96e5763c455648deb80d828621d5d1628460e161330572a4ea5b6709c57a4125ad8ad43600ad670b53b63acb58760fdc4172a6b9be34b3cb3e490a5b1ae
@@ -3,8 +3,6 @@ require "json"
3
3
  require "pathname"
4
4
 
5
5
  class Zoom::Cache
6
- attr_reader :header
7
-
8
6
  def args
9
7
  return nil if (@header.nil?)
10
8
  return @header["args"]
@@ -17,7 +17,7 @@ class Zoom::Profile::Passwords < superclass
17
17
  flags = "-ai"
18
18
  end
19
19
 
20
- super(n, op, flags)
20
+ super(n, op, flags, b, a)
21
21
  @pattern = "(key|pass(wd|word)?)[^:=,>]? *[:=,>]"
22
22
  @taggable = true
23
23
  end
@@ -17,7 +17,7 @@ class Zoom::Profile::UnsafeC < superclass
17
17
  flags = "-i --include=\"*.[ch]\" --include=\"*.[ch]pp\""
18
18
  end
19
19
 
20
- super(n, op, flags)
20
+ super(n, op, flags, b, a)
21
21
  @pattern = [
22
22
  "(",
23
23
  [
@@ -21,7 +21,7 @@ class Zoom::Profile::UnsafeJava < superclass
21
21
  ].join(" ")
22
22
  end
23
23
 
24
- super(n, op, flags)
24
+ super(n, op, flags, b, a)
25
25
  @pattern = "(sun\\.misc\\.)?Unsafe|readObject\\("
26
26
  @taggable = true
27
27
  end
@@ -17,7 +17,7 @@ class Zoom::Profile::UnsafeJs < superclass
17
17
  flags = "-i --include=\"*.js\""
18
18
  end
19
19
 
20
- super(n, op, flags)
20
+ super(n, op, flags, b, a)
21
21
  @pattern = "\\.((append|eval|html)\\(|innerHTML)"
22
22
  @taggable = true
23
23
  end
@@ -22,7 +22,7 @@ class Zoom::Profile::UnsafePhp < superclass
22
22
  ].join(" ")
23
23
  end
24
24
 
25
- super(n, op, flags)
25
+ super(n, op, flags, b, a)
26
26
  # From here: https://www.eukhost.com/blog/webhosting/dangerous-php-functions-must-be-disabled/
27
27
  # OMG is anything safe?!
28
28
  @pattern = [
@@ -17,7 +17,7 @@ class Zoom::Profile::UnsafePython < superclass
17
17
  flags = "-i --include=\"*.py\""
18
18
  end
19
19
 
20
- super(n, op, flags)
20
+ super(n, op, flags, b, a)
21
21
  @pattern = [
22
22
  "(",
23
23
  [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-zoom
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.4.0
4
+ version: 4.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Whittaker