aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/spec/pb
Commit message (Collapse)AuthorAge
* Move package_options.proto file for ruby testGravatar Alexander Polcyn2018-10-17
|
* Updates to the ruby generator for protobuf 3.6.0 changesGravatar Nick Gordon2018-09-14
| | | | | test for verifying the ruby_package option added WeWork to the AUTHORS file
* Merge pull request #15377 from ganmacs/move-script-which-has-pre-reqGravatar apolcyn2018-06-18
|\ | | | | Move a script which has a pre-requirement to outside of spec
* | All spec files require spec_helperGravatar ganmacs2018-06-18
| |
| * Move a script which has a pre-requirement to outside of specGravatar ganmacs2018-06-16
|/ | | | And make it to be execute when using `./tools/run_tests/run_tests.py -l ruby`
* Fix codegen test under gcov configGravatar Alexander Polcyn2018-04-11
|
* Merge pull request #13634 from hassox/ruby-module-nameGravatar apolcyn2018-03-29
|\ | | | | Updates the ruby generator RubyTypeOf to correctly account for underscores in packages
| * Updates the ruby generator RubyAsType to correctly account for underscores ↵Gravatar Daniel Neighman2018-03-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in packages Prior to this change, when the ruby generator tried to reference an entity that was not part of the same package (or a direct parent package) and the package contains underscores, the result would simply uppercase the first character. It should however uppercase each letter that proceeds an underscore and remove underscores. i.e. ``` package my_package.service; import "my_package/data.proto"; service MyService { rpc Test (data.Request) returns data.Response {} } ``` Was ```ruby # ... rpc :Test, My_package::Data::REquest, My_package::Data::Response # ... ``` Should be: ```ruby # ... rpc :Test, MyPackage::Data::REquest, My_package::Data::Response # ... ```
* | Disable soreuseport in ruby unit testsGravatar Alexander Polcyn2017-12-13
|/
* Add HealthChecker helpers for setting statusesGravatar Marko Bogdanović2017-11-18
|
* auto-fix most of licensesGravatar Jan Tattermusch2017-06-08
|
* v1.0.x → master upmergeGravatar Nathaniel Manista2016-12-16
|\ | | | | | | | | | | | | | | | | | | Manual changes: - Fixed use of Exception.message in _invalid_metadata_test.py - Fixed merge of one_failed_as_unavailable in rpc_server_spec.rb - Added "set -e" to generate_build_additions.sh
| * change client code to use specific exceptions and throw bad status ifGravatar Alexander Polcyn2016-11-30
| | | | | | | | unkown code
* | combine more core batch opsGravatar Alex Polcyn2016-10-26
|/
* Updated ruby protos to use new _pb filenameGravatar Ken Payson2016-07-26
|
* Finished removing CompletionQueue from Ruby API, made some changes for clarityGravatar murgatroid992016-06-13
|
* Finished updating code and tests with keyword argument changesGravatar murgatroid992016-05-19
|
* ruby: Add test case for referring external packageGravatar Jun Mukai2016-04-07
| | | | | | | The new spec uses existing EchoDuplicate service in grpc.testing.duplicate, which refers grpc.testing.Empty, and verifies if the plugin generates this correctly as Grpc::Testing::Empty.
* Update copyrightsGravatar Craig Tiller2016-03-31
|
* fix ruby impl and testGravatar yang-g2016-02-19
|
* global replace health check proto v1alpha to v1Gravatar yang-g2016-02-19
|
* Re-add missing newline in ruby fileGravatar murgatroid992016-01-14
|
* Update copyrightsGravatar murgatroid992016-01-13
|
* Updated dependencies, fixed a couple of testsGravatar murgatroid992016-01-06
|
* Made insecure channel/stub explicit, in all layersGravatar murgatroid992015-12-16
|
* Fixes an issue running the tests on Ruby2.2Gravatar Tim Emiola2015-11-10
|
* Merge pull request #3171 from tbetbetbe/grpc_ruby_improve_test_stabilityGravatar Stanley Cheung2015-08-31
|\ | | | | Improves test stability
| * Improves test stabilityGravatar Tim Emiola2015-08-31
| |
* | Make insecure construction explicit, to address #2614Gravatar Tim Emiola2015-08-31
|/
* Adds a test for ruby code generation.Gravatar Tim Emiola2015-08-17
|
* Add a health checker service implementation.Gravatar Tim Emiola2015-08-14
- adds the code-generated health service classes to the pb along with a README explaining how to regenerate the generated code - adds an implementation of the Health Checker Service along with unit tests and an integration test Also: - adds a pb folder : in a follow-up PR, all ruby pbs + generated code will be moved to it