overlook-csgo 0.2.5 → 0.2.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6fcf0c06e00145105279413006bd1728d158ee37
4
- data.tar.gz: c792ba22590c13d5d7bd01f30a76978a3e51d8d2
3
+ metadata.gz: c54d4b418db9aabd40d8d5cf367349991712eb07
4
+ data.tar.gz: d3d4752d77577b90ce3d1fa33b337cec4eb1a2ea
5
5
  SHA512:
6
- metadata.gz: b361e37e063e360e9bdc1289eeb2383db1baf565062dd163b816a3856595e99b9d1a84427a38a5c39442bd3812d494429d53871af5c9e6a0a7724f20aac535b7
7
- data.tar.gz: d013a62ffe753dd0fd956fbaa9ca25af2b72eb1396a5b1e2e86996245e88620c2e37a870cd262a35b2075c96eee5459607ceef809c98726cb7dd74ff059d2c62
6
+ metadata.gz: 2e664480b5437ef5ef8cda1822d8febf158e32d24226b85930ab7c80bf3b7492ad66d8272bda5ab8c4b722bf0e5688bea7e18d5c057f5f3b9225dcbc93a33ac8
7
+ data.tar.gz: 5b7c14361c868d6c453bb8980f81f6a76b5253beb380239e22ca3a39e71975e3bb22a786848a894b49ee3a899e54ef51a3fbaea854d0ab717c47712de15ebad8
@@ -22,8 +22,8 @@ module Overlook
22
22
  module Csgo
23
23
  module Demo
24
24
  class << self
25
- def open(io)
26
- Base.new(io)
25
+ def open(io, parser_config = ParserConfig.new)
26
+ Base.new(io, parser_config)
27
27
  end
28
28
 
29
29
  alias :new :open
@@ -3,7 +3,7 @@ module Overlook
3
3
  module Csgo
4
4
  module Demo
5
5
  class Base
6
- def initialize(io, parser_config = ParserConfig.new)
6
+ def initialize(io, parser_config)
7
7
  @parser = Parser.new(io, parser_config)
8
8
  end
9
9
 
@@ -13,7 +13,7 @@ module Overlook
13
13
  attr_reader :parser_config
14
14
  attr_accessor :descriptors
15
15
 
16
- def initialize(io, parser_config = ParserConfig.new)
16
+ def initialize(io, parser_config)
17
17
  @parser_config = parser_config
18
18
  @reader = ByteReader.new(io)
19
19
  @header = nil
@@ -1,3 +1,3 @@
1
1
  module Overlook
2
- VERSION = '0.2.5'.freeze
2
+ VERSION = '0.2.6'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: overlook-csgo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Finnell