ruby_snowflake_client 1.1.0 → 1.1.1
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/ruby_snowflake_client/version.rb +1 -1
- data/lib/ruby_snowflake_client.rb +4 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 726f666c97e4a0b936eac507df103d5a281c00f9dea7923b4a48cb0e01b428c6
|
|
4
|
+
data.tar.gz: b5995e8349c81cdda10d06b70e844924d9b358e625e9263ab7644f176ae841de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f83b44e2531675ad6cf0edf4e03b90e88eb4393039b039250203beef9a81bd7b968990af2d49cc91c40646410256d211186cd60647db90707a86da078176444
|
|
7
|
+
data.tar.gz: c4b7e8beef0c77a61d114cd27d8705acca6695ca505068a22a0c34cc3076b52bc6a56ce0ecee12a3f9bc26c27baf2664efac95cdf5bbc2e5bea7e43c62b40473
|
data/Gemfile.lock
CHANGED
|
@@ -5,10 +5,12 @@ module Snowflake
|
|
|
5
5
|
LOG_LEVEL = 0
|
|
6
6
|
|
|
7
7
|
class Error < StandardError
|
|
8
|
-
|
|
8
|
+
# This will get pulled through to Sentry, see:
|
|
9
|
+
# https://github.com/getsentry/sentry-ruby/blob/11ecd254c0d2cae2b327f0348074e849095aa32d/sentry-ruby/lib/sentry/error_event.rb#L31-L33
|
|
10
|
+
attr_reader :sentry_context
|
|
9
11
|
|
|
10
12
|
def initialize(details)
|
|
11
|
-
@
|
|
13
|
+
@sentry_context = details
|
|
12
14
|
end
|
|
13
15
|
end
|
|
14
16
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_snowflake_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rinsed
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-06-
|
|
11
|
+
date: 2023-06-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
Using the `Go` library for Snowflake to query and creating native Ruby objects,
|