voicetel 2.2.10

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/voicetel.gemspec ADDED
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/voicetel/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "voicetel"
7
+ spec.version = VoiceTel::VERSION
8
+ spec.authors = ["VoiceTel"]
9
+ spec.email = ["support@voicetel.com"]
10
+
11
+ spec.summary = "Official Ruby SDK for the VoiceTel REST API (v2.2.10)."
12
+ spec.description = "Idiomatic Ruby client for the VoiceTel REST API: provision numbers, " \
13
+ "place orders, validate e911, send SMS/MMS, manage 10DLC campaigns, and " \
14
+ "run support tickets, all with typed DTOs, structured errors, and " \
15
+ "automatic retry on 429/5xx."
16
+ spec.homepage = "https://voicetel.com/docs/api/v2.2/"
17
+ spec.license = "MIT"
18
+ spec.required_ruby_version = ">= 3.1.0"
19
+
20
+ spec.metadata = {
21
+ "homepage_uri" => spec.homepage,
22
+ "source_code_uri" => "https://github.com/voicetel/ruby-sdk",
23
+ "bug_tracker_uri" => "https://github.com/voicetel/ruby-sdk/issues",
24
+ "documentation_uri" => "https://voicetel.com/docs/api/v2.2/",
25
+ "changelog_uri" => "https://github.com/voicetel/ruby-sdk/releases",
26
+ "rubygems_mfa_required" => "true"
27
+ }
28
+
29
+ spec.files = Dir["lib/**/*.rb", "sig/**/*.rbs", "LICENSE", "README.md", "voicetel.gemspec"]
30
+ spec.require_paths = ["lib"]
31
+
32
+ spec.add_dependency "faraday", "~> 2.0"
33
+ spec.add_dependency "faraday-net_http_persistent", "~> 2.0"
34
+ spec.add_dependency "faraday-retry", "~> 2.0"
35
+ end
metadata ADDED
@@ -0,0 +1,112 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: voicetel
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.2.10
5
+ platform: ruby
6
+ authors:
7
+ - VoiceTel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-06-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: faraday
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: faraday-net_http_persistent
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: faraday-retry
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ description: 'Idiomatic Ruby client for the VoiceTel REST API: provision numbers,
56
+ place orders, validate e911, send SMS/MMS, manage 10DLC campaigns, and run support
57
+ tickets, all with typed DTOs, structured errors, and automatic retry on 429/5xx.'
58
+ email:
59
+ - support@voicetel.com
60
+ executables: []
61
+ extensions: []
62
+ extra_rdoc_files: []
63
+ files:
64
+ - LICENSE
65
+ - README.md
66
+ - lib/voicetel.rb
67
+ - lib/voicetel/api_error.rb
68
+ - lib/voicetel/internal/transport.rb
69
+ - lib/voicetel/resources/account.rb
70
+ - lib/voicetel/resources/acl.rb
71
+ - lib/voicetel/resources/authentication.rb
72
+ - lib/voicetel/resources/base.rb
73
+ - lib/voicetel/resources/e911.rb
74
+ - lib/voicetel/resources/gateways.rb
75
+ - lib/voicetel/resources/i_numbering.rb
76
+ - lib/voicetel/resources/lookups.rb
77
+ - lib/voicetel/resources/messaging.rb
78
+ - lib/voicetel/resources/numbers.rb
79
+ - lib/voicetel/resources/support.rb
80
+ - lib/voicetel/version.rb
81
+ - sig/voicetel.rbs
82
+ - voicetel.gemspec
83
+ homepage: https://voicetel.com/docs/api/v2.2/
84
+ licenses:
85
+ - MIT
86
+ metadata:
87
+ homepage_uri: https://voicetel.com/docs/api/v2.2/
88
+ source_code_uri: https://github.com/voicetel/ruby-sdk
89
+ bug_tracker_uri: https://github.com/voicetel/ruby-sdk/issues
90
+ documentation_uri: https://voicetel.com/docs/api/v2.2/
91
+ changelog_uri: https://github.com/voicetel/ruby-sdk/releases
92
+ rubygems_mfa_required: 'true'
93
+ post_install_message:
94
+ rdoc_options: []
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: 3.1.0
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubygems_version: 3.4.19
109
+ signing_key:
110
+ specification_version: 4
111
+ summary: Official Ruby SDK for the VoiceTel REST API (v2.2.10).
112
+ test_files: []