active-campaign-simple 0.3.3b → 0.3.3
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db3cf95b6871dea9e9a64762a628f01498f6afec823eba660c3fc117691473ef
|
4
|
+
data.tar.gz: e65de428d99e04fe758e77aed2bdc606700b09ddad3f015185fa9e3fcc541431
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cc2ece8dd2e814dc26202a973e8527117463b96ba026c9ffe16207a51a5667d986a541024f083b1c9fe6dbafa990fcacd6cfe0af2cb045e483f808106b7a8ea
|
7
|
+
data.tar.gz: 1ccc820ab59101975480cf77cd84377421609dd5260a47973fa62a600a65015b50c1a99d48adced1a8cf52a17368f5d41b751ae2da7d91ef8fd3bc989fe20520
|
@@ -2,18 +2,19 @@ require 'active-campaign-simple/exceptions'
|
|
2
2
|
|
3
3
|
module ActiveCampaign
|
4
4
|
class ExceptionHandler
|
5
|
+
|
5
6
|
ERRORS = {
|
6
|
-
'404 Not Found' => ActiveCampaign::NotFoundError
|
7
|
-
'422 Unprocessable Entity' => ActiveCampaign::UnprocessableEntityError
|
7
|
+
'404 Not Found' => ActiveCampaign::NotFoundError
|
8
8
|
}
|
9
9
|
|
10
10
|
def initialize(error)
|
11
|
-
error_class = ERRORS
|
11
|
+
error_class = ERRORS[error.message]
|
12
12
|
if error_class
|
13
|
-
raise error_class.new(error)
|
13
|
+
raise error_class.new(error)
|
14
14
|
else
|
15
|
-
raise ActiveCampaign::APIError.new(error)
|
15
|
+
raise ActiveCampaign::APIError.new(error)
|
16
16
|
end
|
17
17
|
end
|
18
|
+
|
18
19
|
end
|
19
|
-
end
|
20
|
+
end
|
@@ -1,14 +1,11 @@
|
|
1
1
|
class ActiveCampaignAPIError < ::StandardError
|
2
2
|
def initialize(error)
|
3
|
-
|
4
|
-
stack += error.backtrace.join("\n") if error.backtrace
|
5
|
-
ActiveCampaign.api_logger.error stack
|
3
|
+
ActiveCampaign.api_logger.error "ERROR: #{error}"
|
6
4
|
super(error)
|
7
5
|
end
|
8
6
|
end
|
9
7
|
|
10
8
|
module ActiveCampaign
|
11
9
|
class NotFoundError < ActiveCampaignAPIError; end
|
12
|
-
class UnprocessableEntityError < ActiveCampaignAPIError; end
|
13
10
|
class APIError < ActiveCampaignAPIError; end
|
14
11
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active-campaign-simple
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathan Leavitt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -74,11 +74,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
74
74
|
version: '0'
|
75
75
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
76
|
requirements:
|
77
|
-
- - "
|
77
|
+
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version:
|
79
|
+
version: 3.0.0
|
80
80
|
requirements: []
|
81
|
-
rubygems_version: 3.3.
|
81
|
+
rubygems_version: 3.3.3
|
82
82
|
signing_key:
|
83
83
|
specification_version: 4
|
84
84
|
summary: Simple Ruby REST wrapper for the ActiveCampaign API
|