├── .github └── workflows │ ├── go_release.yml │ ├── ruby_release.yml │ └── tests.yml ├── .gitignore ├── .ruby-version ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── Rakefile ├── example ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── hello_world │ ├── service.proto │ ├── service_pb.rb │ └── service_twirp.rb ├── hello_world_client.rb └── hello_world_server.rb ├── example_rack2 ├── Gemfile ├── Gemfile.lock ├── README.md ├── hello_world_client.rb └── hello_world_server.rb ├── gemfiles ├── faraday-0.gemfile ├── faraday-1.gemfile ├── faraday-2.gemfile ├── rack-2.gemfile └── rack-3.gemfile ├── go.mod ├── go.sum ├── internal └── gen │ └── typemap │ ├── testdata │ ├── fileset.pb │ ├── gen.go │ ├── importer.proto │ ├── public_importer.proto │ ├── public_reimporter.proto │ ├── root_pkg.proto │ └── service.proto │ ├── typemap.go │ └── typemap_test.go ├── lib ├── twirp.rb └── twirp │ ├── client.rb │ ├── client_json.rb │ ├── client_resp.rb │ ├── encoding.rb │ ├── error.rb │ ├── service.rb │ ├── service_dsl.rb │ └── version.rb ├── protoc-gen-twirp_ruby ├── main.go ├── main_test.go ├── testdata │ ├── fileset.pb │ ├── gen.go │ └── rubytypes.proto └── version.go ├── test ├── client_json_test.rb ├── client_test.rb ├── error_test.rb ├── fake_services.rb ├── license_header_test.rb └── service_test.rb ├── twirp.gemspec └── vendor ├── github.com ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go └── stretchr │ └── testify │ ├── LICENSE │ ├── assert │ ├── assertion_format.go │ ├── assertion_format.go.tmpl │ ├── assertion_forward.go │ ├── assertion_forward.go.tmpl │ ├── assertions.go │ ├── doc.go │ ├── errors.go │ ├── forward_assertions.go │ └── http_assertions.go │ └── require │ ├── doc.go │ ├── forward_requirements.go │ ├── require.go │ ├── require.go.tmpl │ ├── require_forward.go │ ├── require_forward.go.tmpl │ └── requirements.go ├── google.golang.org └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ └── placeholder.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── name.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── api_export_opaque.go │ │ ├── bitmap.go │ │ ├── bitmap_race.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_field_opaque.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_message.go │ │ ├── codec_message_opaque.go │ │ ├── codec_messageset.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── lazy.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_opaque.go │ │ ├── message_opaque_gen.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_field_gen.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_opaque.go │ │ ├── presence.go │ │ └── validate.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── protolazy │ │ ├── bufferreader.go │ │ ├── lazy.go │ │ └── pointer_unsafe.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ └── strings_unsafe.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ ├── wrapperopaque.go │ └── wrappers.go │ ├── reflect │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ └── value_unsafe.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ └── pluginpb │ └── plugin.pb.go └── modules.txt /.github/workflows/go_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/.github/workflows/go_release.yml -------------------------------------------------------------------------------- /.github/workflows/ruby_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/.github/workflows/ruby_release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.0 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /example/.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.0 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example/README.md -------------------------------------------------------------------------------- /example/hello_world/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example/hello_world/service.proto -------------------------------------------------------------------------------- /example/hello_world/service_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example/hello_world/service_pb.rb -------------------------------------------------------------------------------- /example/hello_world/service_twirp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example/hello_world/service_twirp.rb -------------------------------------------------------------------------------- /example/hello_world_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example/hello_world_client.rb -------------------------------------------------------------------------------- /example/hello_world_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example/hello_world_server.rb -------------------------------------------------------------------------------- /example_rack2/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example_rack2/Gemfile -------------------------------------------------------------------------------- /example_rack2/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example_rack2/Gemfile.lock -------------------------------------------------------------------------------- /example_rack2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example_rack2/README.md -------------------------------------------------------------------------------- /example_rack2/hello_world_client.rb: -------------------------------------------------------------------------------- 1 | require_relative '../example/hello_world_client.rb' 2 | -------------------------------------------------------------------------------- /example_rack2/hello_world_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/example_rack2/hello_world_server.rb -------------------------------------------------------------------------------- /gemfiles/faraday-0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/gemfiles/faraday-0.gemfile -------------------------------------------------------------------------------- /gemfiles/faraday-1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/gemfiles/faraday-1.gemfile -------------------------------------------------------------------------------- /gemfiles/faraday-2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/gemfiles/faraday-2.gemfile -------------------------------------------------------------------------------- /gemfiles/rack-2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/gemfiles/rack-2.gemfile -------------------------------------------------------------------------------- /gemfiles/rack-3.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/gemfiles/rack-3.gemfile -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/go.sum -------------------------------------------------------------------------------- /internal/gen/typemap/testdata/fileset.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/internal/gen/typemap/testdata/fileset.pb -------------------------------------------------------------------------------- /internal/gen/typemap/testdata/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/internal/gen/typemap/testdata/gen.go -------------------------------------------------------------------------------- /internal/gen/typemap/testdata/importer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/internal/gen/typemap/testdata/importer.proto -------------------------------------------------------------------------------- /internal/gen/typemap/testdata/public_importer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/internal/gen/typemap/testdata/public_importer.proto -------------------------------------------------------------------------------- /internal/gen/typemap/testdata/public_reimporter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/internal/gen/typemap/testdata/public_reimporter.proto -------------------------------------------------------------------------------- /internal/gen/typemap/testdata/root_pkg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/internal/gen/typemap/testdata/root_pkg.proto -------------------------------------------------------------------------------- /internal/gen/typemap/testdata/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/internal/gen/typemap/testdata/service.proto -------------------------------------------------------------------------------- /internal/gen/typemap/typemap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/internal/gen/typemap/typemap.go -------------------------------------------------------------------------------- /internal/gen/typemap/typemap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/internal/gen/typemap/typemap_test.go -------------------------------------------------------------------------------- /lib/twirp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/lib/twirp.rb -------------------------------------------------------------------------------- /lib/twirp/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/lib/twirp/client.rb -------------------------------------------------------------------------------- /lib/twirp/client_json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/lib/twirp/client_json.rb -------------------------------------------------------------------------------- /lib/twirp/client_resp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/lib/twirp/client_resp.rb -------------------------------------------------------------------------------- /lib/twirp/encoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/lib/twirp/encoding.rb -------------------------------------------------------------------------------- /lib/twirp/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/lib/twirp/error.rb -------------------------------------------------------------------------------- /lib/twirp/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/lib/twirp/service.rb -------------------------------------------------------------------------------- /lib/twirp/service_dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/lib/twirp/service_dsl.rb -------------------------------------------------------------------------------- /lib/twirp/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/lib/twirp/version.rb -------------------------------------------------------------------------------- /protoc-gen-twirp_ruby/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/protoc-gen-twirp_ruby/main.go -------------------------------------------------------------------------------- /protoc-gen-twirp_ruby/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/protoc-gen-twirp_ruby/main_test.go -------------------------------------------------------------------------------- /protoc-gen-twirp_ruby/testdata/fileset.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/protoc-gen-twirp_ruby/testdata/fileset.pb -------------------------------------------------------------------------------- /protoc-gen-twirp_ruby/testdata/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/protoc-gen-twirp_ruby/testdata/gen.go -------------------------------------------------------------------------------- /protoc-gen-twirp_ruby/testdata/rubytypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/protoc-gen-twirp_ruby/testdata/rubytypes.proto -------------------------------------------------------------------------------- /protoc-gen-twirp_ruby/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/protoc-gen-twirp_ruby/version.go -------------------------------------------------------------------------------- /test/client_json_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/test/client_json_test.rb -------------------------------------------------------------------------------- /test/client_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/test/client_test.rb -------------------------------------------------------------------------------- /test/error_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/test/error_test.rb -------------------------------------------------------------------------------- /test/fake_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/test/fake_services.rb -------------------------------------------------------------------------------- /test/license_header_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/test/license_header_test.rb -------------------------------------------------------------------------------- /test/service_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/test/service_test.rb -------------------------------------------------------------------------------- /twirp.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/twirp.gemspec -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/difflib/difflib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/pmezard/go-difflib/difflib/difflib.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/require/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/forward_requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/require/forward_requirements.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/require/require.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/require/require.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/require/require_forward.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/require/require_forward.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/github.com/stretchr/testify/require/requirements.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/encoding/prototext/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/encoding/prototext/decode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/encoding/prototext/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/encoding/prototext/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/encoding/prototext/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/encoding/prototext/encode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/encoding/protowire/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/encoding/protowire/wire.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/descfmt/stringer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/descopts/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/descopts/options.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/detrand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/detrand/rand.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/editiondefaults/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/editiondefaults/defaults.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/defval/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/encode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/errors/errors.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/build.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/desc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/desc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/editions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/editions.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filetype/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/filetype/build.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/flags/flags.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/any_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/any_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/api_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/api_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/duration_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/duration_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/empty_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/empty_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/go_features_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/go_features_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/goname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/goname.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/map_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/map_entry.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/name.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/struct_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/struct_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/type_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/type_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/wrappers.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/api_export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/api_export.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/api_export_opaque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/api_export_opaque.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/bitmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/bitmap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/bitmap_race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/bitmap_race.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/checkinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/checkinit.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_field.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_field_opaque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_field_opaque.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_map.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_message.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/convert.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/convert_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/convert_list.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/convert_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/convert_map.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/decode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/encode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/enum.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/equal.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/extension.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/lazy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/lazy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/legacy_export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/legacy_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/legacy_file.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/legacy_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/merge.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/merge_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/merge_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/message.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/message_opaque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/message_opaque_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/message_opaque_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/message_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/message_reflect_field_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe_opaque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe_opaque.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/presence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/presence.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/impl/validate.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/order/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/order/order.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/order/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/order/range.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/pragma/pragma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/pragma/pragma.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/protolazy/bufferreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/protolazy/bufferreader.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/protolazy/lazy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/protolazy/lazy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/protolazy/pointer_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/protolazy/pointer_unsafe.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/set/ints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/set/ints.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/strs/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/strs/strings.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/internal/version/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/checkinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/checkinit.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/decode_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/decode_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/encode_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/encode_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/extension.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/merge.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/messageset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/messageset.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/proto.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/proto_methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/proto_methods.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/proto_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/proto_reflect.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/reset.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/size.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/size_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/size_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/wrapperopaque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/wrapperopaque.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/proto/wrappers.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/value.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/value_equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/value_equal.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/runtime/protoiface/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/runtime/protoiface/methods.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/runtime/protoimpl/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/types/descriptorpb/descriptor.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/types/descriptorpb/descriptor.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/types/pluginpb/plugin.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/google.golang.org/protobuf/types/pluginpb/plugin.pb.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurnn/twirp-ruby/HEAD/vendor/modules.txt --------------------------------------------------------------------------------