squiggle 0.0.8 → 0.0.9

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.
@@ -11,5 +11,5 @@ require 'squiggle/log_line'
11
11
  require 'squiggle/squid_standard_parser'
12
12
 
13
13
  module Squiggle
14
- VERSION = '0.0.8'
14
+ VERSION = '0.0.9'
15
15
  end
@@ -23,7 +23,8 @@ module Squiggle
23
23
  ll.bytes = toks[4].to_i
24
24
  ll.uri = toks[6]
25
25
  ll.username = toks[7]
26
- ll.cache_sibling = toks[8].try(:split, "/").try(:[], 0)
26
+ tok8 = toks[8].nil? ? nil : toks[8].split("/")
27
+ ll.cache_sibling = tok8.nil? ? nil : tok8[0]
27
28
  ll.mime_type = toks[9]
28
29
  end
29
30
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 8
9
- version: 0.0.8
8
+ - 9
9
+ version: 0.0.9
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Draper