callstacking-rails 0.1.33 → 0.1.35

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: 3af1904e132f578f033682fbbdc8a88e3c45ed73ddeb6a1ed0622a92c8bf74f2
4
- data.tar.gz: 2f52407c767552a066bebf68730bf06b7f1ca54c31259bfd10ed306a013c41b6
3
+ metadata.gz: 11d37da94e52c249d1b591d2a0c5dfef5f55c133e5336bea6b4db341a839dffa
4
+ data.tar.gz: fd8b20d2b04e23b3833da9ac7fd122e6b6fff36a6b60313fda462651c5876d4a
5
5
  SHA512:
6
- metadata.gz: 7b71b37f3332b80646764351eec2058f106660112f94c3b9c455c2792c8fc7661487400592cbc7584366db84e8626d7b2b31c0e1b72fa5df3f5f19d2f9d14dda
7
- data.tar.gz: 6d2fbfd9f912d12dbe5542a69d1ccfd8d2f8cadd3f1cf54b5f72e04763b93096f749909f1897b45602e21aeb0b41b810e2af81c92b6db39f73d146042fe676c2
6
+ metadata.gz: 3f8908e29235fdd5a35fb176b0569042f9fc8c395d4cfebaaa87e62c1068a95500d5e6e67490168788ba58787ba811ecc3c623a831620f0df5a9642b5c4dd6b6
7
+ data.tar.gz: 28d4e721755cddcaa11535defc51523c64323aca6162831cc8e436ea3ec032a4aebdfc84884464f78ec48a93eaa0228a09f82b352e84bbfdeec2b23c4e5e1c45
@@ -25,7 +25,7 @@ module Callstacking
25
25
  c.use Faraday::Response::RaiseError # raise exceptions on 40x, 50x responses
26
26
  c.request :json # This will set the "Content-Type" header to application/json and call .to_json on the body
27
27
  c.adapter Faraday.default_adapter
28
- c.options.timeout = 5
28
+ c.options.timeout = 120
29
29
 
30
30
  if auth_token.present?
31
31
  c.request :authorization, :Bearer, auth_token
@@ -122,7 +122,7 @@ module Callstacking
122
122
 
123
123
  h = param_names.map.with_index do |param, index|
124
124
  next if [:&, :*, :**].include?(param)
125
- [param, args[index]]
125
+ [param, args[index].inspect]
126
126
  end.compact.to_h
127
127
 
128
128
  filter = ::Rails.application.config.filter_parameters
@@ -1,5 +1,5 @@
1
1
  module Callstacking
2
2
  module Rails
3
- VERSION = "0.1.33"
3
+ VERSION = "0.1.35"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: callstacking-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.33
4
+ version: 0.1.35
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Jones
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-01 00:00:00.000000000 Z
11
+ date: 2023-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails