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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5bf90b694d5688ace43fb531d31216567031e06e
4
- data.tar.gz: f288b37697c98a382964584e7615851541aa085e
3
+ metadata.gz: 3ed40cf3acf8aabff4f576128c19e3ac657292a7
4
+ data.tar.gz: bf97a02dd3e95ff8089006dad90c34d366b36123
5
5
  SHA512:
6
- metadata.gz: d7b1d536b012704b0fec305424c05f81426494023f064816941f056f9553a125f4f3050a28aef1d979fe36784739a5a0b00a6c801b7b9b1d9fc751d528659b4f
7
- data.tar.gz: afb6a295079c61ee39530b773711227c90e1422e8fc8b9d1e55f2ce494a3c2d0c985c38e63c5e2b7e479bed11f7b163ccef29f92ab23325f246977ec6f8adc7a
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.8)
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.4)
13
- actionview (= 5.1.4)
14
- activesupport (= 5.1.4)
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.4)
20
- activesupport (= 5.1.4)
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.4)
26
- activesupport (= 5.1.4)
27
- activerecord (5.1.4)
28
- activemodel (= 5.1.4)
29
- activesupport (= 5.1.4)
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.4)
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.3)
45
+ i18n (0.9.5)
46
46
  concurrent-ruby (~> 1.0)
47
47
  json (2.1.0)
48
- loofah (2.1.1)
48
+ loofah (2.2.0)
49
49
  crass (~> 1.0.2)
50
50
  nokogiri (>= 1.5.9)
51
51
  method_source (0.9.0)
@@ -54,7 +54,7 @@ module Firebug
54
54
  def parse_enumerable
55
55
  size = parse_int
56
56
  expect('{')
57
- return [] if size.zero?
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Firebug
4
- VERSION = '0.1.8'
4
+ VERSION = '0.1.9'
5
5
  end
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.8
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-05 00:00:00.000000000 Z
11
+ date: 2018-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack