active_campaign_rb 0.1.1 → 0.2.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: f0cb172c2bd7cda0925fe6c6e3a068da5e4396950b3e1fde5193370d3b34cb01
4
- data.tar.gz: 907bf2efaddcd30a067fe006c21e0eb39f536968729bf17933fc9f180ad29e33
3
+ metadata.gz: d93ba0bba019a2614ab0628a77801daacb58b3dc3d822c52cb1b3957af9a4c03
4
+ data.tar.gz: 7f2e2a16f1635a64ed2d613aa77c607e2f59d53fdd1c619b2ea677077375b3c0
5
5
  SHA512:
6
- metadata.gz: 8b853635a819615c87d3a4a453456d804440e6c3a88f7f1e44411b53621abfaba60903a4d47656f2a4271462bfa19f79f07e9c9d19f67d59e2487a9637070bf6
7
- data.tar.gz: e39cea030434142ad4ff9761c9affd2a23a3e86de4281b2bae58834a08e203f72d59f45b0242c201cbd4e282b9865f93857071b084c3ec96802958f5f53cbb54
6
+ metadata.gz: ae1fb308e727f71661cb5c1e2de12ddd6f753a8841f865258a34bd4204a6e369035ca97a3e92d92a6c66958681823531b9251189f6530a6b8273fa62de25e337
7
+ data.tar.gz: a64d72c2e4258dbb6c2335adf48e1776fbecb447d9b59dacd9d7c713c0e32f16689c32939b0f1d006daa46004321fd393f6c3c0b475f587d63110e31d5badc9c
data/Gemfile.lock CHANGED
@@ -1,47 +1,50 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_campaign_rb (0.1.0)
5
- activesupport (~> 6.1)
4
+ active_campaign_rb (0.1.1)
5
+ activesupport (>= 6.1)
6
6
  faraday (~> 1.8)
7
7
  oj (~> 3.13)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activesupport (6.1.4.1)
12
+ activesupport (7.0.2.3)
13
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
14
  i18n (>= 1.6, < 2)
15
15
  minitest (>= 5.1)
16
16
  tzinfo (~> 2.0)
17
- zeitwerk (~> 2.3)
18
17
  ast (2.4.2)
19
18
  concurrent-ruby (1.1.9)
20
19
  diff-lcs (1.4.4)
21
- faraday (1.8.0)
20
+ faraday (1.10.0)
22
21
  faraday-em_http (~> 1.0)
23
22
  faraday-em_synchrony (~> 1.0)
24
23
  faraday-excon (~> 1.1)
25
- faraday-httpclient (~> 1.0.1)
24
+ faraday-httpclient (~> 1.0)
25
+ faraday-multipart (~> 1.0)
26
26
  faraday-net_http (~> 1.0)
27
- faraday-net_http_persistent (~> 1.1)
27
+ faraday-net_http_persistent (~> 1.0)
28
28
  faraday-patron (~> 1.0)
29
29
  faraday-rack (~> 1.0)
30
- multipart-post (>= 1.2, < 3)
30
+ faraday-retry (~> 1.0)
31
31
  ruby2_keywords (>= 0.0.4)
32
32
  faraday-em_http (1.0.0)
33
33
  faraday-em_synchrony (1.0.0)
34
34
  faraday-excon (1.1.0)
35
35
  faraday-httpclient (1.0.1)
36
+ faraday-multipart (1.0.3)
37
+ multipart-post (>= 1.2, < 3)
36
38
  faraday-net_http (1.0.1)
37
39
  faraday-net_http_persistent (1.2.0)
38
40
  faraday-patron (1.0.0)
39
41
  faraday-rack (1.0.0)
40
- i18n (1.8.10)
42
+ faraday-retry (1.0.3)
43
+ i18n (1.10.0)
41
44
  concurrent-ruby (~> 1.0)
42
- minitest (5.14.4)
45
+ minitest (5.15.0)
43
46
  multipart-post (2.1.1)
44
- oj (3.13.9)
47
+ oj (3.13.11)
45
48
  parallel (1.21.0)
46
49
  parser (3.0.2.0)
47
50
  ast (~> 2.4.1)
@@ -78,7 +81,6 @@ GEM
78
81
  tzinfo (2.0.4)
79
82
  concurrent-ruby (~> 1.0)
80
83
  unicode-display_width (2.1.0)
81
- zeitwerk (2.5.1)
82
84
 
83
85
  PLATFORMS
84
86
  x86_64-darwin-19
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
26
26
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
27
27
  spec.require_paths = ["lib"]
28
28
 
29
- spec.add_dependency "activesupport", "~> 6.1"
29
+ spec.add_dependency "activesupport", ">= 6.1"
30
30
  spec.add_dependency "faraday", "~> 1.8"
31
31
  spec.add_dependency "oj", "~> 3.13"
32
32
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveCampaignRb
4
- VERSION = "0.1.1"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_campaign_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - spidergears
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-11-06 00:00:00.000000000 Z
11
+ date: 2022-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '6.1'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '6.1'
27
27
  - !ruby/object:Gem::Dependency