boltless 2.6.0 → 2.7.0

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
  SHA256:
3
- metadata.gz: b9b03acfe48c4f40a1b19d73728c1495f0891745dcef067aa5f3f20e2990c4d9
4
- data.tar.gz: 72baf027ab7fd89dc085a45d3f41a1104a3f3904ec6024a3288fcd5c3c101629
3
+ metadata.gz: 0b0cda5570de6f76fb781352ceec45e02beb14641e1515bcc1d009ba57372523
4
+ data.tar.gz: a0cd945fc3a9defb5cfeb8303cb6aa65b4f55d3785c73730de7b27739f00015f
5
5
  SHA512:
6
- metadata.gz: ab4be4112fc4362963e151b6cc1cf1e963456263274a088c19bb30d34e1f1b9c083a22f979ceaba2c0a8e02a8878a1b7997da621ca7011ec81a757205aa33604
7
- data.tar.gz: a24f25e0ca3e1a2ec0aae0db2fc28089bf573936f4248c06cd2f5858198fe0d9015b14b2ef2a2e6e52a5dab82773c043ea111e97f60192c8508a41fde0a90f63
6
+ metadata.gz: 2a3d72b112684260578f81909e29a8a719c1ac9f327b08a9ac62781bf73e40d0cba3d515bf36c72f652d0d6ac8c9dd1e2bab91fab686385961ac8291af4c47a1
7
+ data.tar.gz: cca4c0e17831465948411617c0186bd4d331262d4265f0bc57581844371b2836db7c28d4f93cbb69573db6f1cbed25ea7773151b7b9a5d5856d48cba54f06e12
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Boltless
5
5
  # The version of the +boltless+ gem
6
- VERSION = '2.6.0'
6
+ VERSION = '2.7.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
@@ -44,7 +44,7 @@ RSpec.describe Boltless::Extensions::ConnectionPool do
44
44
  it 'returns a configured HTTP client (connection acquire timeout)' do
45
45
  Boltless.configuration.connection_pool_timeout = 1
46
46
  reload.call
47
- expect(action.instance_variable_get(:@timeout)).to be(1)
47
+ expect(action.instance_variable_get(:@timeout).to_i).to be(1)
48
48
  end
49
49
 
50
50
  it 'returns a configured HTTP client (persistent base URL)' do
@@ -7,8 +7,9 @@
7
7
  puts
8
8
  puts <<DESC
9
9
  -------------- Versions --------------
10
- Ruby: #{"#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"}
11
- Active Support: #{ActiveSupport.version}
10
+ Ruby: #{"#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"}
11
+ Active Support: #{ActiveSupport.version}
12
+ Connection Pool: #{Gem.loaded_specs['connection_pool'].version}
12
13
  --------------------------------------
13
14
  DESC
14
15
  puts
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boltless
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -55,16 +55,22 @@ dependencies:
55
55
  name: connection_pool
56
56
  requirement: !ruby/object:Gem::Requirement
57
57
  requirements:
58
- - - "~>"
58
+ - - ">="
59
59
  - !ruby/object:Gem::Version
60
60
  version: '2.3'
61
+ - - "<"
62
+ - !ruby/object:Gem::Version
63
+ version: '4.0'
61
64
  type: :runtime
62
65
  prerelease: false
63
66
  version_requirements: !ruby/object:Gem::Requirement
64
67
  requirements:
65
- - - "~>"
68
+ - - ">="
66
69
  - !ruby/object:Gem::Version
67
70
  version: '2.3'
71
+ - - "<"
72
+ - !ruby/object:Gem::Version
73
+ version: '4.0'
68
74
  - !ruby/object:Gem::Dependency
69
75
  name: fast_jsonparser
70
76
  requirement: !ruby/object:Gem::Requirement