This is an automated email from the ASF dual-hosted git repository.

Jens-G pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git


    from daf811953 added kpumuk
     add 7b1f133a3 THRIFT-5950: Enforce frozen string literals in Ruby

No new revisions were added by this update.

Summary of changes:
 compiler/cpp/src/thrift/generate/t_rb_generator.cc     |  3 ++-
 .../cpp/tests/rb/t_rb_generator_functional_tests.cc    |  1 +
 lib/rb/.rubocop.yml                                    |  9 +++++++++
 lib/rb/Gemfile                                         |  1 +
 lib/rb/Rakefile                                        |  3 ++-
 lib/rb/benchmark/benchmark.rb                          |  3 ++-
 lib/rb/benchmark/client.rb                             |  1 +
 lib/rb/benchmark/server.rb                             |  1 +
 lib/rb/benchmark/thin_server.rb                        |  1 +
 lib/rb/ext/extconf.rb                                  |  1 +
 lib/rb/lib/thrift.rb                                   |  1 +
 lib/rb/lib/thrift/bytes.rb                             |  1 +
 lib/rb/lib/thrift/client.rb                            |  1 +
 lib/rb/lib/thrift/exceptions.rb                        |  1 +
 lib/rb/lib/thrift/multiplexed_processor.rb             |  1 +
 lib/rb/lib/thrift/processor.rb                         |  1 +
 lib/rb/lib/thrift/protocol/base_protocol.rb            |  1 +
 lib/rb/lib/thrift/protocol/binary_protocol.rb          |  1 +
 .../lib/thrift/protocol/binary_protocol_accelerated.rb |  1 +
 lib/rb/lib/thrift/protocol/compact_protocol.rb         |  1 +
 lib/rb/lib/thrift/protocol/header_protocol.rb          |  1 +
 lib/rb/lib/thrift/protocol/json_protocol.rb            | 18 +++++++++---------
 lib/rb/lib/thrift/protocol/multiplexed_protocol.rb     |  1 +
 lib/rb/lib/thrift/protocol/protocol_decorator.rb       |  1 +
 lib/rb/lib/thrift/serializer/deserializer.rb           |  1 +
 lib/rb/lib/thrift/serializer/serializer.rb             |  1 +
 lib/rb/lib/thrift/server/base_server.rb                |  1 +
 lib/rb/lib/thrift/server/mongrel_http_server.rb        |  1 +
 lib/rb/lib/thrift/server/nonblocking_server.rb         |  3 ++-
 lib/rb/lib/thrift/server/simple_server.rb              |  1 +
 lib/rb/lib/thrift/server/thin_http_server.rb           |  1 +
 lib/rb/lib/thrift/server/thread_pool_server.rb         |  1 +
 lib/rb/lib/thrift/server/threaded_server.rb            |  1 +
 lib/rb/lib/thrift/struct.rb                            |  1 +
 lib/rb/lib/thrift/struct_union.rb                      |  1 +
 lib/rb/lib/thrift/thrift_native.rb                     |  1 +
 lib/rb/lib/thrift/transport/base_server_transport.rb   |  1 +
 lib/rb/lib/thrift/transport/base_transport.rb          |  3 ++-
 lib/rb/lib/thrift/transport/buffered_transport.rb      |  1 +
 lib/rb/lib/thrift/transport/framed_transport.rb        |  1 +
 lib/rb/lib/thrift/transport/header_transport.rb        |  1 +
 lib/rb/lib/thrift/transport/http_client_transport.rb   |  1 +
 lib/rb/lib/thrift/transport/io_stream_transport.rb     |  1 +
 lib/rb/lib/thrift/transport/memory_buffer_transport.rb |  1 +
 lib/rb/lib/thrift/transport/server_socket.rb           |  1 +
 lib/rb/lib/thrift/transport/socket.rb                  |  1 +
 lib/rb/lib/thrift/transport/ssl_server_socket.rb       |  1 +
 lib/rb/lib/thrift/transport/ssl_socket.rb              |  1 +
 lib/rb/lib/thrift/transport/unix_server_socket.rb      |  1 +
 lib/rb/lib/thrift/transport/unix_socket.rb             |  1 +
 lib/rb/lib/thrift/types.rb                             |  1 +
 lib/rb/lib/thrift/union.rb                             |  1 +
 lib/rb/lib/thrift/uuid.rb                              |  1 +
 lib/rb/script/proto_benchmark.rb                       |  1 +
 lib/rb/script/read_struct.rb                           |  1 +
 lib/rb/script/write_struct.rb                          |  1 +
 lib/rb/spec/base_protocol_spec.rb                      |  1 +
 lib/rb/spec/base_transport_spec.rb                     | 13 ++++++++++++-
 lib/rb/spec/binary_protocol_accelerated_spec.rb        |  1 +
 lib/rb/spec/binary_protocol_spec.rb                    |  1 +
 lib/rb/spec/binary_protocol_spec_shared.rb             |  1 +
 lib/rb/spec/bytes_spec.rb                              |  3 ++-
 lib/rb/spec/client_spec.rb                             |  1 +
 lib/rb/spec/compact_protocol_spec.rb                   |  1 +
 lib/rb/spec/constants_demo_spec.rb                     |  1 +
 lib/rb/spec/exception_spec.rb                          |  1 +
 lib/rb/spec/flat_spec.rb                               |  1 +
 lib/rb/spec/header_protocol_spec.rb                    |  1 +
 lib/rb/spec/header_transport_spec.rb                   |  1 +
 lib/rb/spec/http_client_spec.rb                        |  1 +
 lib/rb/spec/json_protocol_spec.rb                      |  9 +++++----
 lib/rb/spec/namespaced_spec.rb                         |  1 +
 lib/rb/spec/nonblocking_server_spec.rb                 |  1 +
 lib/rb/spec/processor_spec.rb                          |  1 +
 lib/rb/spec/serializer_spec.rb                         |  1 +
 lib/rb/spec/server_socket_spec.rb                      |  1 +
 lib/rb/spec/server_spec.rb                             |  1 +
 lib/rb/spec/socket_spec.rb                             |  1 +
 lib/rb/spec/socket_spec_shared.rb                      |  1 +
 lib/rb/spec/spec_helper.rb                             |  1 +
 lib/rb/spec/ssl_server_socket_spec.rb                  |  1 +
 lib/rb/spec/ssl_socket_spec.rb                         |  1 +
 lib/rb/spec/struct_nested_containers_spec.rb           |  1 +
 lib/rb/spec/struct_spec.rb                             |  1 +
 lib/rb/spec/support/header_protocol_helper.rb          |  3 ++-
 lib/rb/spec/thin_http_server_spec.rb                   |  1 +
 lib/rb/spec/types_spec.rb                              |  1 +
 lib/rb/spec/union_spec.rb                              |  1 +
 lib/rb/spec/unix_socket_spec.rb                        |  1 +
 lib/rb/spec/uuid_validation_spec.rb                    |  1 +
 lib/rb/test/fuzz/fuzz_common.rb                        |  1 +
 lib/rb/test/fuzz/fuzz_parse_binary_protocol.rb         |  1 +
 .../fuzz/fuzz_parse_binary_protocol_accelerated.rb     |  1 +
 .../fuzz_parse_binary_protocol_accelerated_harness.rb  |  1 +
 lib/rb/test/fuzz/fuzz_parse_binary_protocol_harness.rb |  1 +
 lib/rb/test/fuzz/fuzz_parse_compact_protocol.rb        |  1 +
 .../test/fuzz/fuzz_parse_compact_protocol_harness.rb   |  1 +
 lib/rb/test/fuzz/fuzz_parse_json_protocol.rb           |  1 +
 lib/rb/test/fuzz/fuzz_parse_json_protocol_harness.rb   |  1 +
 lib/rb/test/fuzz/fuzz_roundtrip_binary_protocol.rb     |  1 +
 .../fuzz/fuzz_roundtrip_binary_protocol_accelerated.rb |  1 +
 ...zz_roundtrip_binary_protocol_accelerated_harness.rb |  1 +
 .../fuzz/fuzz_roundtrip_binary_protocol_harness.rb     |  1 +
 lib/rb/test/fuzz/fuzz_roundtrip_compact_protocol.rb    |  1 +
 .../fuzz/fuzz_roundtrip_compact_protocol_harness.rb    |  1 +
 lib/rb/test/fuzz/fuzz_roundtrip_json_protocol.rb       |  1 +
 .../test/fuzz/fuzz_roundtrip_json_protocol_harness.rb  |  1 +
 lib/rb/test/fuzz/fuzz_tracer.rb                        |  1 +
 lib/rb/thrift.gemspec                                  |  1 +
 test/rb/Gemfile                                        |  1 +
 test/rb/benchmarks/protocol_benchmark.rb               |  1 +
 test/rb/core/protocol/test_binary_protocol.rb          |  1 +
 test/rb/core/protocol/test_compact_protocol.rb         |  1 +
 test/rb/core/protocol/test_json_protocol.rb            |  1 +
 test/rb/core/test_accelerated_binary_protocol.rb       |  1 +
 test/rb/core/test_backwards_compatability.rb           |  1 +
 test/rb/core/test_exceptions.rb                        |  1 +
 test/rb/core/transport/test_transport.rb               |  1 +
 test/rb/fixtures/structs.rb                            |  1 +
 test/rb/generation/test_enum.rb                        |  1 +
 test/rb/generation/test_recursive.rb                   |  1 +
 test/rb/generation/test_struct.rb                      |  1 +
 test/rb/integration/TestClient.rb                      |  1 +
 test/rb/integration/TestServer.rb                      |  1 +
 test/rb/test_helper.rb                                 |  1 +
 test/rb/test_suite.rb                                  |  1 +
 tutorial/rb/RubyClient.rb                              |  2 +-
 tutorial/rb/RubyServer.rb                              |  2 +-
 128 files changed, 166 insertions(+), 23 deletions(-)

Reply via email to