twilic 3.0.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.
data/twilic.gemspec ADDED
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/twilic/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "twilic"
7
+ spec.version = Twilic::VERSION
8
+ spec.authors = ["Twilic"]
9
+ spec.email = ["hello@twilic.dev"]
10
+
11
+ spec.summary = "Ruby implementation of a fast, compact binary wire format for modern data transport."
12
+ spec.description = spec.summary
13
+ spec.homepage = "https://github.com/twilic/twilic-ruby"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 3.3"
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://github.com/twilic/twilic-ruby"
19
+ spec.metadata["rubygems_mfa_required"] = "true"
20
+
21
+ spec.files = Dir.chdir(__dir__) do
22
+ `git ls-files -z`.split("\x0").reject do |f|
23
+ f.start_with?("test/", ".github/", "scripts/") || f.end_with?(".gem")
24
+ end
25
+ end
26
+ spec.bindir = "exe"
27
+ spec.require_paths = ["lib"]
28
+
29
+ spec.add_development_dependency "minitest", "~> 5.25"
30
+ spec.add_development_dependency "rake", "~> 13.2"
31
+ spec.add_development_dependency "rubocop", "~> 1.69"
32
+ end
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: twilic
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Twilic
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2026-05-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: minitest
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '5.25'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '5.25'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '13.2'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '13.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubocop
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.69'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.69'
55
+ description: Ruby implementation of a fast, compact binary wire format for modern
56
+ data transport.
57
+ email:
58
+ - hello@twilic.dev
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".editorconfig"
64
+ - ".gitattributes"
65
+ - ".gitignore"
66
+ - ".markdownlint.jsonc"
67
+ - Gemfile
68
+ - Gemfile.lock
69
+ - LICENSE
70
+ - README.md
71
+ - Rakefile
72
+ - docs/CHANGELOG.md
73
+ - docs/CONTRIBUTING.md
74
+ - docs/SPEC-TEST-TRACEABILITY.md
75
+ - lib/twilic.rb
76
+ - lib/twilic/core/api.rb
77
+ - lib/twilic/core/codec.rb
78
+ - lib/twilic/core/dictionary.rb
79
+ - lib/twilic/core/errors.rb
80
+ - lib/twilic/core/interop_fixtures.rb
81
+ - lib/twilic/core/model.rb
82
+ - lib/twilic/core/protocol.rb
83
+ - lib/twilic/core/protocol_helpers.rb
84
+ - lib/twilic/core/session.rb
85
+ - lib/twilic/core/v2.rb
86
+ - lib/twilic/core/wire.rb
87
+ - lib/twilic/version.rb
88
+ - package.json
89
+ - pnpm-lock.yaml
90
+ - twilic.gemspec
91
+ homepage: https://github.com/twilic/twilic-ruby
92
+ licenses:
93
+ - MIT
94
+ metadata:
95
+ homepage_uri: https://github.com/twilic/twilic-ruby
96
+ source_code_uri: https://github.com/twilic/twilic-ruby
97
+ rubygems_mfa_required: 'true'
98
+ post_install_message:
99
+ rdoc_options: []
100
+ require_paths:
101
+ - lib
102
+ required_ruby_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '3.3'
107
+ required_rubygems_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ requirements: []
113
+ rubygems_version: 3.5.22
114
+ signing_key:
115
+ specification_version: 4
116
+ summary: Ruby implementation of a fast, compact binary wire format for modern data
117
+ transport.
118
+ test_files: []