fountain 0.0.17 → 0.0.19

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: 686718bf0e8c60da329a3b3efed0a3bf6204d48fff02b9c21dfb6b7c05b72377
4
- data.tar.gz: 032f5c9bb0b81f8f476f90e7ea24b89965ea0731a9345d0d9862db60c8f49a10
3
+ metadata.gz: d58a93e1c011b85b5077ff728413ea5f4451cfca7843f550f8065257ad75ea84
4
+ data.tar.gz: 7cb684e665579bfa8256602d3967f8c5adfb129df3928efb09b34fb4f75bf873
5
5
  SHA512:
6
- metadata.gz: 58412a9d1e10d46794d3f902a7f2e9489dadc3c835669efcdecce52055f927550e56e2ba465a3601430d7dc6c7aaa0ba4862455bbf6458491a093abb4a0251b1
7
- data.tar.gz: a0a91fa1aa308587b7264e81f1a4b12092946e5d100c2cc0418acec9e0a0bb430b53f8302ed9e2ef26043b171719f812909335fc0ede589fc5c3275c99bd1520
6
+ metadata.gz: 0e1852ad3f32c967a33f4d3d1b033e25acbbde91914b46adb3c39a104762803777324ed529e571a18a58a8e3aecc6fdb24b10b16b18e30dfa313ce928aebdc05
7
+ data.tar.gz: 0bd49a42685234928d838271872bafdd7fb7ff40ef70833c2903d6b59c0685b46191199d7259d6e27e3fd554ac9b833e62a75802e8cdcd6df452b3642dfc95e4
@@ -11,7 +11,7 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  strategy:
13
13
  matrix:
14
- ruby-version: ['2.6', '2.7', '3.0', '3.1']
14
+ ruby-version: ['3.0', '3.1', '3.2', '3.3']
15
15
 
16
16
  steps:
17
17
  - uses: actions/checkout@v2
data/.rubocop.yml CHANGED
@@ -4,7 +4,7 @@ require:
4
4
 
5
5
  AllCops:
6
6
  NewCops: enable
7
- TargetRubyVersion: 2.5
7
+ TargetRubyVersion: 3.0
8
8
 
9
9
  Layout/LineLength:
10
10
  Max: 120
data/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  ## Unreleased
4
4
  - None
5
5
 
6
+ ## [0.0.19](releases/tag/v0.0.19) - 2024-04-30
7
+ ### Added
8
+ - [#10] Add `funnel_id` to Applicants#advance_applicant ([@abrom][])
9
+
10
+ ## [0.0.18](releases/tag/v0.0.18) - 2024-04-28
11
+ ### Added
12
+ - [#9] Bump Ruby versions to support v3.0 -> v3.3 ([@abrom][])
13
+
14
+ ## [0.0.17](releases/tag/v0.0.17) - 2023-05-18
15
+ ### Added
16
+ - [#9] Added support for Applicants#advance_applicants ([@saharvey][])
17
+
6
18
  ## [0.0.16](releases/tag/v0.0.16) - 2022-06-16
7
19
  ### Added
8
20
  - [#7] First/last name accessor methods to the Applicant class ([@noahkconley][])
@@ -17,37 +29,37 @@
17
29
 
18
30
  ## [0.0.13](releases/tag/v0.0.13) - 2021-09-24
19
31
  ### Fixed
20
- - [#3] Update applicants and notes APIs to use *new* expected return statuses from create actions
32
+ - [#3] Update applicants and notes APIs to use *new* expected return statuses from create actions ([@abrom][])
21
33
 
22
34
  ## [0.0.12](releases/tag/v0.0.12) - 2020-03-01
23
35
  ### Fixed
24
- - Address CVE-2020-8130 - `rake` OS command injection vulnerability
36
+ - Address CVE-2020-8130 - `rake` OS command injection vulnerability ([@abrom][])
25
37
 
26
38
  ## [0.0.11](releases/tag/v0.0.11) - 2018-06-02
27
39
  ### Fixed
28
- - Update applicants and notes APIs to check correct return status for create actions
40
+ - Update applicants and notes APIs to check correct return status for create actions ([@abrom][])
29
41
 
30
42
  ## [0.0.10](releases/tag/v0.0.10) - 2018-03-24
31
43
  ### Added
32
- - Funnel management API support
44
+ - Funnel management API support ([@abrom][])
33
45
 
34
46
  ## [0.0.9](releases/tag/v0.0.9) - 2018-03-24
35
47
  ### Added
36
- - Session/slot management API support
48
+ - Session/slot management API support ([@abrom][])
37
49
 
38
50
  ## [0.0.8](releases/tag/v0.0.8) - 2018-03-24
39
51
  ### Added
40
- - Note management API support
52
+ - Note management API support ([@abrom][])
41
53
  ### Fixed
42
- - Replace deprecated URI.encode with CGI.escape
54
+ - Replace deprecated URI.encode with CGI.escape ([@abrom][])
43
55
 
44
56
  ## [0.0.7](releases/tag/v0.0.7) - 2018-03-24
45
57
  ### Added
46
- - Label management API support
58
+ - Label management API support ([@abrom][])
47
59
 
48
60
  ## [0.0.6](releases/tag/v0.0.6) - 2018-03-22
49
61
  ### Added
50
- - Create applicant support
62
+ - Create applicant support ([@abrom][])
51
63
  - Delete applicant support
52
64
  - Get applicant support
53
65
  - get_secure_documents applicant support
@@ -58,18 +70,20 @@
58
70
 
59
71
  ## [0.0.5](releases/tag/v0.0.5) - 2018-03-20
60
72
  ### Fixed
61
- - Applicants inspect method
73
+ - Applicants inspect method ([@abrom][])
62
74
 
63
75
  ## [0.0.4](releases/tag/v0.0.4) - 2018-03-20
64
76
  ### Added
65
- - Applicants inspect method
77
+ - Applicants inspect method ([@abrom][])
66
78
 
67
79
  ## [0.0.3](releases/tag/v0.0.3) - 2018-03-20
68
80
  ### Added
69
- - Applicants wrapper to contain pagination cursors
81
+ - Applicants wrapper to contain pagination cursors ([@abrom][])
70
82
 
71
83
  ## [0.0.2](releases/tag/v0.0.2) - 2018-03-19
72
84
  ### Added
73
- - Support for applicant list and update
85
+ - Support for applicant list and update ([@abrom][])
74
86
 
87
+ [@abrom]: https://github.com/abrom
75
88
  [@noahkconley]: https://github.com/noahkconley
89
+ [@saharvey]: https://github.com/saharvey
data/fountain.gemspec CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.description = 'Fountain REST API v2 wrapper for Ruby'
16
16
  spec.homepage = 'https://github.com/Studiosity/fountain-ruby'
17
17
  spec.license = 'MIT'
18
- spec.required_ruby_version = ['>= 2.5.0', '< 3.2.0']
18
+ spec.required_ruby_version = ['>= 3.0.0', '< 3.4.0']
19
19
 
20
20
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec|docs)/}) }
21
21
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
@@ -130,7 +130,7 @@ module Fountain
130
130
  method: :put,
131
131
  body: Util.slice_hash(
132
132
  advance_options,
133
- :skip_automated_actions, :stage_id
133
+ :skip_automated_actions, :stage_id, :funnel_id
134
134
  )
135
135
  )
136
136
  check_response response, Net::HTTPNoContent
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fountain
4
- VERSION = '0.0.17'
4
+ VERSION = '0.0.19'
5
5
  end
data/lib/fountain.rb CHANGED
@@ -3,6 +3,7 @@
3
3
  require 'fountain/gem_version'
4
4
 
5
5
  require 'json'
6
+ require 'forwardable'
6
7
 
7
8
  require 'fountain/configuration'
8
9
  require 'fountain/util'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fountain
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.17
4
+ version: 0.0.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - abrom
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-18 00:00:00.000000000 Z
11
+ date: 2024-04-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Fountain REST API v2 wrapper for Ruby
14
14
  email:
@@ -68,10 +68,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: 2.5.0
71
+ version: 3.0.0
72
72
  - - "<"
73
73
  - !ruby/object:Gem::Version
74
- version: 3.2.0
74
+ version: 3.4.0
75
75
  required_rubygems_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="