ruby_api_pack_core 0.1.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 +7 -0
- data/.all-contributorsrc +23 -0
- data/.circleci/config.yml +44 -0
- data/.claude/settings.json +36 -0
- data/.claude/settings.local.json +36 -0
- data/.coderabbit.yaml +75 -0
- data/.codex/README.md +31 -0
- data/.codex/change-watch.md +19 -0
- data/.codex/release-readiness.md +35 -0
- data/.editorconfig +22 -0
- data/.rspec +3 -0
- data/.rubocop.yml +70 -0
- data/AGENTS.md +117 -0
- data/CHANGELOG.md +48 -0
- data/CLAUDE.md +105 -0
- data/CODEX.md +66 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/CONTRIBUTING.md +111 -0
- data/COPILOT.md +30 -0
- data/JULES.md +34 -0
- data/MIT-LICENSE +21 -0
- data/README.md +281 -0
- data/ROADMAP.md +42 -0
- data/Rakefile +12 -0
- data/SECURITY.md +46 -0
- data/TODO.md +32 -0
- data/lib/ruby_api_pack_core/configurable.rb +25 -0
- data/lib/ruby_api_pack_core/connection/base.rb +94 -0
- data/lib/ruby_api_pack_core/handlers/response_validator.rb +31 -0
- data/lib/ruby_api_pack_core/version.rb +5 -0
- data/lib/ruby_api_pack_core.rb +12 -0
- data/ruby_api_pack_core.code-workspace +8 -0
- metadata +111 -0
metadata
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ruby_api_pack_core
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- PHCDevworks
|
|
8
|
+
- Brad Potts
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: exe
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2026-07-11 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: httparty
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
requirements:
|
|
18
|
+
- - "~>"
|
|
19
|
+
- !ruby/object:Gem::Version
|
|
20
|
+
version: 0.24.2
|
|
21
|
+
type: :runtime
|
|
22
|
+
prerelease: false
|
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
24
|
+
requirements:
|
|
25
|
+
- - "~>"
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
version: 0.24.2
|
|
28
|
+
- !ruby/object:Gem::Dependency
|
|
29
|
+
name: oj
|
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
|
31
|
+
requirements:
|
|
32
|
+
- - "~>"
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: '3.17'
|
|
35
|
+
type: :runtime
|
|
36
|
+
prerelease: false
|
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
39
|
+
- - "~>"
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '3.17'
|
|
42
|
+
description: RubyApiPackCore provides the shared connection wrapper, response validator,
|
|
43
|
+
and configuration pattern used by every ruby_api_pack_* gem, so each vendor-specific
|
|
44
|
+
API pack only has to implement its own authentication headers and resource endpoints.
|
|
45
|
+
email:
|
|
46
|
+
- info@phcdevworks.com
|
|
47
|
+
- brad.potts@phcdevworks.com
|
|
48
|
+
executables: []
|
|
49
|
+
extensions: []
|
|
50
|
+
extra_rdoc_files: []
|
|
51
|
+
files:
|
|
52
|
+
- ".all-contributorsrc"
|
|
53
|
+
- ".circleci/config.yml"
|
|
54
|
+
- ".claude/settings.json"
|
|
55
|
+
- ".claude/settings.local.json"
|
|
56
|
+
- ".coderabbit.yaml"
|
|
57
|
+
- ".codex/README.md"
|
|
58
|
+
- ".codex/change-watch.md"
|
|
59
|
+
- ".codex/release-readiness.md"
|
|
60
|
+
- ".editorconfig"
|
|
61
|
+
- ".rspec"
|
|
62
|
+
- ".rubocop.yml"
|
|
63
|
+
- AGENTS.md
|
|
64
|
+
- CHANGELOG.md
|
|
65
|
+
- CLAUDE.md
|
|
66
|
+
- CODEX.md
|
|
67
|
+
- CODE_OF_CONDUCT.md
|
|
68
|
+
- CONTRIBUTING.md
|
|
69
|
+
- COPILOT.md
|
|
70
|
+
- JULES.md
|
|
71
|
+
- MIT-LICENSE
|
|
72
|
+
- README.md
|
|
73
|
+
- ROADMAP.md
|
|
74
|
+
- Rakefile
|
|
75
|
+
- SECURITY.md
|
|
76
|
+
- TODO.md
|
|
77
|
+
- lib/ruby_api_pack_core.rb
|
|
78
|
+
- lib/ruby_api_pack_core/configurable.rb
|
|
79
|
+
- lib/ruby_api_pack_core/connection/base.rb
|
|
80
|
+
- lib/ruby_api_pack_core/handlers/response_validator.rb
|
|
81
|
+
- lib/ruby_api_pack_core/version.rb
|
|
82
|
+
- ruby_api_pack_core.code-workspace
|
|
83
|
+
homepage: https://phcdevworks.com/
|
|
84
|
+
licenses:
|
|
85
|
+
- MIT
|
|
86
|
+
metadata:
|
|
87
|
+
allowed_push_host: https://rubygems.org/
|
|
88
|
+
homepage_uri: https://phcdevworks.com/
|
|
89
|
+
source_code_uri: https://github.com/phcdevworks/ruby_api_pack_core/
|
|
90
|
+
changelog_uri: https://github.com/phcdevworks/ruby_api_pack_core/releases
|
|
91
|
+
rubygems_mfa_required: 'true'
|
|
92
|
+
post_install_message:
|
|
93
|
+
rdoc_options: []
|
|
94
|
+
require_paths:
|
|
95
|
+
- lib
|
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
97
|
+
requirements:
|
|
98
|
+
- - ">="
|
|
99
|
+
- !ruby/object:Gem::Version
|
|
100
|
+
version: 3.3.0
|
|
101
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
102
|
+
requirements:
|
|
103
|
+
- - ">="
|
|
104
|
+
- !ruby/object:Gem::Version
|
|
105
|
+
version: '0'
|
|
106
|
+
requirements: []
|
|
107
|
+
rubygems_version: 3.5.11
|
|
108
|
+
signing_key:
|
|
109
|
+
specification_version: 4
|
|
110
|
+
summary: Shared HTTP client foundation for PHCDevworks Ruby API pack gems.
|
|
111
|
+
test_files: []
|