squash_ruby 2.0.1 → 2.0.2
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 +5 -5
- data/README.md +7 -0
- data/lib/squash/ruby.rb +1 -1
- metadata +13 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 0b2810ac8c7857f9aa033f623f3bb0613c39acb78982041f533679d44a978e61
|
|
4
|
+
data.tar.gz: 97e674a3dac9654c78e12322b9fad930abb1d8b0b8eb9ca5c58987d4d11db6be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: acd0cbadb3c16a911b1d679ec73a16ea1a5343ba1ca346a5c03b80ca99d8f512f89ca5a37482bf29d8f58621326d3d20b4f1a22186325c933a0f6cec08cf9ddc
|
|
7
|
+
data.tar.gz: fe0c79d9c68c9a6fcd4b5bd65d5527b0fb142e2cbe7f4ad8b6736a878c2d8d1bbf495d029ace11d064cdd57e4314f3b455cda28b329994675f05c050e501c5dd
|
data/README.md
CHANGED
data/lib/squash/ruby.rb
CHANGED
|
@@ -727,7 +727,7 @@ module Squash
|
|
|
727
727
|
|
|
728
728
|
# @private
|
|
729
729
|
def self.unroll(exception)
|
|
730
|
-
if exception.respond_to?(:original_exception)
|
|
730
|
+
if exception.respond_to?(:original_exception) && exception.original_exception
|
|
731
731
|
[exception.original_exception, [exception]]
|
|
732
732
|
else
|
|
733
733
|
[exception, nil]
|
metadata
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: squash_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Morgan
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
10
|
date: 2016-03-21 00:00:00.000000000 Z
|
|
@@ -111,7 +110,15 @@ homepage: http://github.com/SquareSquash/ruby
|
|
|
111
110
|
licenses:
|
|
112
111
|
- Apache 2.0
|
|
113
112
|
metadata: {}
|
|
114
|
-
post_install_message:
|
|
113
|
+
post_install_message: |2+
|
|
114
|
+
|
|
115
|
+
⚠️ DEPRECATED: squash_ruby is no longer maintained.
|
|
116
|
+
|
|
117
|
+
Square's Squash error-tracking service has been discontinued.
|
|
118
|
+
Consider Sentry, Honeybadger, Bugsnag, or Rollbar as alternatives.
|
|
119
|
+
|
|
120
|
+
This is the final release. No further updates are planned.
|
|
121
|
+
|
|
115
122
|
rdoc_options: []
|
|
116
123
|
require_paths:
|
|
117
124
|
- lib
|
|
@@ -126,9 +133,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
133
|
- !ruby/object:Gem::Version
|
|
127
134
|
version: '0'
|
|
128
135
|
requirements: []
|
|
129
|
-
|
|
130
|
-
rubygems_version: 2.6.2
|
|
131
|
-
signing_key:
|
|
136
|
+
rubygems_version: 4.0.11
|
|
132
137
|
specification_version: 4
|
|
133
|
-
summary: Squash client for Ruby projects
|
|
138
|
+
summary: "[DEPRECATED] Squash client for Ruby projects"
|
|
134
139
|
test_files: []
|
|
140
|
+
...
|