faithteams-api 4.4.0 → 4.6.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.
data/.rubocop.yml DELETED
@@ -1,228 +0,0 @@
1
- plugins:
2
- - rubocop-performance
3
- - rubocop-rake
4
- - rubocop-rspec
5
-
6
- AllCops:
7
- # RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
8
- # to ignore them, so only the ones explicitly set in this file are enabled.
9
- DisabledByDefault: true
10
-
11
- Performance:
12
- Exclude:
13
- - "**/test/**/*"
14
-
15
- # Prefer &&/|| over and/or.
16
- Style/AndOr:
17
- Enabled: true
18
- EnforcedStyle: conditionals
19
-
20
- # Align `when` with `case`.
21
- Layout/CaseIndentation:
22
- Enabled: true
23
- EnforcedStyle: end
24
-
25
- Layout/ClosingHeredocIndentation:
26
- Enabled: true
27
-
28
- # Align comments with method definitions.
29
- Layout/CommentIndentation:
30
- Enabled: true
31
-
32
- Layout/ElseAlignment:
33
- Enabled: true
34
-
35
- # Align `end` with the matching keyword or starting expression except for
36
- # assignments, where it should be aligned with the LHS.
37
- Layout/EndAlignment:
38
- Enabled: true
39
- EnforcedStyleAlignWith: variable
40
- AutoCorrect: true
41
-
42
- Layout/EmptyLineAfterMagicComment:
43
- Enabled: true
44
-
45
- Layout/EmptyLinesAroundAccessModifier:
46
- Enabled: false
47
- EnforcedStyle: only_before
48
-
49
- Layout/EmptyLinesAroundBlockBody:
50
- Enabled: true
51
-
52
- # In a regular class definition, no empty lines around the body.
53
- Layout/EmptyLinesAroundClassBody:
54
- Enabled: true
55
-
56
- # In a regular method definition, no empty lines around the body.
57
- Layout/EmptyLinesAroundMethodBody:
58
- Enabled: true
59
-
60
- # In a regular module definition, no empty lines around the body.
61
- Layout/EmptyLinesAroundModuleBody:
62
- Enabled: true
63
-
64
- # Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
65
- Style/HashSyntax:
66
- Enabled: true
67
- EnforcedStyle: ruby19
68
- EnforcedShorthandSyntax: never # Ruby 3.1 allows omission of value name, but we want to support prior Ruby versions
69
-
70
- Layout/FirstArgumentIndentation:
71
- Enabled: true
72
-
73
- # Method definitions after `private` or `protected` isolated calls need one
74
- # extra level of indentation.
75
- Layout/IndentationConsistency:
76
- Enabled: false
77
-
78
- # Two spaces, no tabs (for indentation).
79
- Layout/IndentationWidth:
80
- Enabled: true
81
-
82
- Layout/LeadingCommentSpace:
83
- Enabled: true
84
-
85
- Layout/SpaceAfterColon:
86
- Enabled: true
87
-
88
- Layout/SpaceAfterComma:
89
- Enabled: true
90
-
91
- Layout/SpaceAfterSemicolon:
92
- Enabled: true
93
-
94
- Layout/SpaceAroundEqualsInParameterDefault:
95
- Enabled: true
96
-
97
- Layout/SpaceAroundKeyword:
98
- Enabled: true
99
-
100
- Layout/SpaceBeforeComma:
101
- Enabled: true
102
-
103
- Layout/SpaceBeforeComment:
104
- Enabled: true
105
-
106
- Layout/SpaceBeforeFirstArg:
107
- Enabled: true
108
-
109
- Style/DefWithParentheses:
110
- Enabled: true
111
-
112
- # Defining a method with parameters needs parentheses.
113
- Style/MethodDefParentheses:
114
- Enabled: true
115
-
116
- Style/FrozenStringLiteralComment:
117
- Enabled: true
118
- EnforcedStyle: always
119
-
120
- Style/RedundantFreeze:
121
- Enabled: true
122
-
123
- # Use `foo {}` not `foo{}`.
124
- Layout/SpaceBeforeBlockBraces:
125
- Enabled: true
126
-
127
- # Use `foo { bar }` not `foo {bar}`.
128
- Layout/SpaceInsideBlockBraces:
129
- Enabled: true
130
- EnforcedStyleForEmptyBraces: space
131
-
132
- # Use `{ a: 1 }` not `{a:1}`.
133
- Layout/SpaceInsideHashLiteralBraces:
134
- Enabled: true
135
-
136
- Layout/SpaceInsideParens:
137
- Enabled: true
138
-
139
- # Check quotes usage according to lint rule below.
140
- Style/StringLiterals:
141
- Enabled: true
142
- EnforcedStyle: double_quotes
143
-
144
- # Detect hard tabs, no hard tabs.
145
- Layout/IndentationStyle:
146
- Enabled: true
147
-
148
- # Empty lines should not have any spaces.
149
- Layout/TrailingEmptyLines:
150
- Enabled: true
151
-
152
- # No trailing whitespace.
153
- Layout/TrailingWhitespace:
154
- Enabled: true
155
-
156
- # Use quotes for string literals when they are enough.
157
- Style/RedundantPercentQ:
158
- Enabled: true
159
-
160
- Lint/AmbiguousOperator:
161
- Enabled: true
162
-
163
- Lint/AmbiguousRegexpLiteral:
164
- Enabled: true
165
-
166
- Lint/ErbNewArguments:
167
- Enabled: true
168
-
169
- # Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
170
- Lint/RequireParentheses:
171
- Enabled: true
172
-
173
- Lint/ShadowingOuterLocalVariable:
174
- Enabled: true
175
-
176
- Lint/RedundantStringCoercion:
177
- Enabled: true
178
-
179
- Lint/UriEscapeUnescape:
180
- Enabled: true
181
-
182
- Lint/UselessAssignment:
183
- Enabled: true
184
-
185
- Lint/DeprecatedClassMethods:
186
- Enabled: true
187
-
188
- Style/ParenthesesAroundCondition:
189
- Enabled: true
190
-
191
- Style/RedundantBegin:
192
- Enabled: true
193
-
194
- Style/RedundantReturn:
195
- Enabled: true
196
- AllowMultipleReturnValues: true
197
-
198
- Style/Semicolon:
199
- Enabled: true
200
- AllowAsExpressionSeparator: true
201
-
202
- # Prefer Foo.method over Foo::method
203
- Style/ColonMethodCall:
204
- Enabled: true
205
-
206
- Style/TrivialAccessors:
207
- Enabled: true
208
-
209
- Performance/FlatMap:
210
- Enabled: true
211
-
212
- Performance/RedundantMerge:
213
- Enabled: true
214
-
215
- Performance/StartWith:
216
- Enabled: true
217
-
218
- Performance/EndWith:
219
- Enabled: true
220
-
221
- Performance/RegexpMatch:
222
- Enabled: true
223
-
224
- Performance/ReverseEach:
225
- Enabled: true
226
-
227
- Performance/UnfreezeString:
228
- Enabled: true
data/.tool-versions DELETED
@@ -1 +0,0 @@
1
- ruby 3.3.0
data/CODE_OF_CONDUCT.md DELETED
@@ -1,128 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- We as members, contributors, and leaders pledge to make participation in our
6
- community a harassment-free experience for everyone, regardless of age, body
7
- size, visible or invisible disability, ethnicity, sex characteristics, gender
8
- identity and expression, level of experience, education, socioeconomic status,
9
- nationality, personal appearance, race, caste, color, religion, or sexual
10
- identity and orientation.
11
-
12
- We pledge to act and interact in ways that contribute to an open, welcoming,
13
- diverse, inclusive, and healthy community.
14
-
15
- ## Our Standards
16
-
17
- Examples of behavior that contributes to a positive environment for our
18
- community include:
19
-
20
- * Demonstrating empathy and kindness toward other people
21
- * Being respectful of differing opinions, viewpoints, and experiences
22
- * Giving and gracefully accepting constructive feedback
23
- * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
24
- * Focusing on what is best not just for us as individuals, but for the overall community
25
-
26
- Examples of unacceptable behavior include:
27
-
28
- * The use of sexualized language or imagery, and sexual attention or advances of any kind
29
- * Trolling, insulting or derogatory comments, and personal or political attacks
30
- * Public or private harassment
31
- * Publishing others' private information, such as a physical or email address, without their explicit permission
32
- * Other conduct which could reasonably be considered inappropriate in a professional setting
33
-
34
- ## Enforcement Responsibilities
35
-
36
- Community leaders are responsible for clarifying and enforcing our standards of
37
- acceptable behavior and will take appropriate and fair corrective action in
38
- response to any behavior that they deem inappropriate, threatening, offensive,
39
- or harmful.
40
-
41
- Community leaders have the right and responsibility to remove, edit, or reject
42
- comments, commits, code, wiki edits, issues, and other contributions that are
43
- not aligned to this Code of Conduct, and will communicate reasons for moderation
44
- decisions when appropriate.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies within all community spaces, and also applies when
49
- an individual is officially representing the community in public spaces.
50
- Examples of representing our community include using an official e-mail address,
51
- posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event.
53
-
54
- ## Enforcement
55
-
56
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
57
- reported to the community leaders responsible for enforcement through [Github
58
- Reporting](https://docs.github.com/en/communities/maintaining-your-safety-on-github/reporting-abuse-or-spam)
59
- or by emailing [integrations@tithe.ly](mailto:integrations@tithe.ly?subject=Code of Conduct violation).
60
- All complaints will be reviewed and investigated promptly and fairly.
61
-
62
- All community leaders are obligated to respect the privacy and security of the
63
- reporter of any incident.
64
-
65
- ## Enforcement Guidelines
66
-
67
- Community leaders will follow these Community Impact Guidelines in determining
68
- the consequences for any action they deem in violation of this Code of Conduct:
69
-
70
- ### 1. Correction
71
-
72
- **Community Impact**: Use of inappropriate language or other behavior deemed
73
- unprofessional or unwelcome in the community.
74
-
75
- **Consequence**: A private, written warning from community leaders, providing
76
- clarity around the nature of the violation and an explanation of why the
77
- behavior was inappropriate. A public apology may be requested.
78
-
79
- ### 2. Warning
80
-
81
- **Community Impact**: A violation through a single incident or series of
82
- actions.
83
-
84
- **Consequence**: A warning with consequences for continued behavior. No
85
- interaction with the people involved, including unsolicited interaction with
86
- those enforcing the Code of Conduct, for a specified period of time. This
87
- includes avoiding interactions in community spaces as well as external channels
88
- like social media. Violating these terms may lead to a temporary or permanent
89
- ban.
90
-
91
- ### 3. Temporary Ban
92
-
93
- **Community Impact**: A serious violation of community standards, including
94
- sustained inappropriate behavior.
95
-
96
- **Consequence**: A temporary ban from any sort of interaction or public
97
- communication with the community for a specified period of time. No public or
98
- private interaction with the people involved, including unsolicited interaction
99
- with those enforcing the Code of Conduct, is allowed during this period.
100
- Violating these terms may lead to a permanent ban.
101
-
102
- ### 4. Permanent Ban
103
-
104
- **Community Impact**: Demonstrating a pattern of violation of community
105
- standards, including sustained inappropriate behavior, harassment of an
106
- individual, or aggression toward or disparagement of classes of individuals.
107
-
108
- **Consequence**: A permanent ban from any sort of public interaction within the
109
- community.
110
-
111
- ## Attribution
112
-
113
- This Code of Conduct is adapted from the [Contributor Covenant][homepage],
114
- version 2.1, available at
115
- [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
116
-
117
- Community Impact Guidelines were inspired by
118
- [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
119
-
120
- For answers to common questions about this code of conduct, see the FAQ at
121
- [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
122
- [https://www.contributor-covenant.org/translations][translations].
123
-
124
- [homepage]: https://www.contributor-covenant.org
125
- [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
126
- [Mozilla CoC]: https://github.com/mozilla/diversity
127
- [FAQ]: https://www.contributor-covenant.org/faq
128
- [translations]: https://www.contributor-covenant.org/translations
data/Gemfile DELETED
@@ -1,6 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source "https://rubygems.org"
4
-
5
- # Specify your gem's dependencies in faithteams-api.gemspec
6
- gemspec
data/Gemfile.lock DELETED
@@ -1,186 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- faithteams-api (4.4.0)
5
- activesupport (~> 7.2.2)
6
- http (~> 5.1)
7
- logger (~> 1.6.1)
8
- ostruct (~> 0.6.0)
9
- rexml (~> 3.3.9)
10
- thor (~> 1.4.0)
11
-
12
- GEM
13
- remote: https://rubygems.org/
14
- specs:
15
- activesupport (7.2.2.1)
16
- base64
17
- benchmark (>= 0.3)
18
- bigdecimal
19
- concurrent-ruby (~> 1.0, >= 1.3.1)
20
- connection_pool (>= 2.2.5)
21
- drb
22
- i18n (>= 1.6, < 2)
23
- logger (>= 1.4.2)
24
- minitest (>= 5.1)
25
- securerandom (>= 0.3)
26
- tzinfo (~> 2.0, >= 2.0.5)
27
- addressable (2.8.7)
28
- public_suffix (>= 2.0.2, < 7.0)
29
- ast (2.4.3)
30
- base64 (0.2.0)
31
- benchmark (0.4.0)
32
- bigdecimal (3.1.8)
33
- byebug (11.1.3)
34
- coderay (1.1.3)
35
- concurrent-ruby (1.3.4)
36
- connection_pool (2.4.1)
37
- crack (1.0.0)
38
- bigdecimal
39
- rexml
40
- diff-lcs (1.5.1)
41
- docile (1.4.1)
42
- domain_name (0.6.20240107)
43
- drb (2.2.1)
44
- ffi (1.17.0)
45
- ffi-compiler (1.3.2)
46
- ffi (>= 1.15.5)
47
- rake
48
- formatador (1.1.0)
49
- guard (2.19.0)
50
- formatador (>= 0.2.4)
51
- listen (>= 2.7, < 4.0)
52
- lumberjack (>= 1.0.12, < 2.0)
53
- nenv (~> 0.1)
54
- notiffany (~> 0.0)
55
- pry (>= 0.13.0)
56
- shellany (~> 0.0)
57
- thor (>= 0.18.1)
58
- guard-compat (1.2.1)
59
- guard-rspec (4.7.3)
60
- guard (~> 2.1)
61
- guard-compat (~> 1.1)
62
- rspec (>= 2.99.0, < 4.0)
63
- hashdiff (1.1.2)
64
- http (5.2.0)
65
- addressable (~> 2.8)
66
- base64 (~> 0.1)
67
- http-cookie (~> 1.0)
68
- http-form_data (~> 2.2)
69
- llhttp-ffi (~> 0.5.0)
70
- http-cookie (1.0.8)
71
- domain_name (~> 0.5)
72
- http-form_data (2.3.0)
73
- i18n (1.14.6)
74
- concurrent-ruby (~> 1.0)
75
- json (2.13.2)
76
- language_server-protocol (3.17.0.5)
77
- lint_roller (1.1.0)
78
- listen (3.9.0)
79
- rb-fsevent (~> 0.10, >= 0.10.3)
80
- rb-inotify (~> 0.9, >= 0.9.10)
81
- llhttp-ffi (0.5.0)
82
- ffi-compiler (~> 1.0)
83
- rake (~> 13.0)
84
- logger (1.6.3)
85
- lumberjack (1.2.10)
86
- method_source (1.1.0)
87
- minitest (5.25.4)
88
- nenv (0.3.0)
89
- notiffany (0.1.3)
90
- nenv (~> 0.1)
91
- shellany (~> 0.0)
92
- ostruct (0.6.1)
93
- parallel (1.27.0)
94
- parser (3.3.9.0)
95
- ast (~> 2.4.1)
96
- racc
97
- prism (1.4.0)
98
- pry (0.15.0)
99
- coderay (~> 1.1)
100
- method_source (~> 1.0)
101
- public_suffix (6.0.1)
102
- racc (1.8.1)
103
- rainbow (3.1.1)
104
- rake (13.2.1)
105
- rb-fsevent (0.11.2)
106
- rb-inotify (0.11.1)
107
- ffi (~> 1.0)
108
- regexp_parser (2.11.2)
109
- rexml (3.3.9)
110
- rspec (3.13.0)
111
- rspec-core (~> 3.13.0)
112
- rspec-expectations (~> 3.13.0)
113
- rspec-mocks (~> 3.13.0)
114
- rspec-core (3.13.2)
115
- rspec-support (~> 3.13.0)
116
- rspec-expectations (3.13.3)
117
- diff-lcs (>= 1.2.0, < 2.0)
118
- rspec-support (~> 3.13.0)
119
- rspec-mocks (3.13.2)
120
- diff-lcs (>= 1.2.0, < 2.0)
121
- rspec-support (~> 3.13.0)
122
- rspec-support (3.13.2)
123
- rubocop (1.73.2)
124
- json (~> 2.3)
125
- language_server-protocol (~> 3.17.0.2)
126
- lint_roller (~> 1.1.0)
127
- parallel (~> 1.10)
128
- parser (>= 3.3.0.2)
129
- rainbow (>= 2.2.2, < 4.0)
130
- regexp_parser (>= 2.9.3, < 3.0)
131
- rubocop-ast (>= 1.38.0, < 2.0)
132
- ruby-progressbar (~> 1.7)
133
- unicode-display_width (>= 2.4.0, < 4.0)
134
- rubocop-ast (1.46.0)
135
- parser (>= 3.3.7.2)
136
- prism (~> 1.4)
137
- rubocop-performance (1.24.0)
138
- lint_roller (~> 1.1)
139
- rubocop (>= 1.72.1, < 2.0)
140
- rubocop-ast (>= 1.38.0, < 2.0)
141
- rubocop-rake (0.7.1)
142
- lint_roller (~> 1.1)
143
- rubocop (>= 1.72.1)
144
- rubocop-rspec (3.5.0)
145
- lint_roller (~> 1.1)
146
- rubocop (~> 1.72, >= 1.72.1)
147
- ruby-progressbar (1.13.0)
148
- securerandom (0.4.1)
149
- shellany (0.0.1)
150
- simplecov (0.22.0)
151
- docile (~> 1.1)
152
- simplecov-html (~> 0.11)
153
- simplecov_json_formatter (~> 0.1)
154
- simplecov-html (0.13.1)
155
- simplecov_json_formatter (0.1.4)
156
- thor (1.4.0)
157
- tzinfo (2.0.6)
158
- concurrent-ruby (~> 1.0)
159
- unicode-display_width (3.1.5)
160
- unicode-emoji (~> 4.0, >= 4.0.4)
161
- unicode-emoji (4.0.4)
162
- webmock (3.24.0)
163
- addressable (>= 2.8.0)
164
- crack (>= 0.3.2)
165
- hashdiff (>= 0.4.0, < 2.0.0)
166
- yard (0.9.37)
167
-
168
- PLATFORMS
169
- ruby
170
-
171
- DEPENDENCIES
172
- byebug (~> 11.1)
173
- faithteams-api!
174
- guard-rspec (~> 4.7)
175
- rake (~> 13.0)
176
- rspec (~> 3.12)
177
- rubocop (~> 1.73.2)
178
- rubocop-performance (~> 1.24.0)
179
- rubocop-rake (~> 0.7.1)
180
- rubocop-rspec (~> 3.5.0)
181
- simplecov (~> 0.21)
182
- webmock (~> 3.18)
183
- yard (~> 0.9.36)
184
-
185
- BUNDLED WITH
186
- 2.5.7
data/Guardfile DELETED
@@ -1,50 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # A sample Guardfile
4
- # More info at https://github.com/guard/guard#readme
5
-
6
- ## Uncomment and set this to only include directories you want to watch
7
- # directories %w(app lib config test spec features) \
8
- # .select{|d| Dir.exist?(d) ? d : UI.warning("Directory #{d} does not exist")}
9
-
10
- ## Note: if you are using the `directories` clause above and you are not
11
- ## watching the project directory ('.'), then you will want to move
12
- ## the Guardfile to a watched dir and symlink it back, e.g.
13
- #
14
- # $ mkdir config
15
- # $ mv Guardfile config/
16
- # $ ln -s config/Guardfile .
17
- #
18
- # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
19
-
20
- # Note: The cmd option is now required due to the increasing number of ways
21
- # rspec may be run, below are examples of the most common uses.
22
- # * bundler: 'bundle exec rspec'
23
- # * bundler binstubs: 'bin/rspec'
24
- # * spring: 'bin/rspec' (This will use spring if running and you have
25
- # installed the spring binstubs per the docs)
26
- # * zeus: 'zeus rspec' (requires the server to be started separately)
27
- # * 'just' rspec: 'rspec'
28
-
29
- guard :rspec, cmd: "bundle exec rspec" do
30
- require "guard/rspec/dsl"
31
- dsl = Guard::RSpec::Dsl.new(self)
32
-
33
- # Feel free to open issues for suggestions and improvements
34
-
35
- # RSpec files
36
- rspec = dsl.rspec
37
- watch(rspec.spec_helper) { rspec.spec_dir }
38
- watch(rspec.spec_support) { rspec.spec_dir }
39
- watch(rspec.spec_files)
40
-
41
- # Ruby files
42
- ruby = dsl.ruby
43
- dsl.watch_spec_files_for(ruby.lib_files)
44
-
45
- # Rails files
46
- rails = dsl.rails(view_extensions: %w(erb haml slim))
47
-
48
- # Rails config changes
49
- watch(rails.spec_helper) { rspec.spec_dir }
50
- end
data/Rakefile DELETED
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- require "rspec/core/rake_task"
5
-
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
- task default: :spec
data/bin/console DELETED
@@ -1,15 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require "bundler/setup"
5
- require "faithteams"
6
-
7
- # You can add fixtures and/or initialization code here to make experimenting
8
- # with your gem easier. You can also use a different console, if you like.
9
-
10
- # (If you use this, don't forget to add pry to your Gemfile!)
11
- # require "pry"
12
- # Pry.start
13
-
14
- require "irb"
15
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
@@ -1,18 +0,0 @@
1
- # API Client Interface (ACI)
2
-
3
- The ACI should provide at minimum the following functions in its Gateway to allow interaction with the client API in a standard way. These resources should descend from a common base that provides authentication and a request mechanism (via HTTP gem).
4
- - batch
5
- - contribution
6
- - contribution_type
7
- - fund
8
- - person
9
-
10
- The methods above return an object that should have the following methods:
11
- - **find(id:)** - Finds a single record by id. Returns an entity or nil.
12
- - **search(\*\*args)** - Potentially returns multiple records given various parameters. Returns an array of entities or empty array.
13
- - **create(entity:)** - Create a new record. Returns entity or nil on failure.
14
- - **update(entity:)** - Update an existing record. Returns boolean.
15
- - **delete(id:)** - Remove an existing record. Returns boolean.
16
- - **<nested_resource>(resource_id:)** - This is another resource which is nested under the current resource (e.g. /people/:person_id/emails/:email_id). The nested resource would be the same as if the it was at the top level in the Gateway. We would then call it with something like this to find emails on a specific person:
17
- gateway.person.email(person_id: <id>).search(<param>: <param-value>)
18
- Any method can raise an exception on failure.
@@ -1,11 +0,0 @@
1
- # Release Process
2
-
3
- 1. Branch off of the commit you want to release (`git checkout -b x.x.x`).
4
- 1. Update the changelog version information and make sure that all changes to be released have been documented.
5
- 1. Bump the version number in `lib/faithteams/version.rb` to the version to be released.
6
- 1. Create a PR, look for approvals and merge this in to master.
7
- 1. Tag master at the new commit with the version number (`git tag -a x.x.x`).
8
- 1. Push this tag up to origin `git push origin x.x.x`.
9
- 1. Head over to GitHub to create a [new release](https://github.com/tithely/faithteams-api/releases/new). Make sure to select the tag that you just pushed, place the version number as the release name and copy in the associated changelog contents into the description. Publish this release.
10
- 1. This will kick off a deploy action which you can watch [here](https://github.com/tithely/faithteams-api/actions?query=workflow%3A%22Ruby+Gem%22).
11
- 1. Once the action completes, verify the new version of the package is available [here](https://github.com/tithely/faithteams-api/packages).
@@ -1,2 +0,0 @@
1
- *.env
2
-