| Commit message (Collapse) | Author | Age |
... | |
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
so that grpc does not depends on googleauth gem.
This project (pubsub demo) is introduced at [this
commit](https://github.com/grpc/grpc/commit/d5d00d5c8fac4495ea42020866feb913c854aa1e#diff-c495642bb64c09cae54f3ccff463bd51)
as demo project for grpc with ruby.
This demo is awesome. But the position of this project directory seems
to be not suitable for demo app. This project added unnecessary gem dependency about googleauth to grpc ruby gem.
|
|/ |
|
|\
| |
| | |
Update health.proto to match grpc-proto reference copy
|
| | |
|
| | |
|
|/ |
|
| |
|
| |
|
|\
| |
| | |
Avoid low severity log message construction
|
|\ \
| | |
| | | |
Fix a broken gcov test
|
| | | |
|
|/ / |
|
| | |
|
|\ \
| |/
|/| |
Don't raise call errors for failed reads or writes of ruby bidi streams
|
| | |
|
|/ |
|
|\
| |
| | |
Updates the ruby generator RubyTypeOf to correctly account for underscores in packages
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
# ...
```
|
| | |
|
|\ \
| | |
| | | |
Ruby format strings
|
|\ \ \
| | | |
| | | | |
[Fix Forward]: Channel Tracing Implementation; Part 1
|
| | | | |
|
|/ / /
| | |
| | |
| | | |
This reverts commit f2bea3725f8218777268decfd37c7b543f839d9f.
|
| | | |
|
|\ \ \ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Enable checking for the string format issues because:
1) Fedora and Ubuntu have format checking generating errors as mandatory for the ruby gem builds.
If "-Wno-format" is hardcoded here it will collide and fail with the in-build option of -Werror=format-security passed to the make.
2) There was one potential format vulnerability found in rb_compression_options.c
|
| | | | |
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
1. Organize collapsed ruby yard doc.
2. Update contents about ClientStub#bidi_streamer because
bidi#writes_done hasn't existed.
https://github.com/grpc/grpc/pull/14535#discussion_r171452923
3. Fix yardoc warnings.
Warings:
[warn]: Invalid tag format for @return in file `lib/grpc/core/time_consts.rb` near line 36
[warn]: @param tag has duplicate parameter name: set_input_stream_done
in file `lib/grpc/generic/bidi_call.rb' near line 70
[warn]: Unknown tag @result in file `lib/grpc/generic/rpc_server.rb` near line 287
[warn]: @param tag has unknown parameter name:
in file `lib/grpc/generic/interceptors.rb' near line 158
[warn]: In file `lib/grpc/generic/rpc_server.rb':217: Cannot resolve link to key: from text:
...{key: val, ..}
[warn]: In file `lib/grpc/generic/rpc_server.rb':217:
Cannot resolve link to key: from text:
...{key: val, ..}
|
| | | |
|
|/ / |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Refactor ruby server shutdown to fix a race in tests
|
|\ \ \
| | | |
| | | | |
Fix two ruby memory leaks when exceptions are raised
|
|\ \ \ \ |
|
|\ \ \ \ \ |
|
| | |\ \ \ \
| | |/ / / /
| |/| | | | |
|
| | |\ \ \ \ |
|
| |\ \ \ \ \ \
| | | |/ / / /
| | |/| | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| |\| | | | | |
|
| |/ / / / /
|/| | | | | |
|
| | |\ \ \ \
| |_|/ / / /
|/| | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Remove alarm from core, implement in C++ layer only
|
| |/ / / / /
|/| | | | | |
|
| |/ / / /
|/| | | | |
|