firebug 0.1.9 → 0.1.10

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: 3ed40cf3acf8aabff4f576128c19e3ac657292a7
4
- data.tar.gz: bf97a02dd3e95ff8089006dad90c34d366b36123
3
+ metadata.gz: c1018614c711583afd4cc0e72fe43caf99297e08
4
+ data.tar.gz: 1be4cca8273663260083ffb377179e7026b6c55a
5
5
  SHA512:
6
- metadata.gz: 2b01f95dde11875e633e5719e7a3e0df097a885bcc92995d779f23dec5ab04694002e4f8c4765e3aab65d57266be043577dd844bd173d749a95a6b46f899bba9
7
- data.tar.gz: bd616cf39118e67ba8aa0e32ef6b4589c62b08e83f30c0390aa8136b842097f7fed4bfc46ff321cdf75370050087adc8dd58c4b00b06e54571f717792b17130a
6
+ metadata.gz: 05b8ec0da9dd7213369c6d8556337a3efe75eccae821543f81ed3a3503f62c77dc770e4a01601cdec7ceb138ab66f397dfe779232050885828d58babcd3e3896
7
+ data.tar.gz: 54d74fc10bc0b04c6a33cfc6f61d2c4082ca425d832ab2ff7c24c5be590a84a9b2839d972c880031bd5dd594e26a62fc9b17a2c3c19ae4a4bb5a435b7b52d9b6
@@ -39,3 +39,6 @@ Layout/SpaceAroundEqualsInParameterDefault:
39
39
  Style/SymbolArray:
40
40
  # We do not need to support Ruby 1.9, so this is good to use.
41
41
  Enabled: true
42
+
43
+ RSpec/NestedGroups:
44
+ Max: 5
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- firebug (0.1.9)
4
+ firebug (0.1.10)
5
5
  actionpack (~> 5.0)
6
6
  activerecord (~> 5.0)
7
7
  ruby-mcrypt (~> 0.2)
@@ -21,7 +21,7 @@ module Firebug
21
21
  def user_agent=(value)
22
22
  # Pyro seems to truncate the value and since it also uses this value when finding the session, it's important
23
23
  # we do the same.
24
- super(Firebug.configuration.truncate_user_agent ? value[0...120] : value)
24
+ super(Firebug.configuration.truncate_user_agent ? value&.slice(0...120) : value)
25
25
  end
26
26
 
27
27
  # @return [String]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Firebug
4
- VERSION = '0.1.9'
4
+ VERSION = '0.1.10'
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.9
4
+ version: 0.1.10
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-20 00:00:00.000000000 Z
11
+ date: 2018-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack