firebug 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +14 -14
- data/lib/firebug/unserializer.rb +1 -1
- data/lib/firebug/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ed40cf3acf8aabff4f576128c19e3ac657292a7
|
4
|
+
data.tar.gz: bf97a02dd3e95ff8089006dad90c34d366b36123
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b01f95dde11875e633e5719e7a3e0df097a885bcc92995d779f23dec5ab04694002e4f8c4765e3aab65d57266be043577dd844bd173d749a95a6b46f899bba9
|
7
|
+
data.tar.gz: bd616cf39118e67ba8aa0e32ef6b4589c62b08e83f30c0390aa8136b842097f7fed4bfc46ff321cdf75370050087adc8dd58c4b00b06e54571f717792b17130a
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
firebug (0.1.
|
4
|
+
firebug (0.1.9)
|
5
5
|
actionpack (~> 5.0)
|
6
6
|
activerecord (~> 5.0)
|
7
7
|
ruby-mcrypt (~> 0.2)
|
@@ -9,26 +9,26 @@ PATH
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
actionpack (5.1.
|
13
|
-
actionview (= 5.1.
|
14
|
-
activesupport (= 5.1.
|
12
|
+
actionpack (5.1.5)
|
13
|
+
actionview (= 5.1.5)
|
14
|
+
activesupport (= 5.1.5)
|
15
15
|
rack (~> 2.0)
|
16
16
|
rack-test (>= 0.6.3)
|
17
17
|
rails-dom-testing (~> 2.0)
|
18
18
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
19
|
-
actionview (5.1.
|
20
|
-
activesupport (= 5.1.
|
19
|
+
actionview (5.1.5)
|
20
|
+
activesupport (= 5.1.5)
|
21
21
|
builder (~> 3.1)
|
22
22
|
erubi (~> 1.4)
|
23
23
|
rails-dom-testing (~> 2.0)
|
24
24
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
25
|
-
activemodel (5.1.
|
26
|
-
activesupport (= 5.1.
|
27
|
-
activerecord (5.1.
|
28
|
-
activemodel (= 5.1.
|
29
|
-
activesupport (= 5.1.
|
25
|
+
activemodel (5.1.5)
|
26
|
+
activesupport (= 5.1.5)
|
27
|
+
activerecord (5.1.5)
|
28
|
+
activemodel (= 5.1.5)
|
29
|
+
activesupport (= 5.1.5)
|
30
30
|
arel (~> 8.0)
|
31
|
-
activesupport (5.1.
|
31
|
+
activesupport (5.1.5)
|
32
32
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
33
33
|
i18n (~> 0.7)
|
34
34
|
minitest (~> 5.1)
|
@@ -42,10 +42,10 @@ GEM
|
|
42
42
|
diff-lcs (1.3)
|
43
43
|
docile (1.1.5)
|
44
44
|
erubi (1.7.0)
|
45
|
-
i18n (0.9.
|
45
|
+
i18n (0.9.5)
|
46
46
|
concurrent-ruby (~> 1.0)
|
47
47
|
json (2.1.0)
|
48
|
-
loofah (2.
|
48
|
+
loofah (2.2.0)
|
49
49
|
crass (~> 1.0.2)
|
50
50
|
nokogiri (>= 1.5.9)
|
51
51
|
method_source (0.9.0)
|
data/lib/firebug/unserializer.rb
CHANGED
@@ -54,7 +54,7 @@ module Firebug
|
|
54
54
|
def parse_enumerable
|
55
55
|
size = parse_int
|
56
56
|
expect('{')
|
57
|
-
return
|
57
|
+
return {} if size.zero?
|
58
58
|
if str.peek(1) == 'i'
|
59
59
|
# Multiply the size by 2 since the array index isn't counted in the size.
|
60
60
|
# Odd number element will be the index value so drop it.
|
data/lib/firebug/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: firebug
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Frase
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-02-
|
11
|
+
date: 2018-02-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionpack
|