aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby
Commit message (Collapse)AuthorAge
* Merge github.com:grpc/grpc into one-passGravatar Craig Tiller2015-04-24
|\
* | clang-formatGravatar Craig Tiller2015-04-24
| |
| * Corrects bad return values in C error-handling blockGravatar Tim Emiola2015-04-24
| |
| * Move Notifier into its own fileGravatar Tim Emiola2015-04-24
| |
| * Simplify debugging, avoid inspecting C-backed objects.Gravatar Tim Emiola2015-04-24
| |
| * Fix logging version mismatchjGravatar Tim Emiola2015-04-24
| |
| * Fix failing interop serversGravatar Tim Emiola2015-04-24
|/
* Corrects command/flags used in ruby interop testsGravatar Tim Emiola2015-04-23
|
* Merge pull request #1309 from tbetbetbe/grpc_ruby_rpc_server_mdGravatar Jan Tattermusch2015-04-20
|\ | | | | Grpc ruby add support for returning metadata to the rpc server
* \ Merge pull request #1313 from tbetbetbe/grpc_ruby_add_ruby_coverageGravatar Jan Tattermusch2015-04-20
|\ \ | | | | | | Add SimpleCov coverage set up for gRPC ruby
* \ \ Merge pull request #1315 from jboeuf/security_connectorGravatar Craig Tiller2015-04-19
|\ \ \ | | | | | | | | Refactoring of core security to remove the factories.
| * | | Fixing inaccurate ruby test.Gravatar Julien Boeuf2015-04-18
| | | |
* | | | Remove usage of xrayGravatar Tim Emiola2015-04-17
|/ / / | | | | | | | | | | | | | | | | | | | | | - xray was useful during dev testing but is neither a dev or runtime dep - its presence causes issues for libraries that handle signals themselves Also - updates grpc.gemspec with requirements
| * / Add SimpleCov coverage set up for gRPC rubyGravatar Tim Emiola2015-04-17
|/ /
| * clarify test descriptionsGravatar Tim Emiola2015-04-17
| |
| * Adds support for updating the output metadata to callsGravatar Tim Emiola2015-04-17
| |
| * Propagate metadata in BadStatusGravatar Tim Emiola2015-04-17
| | | | | | | | | | | | - allow BadStatus to contain metadata that's populated by keyword args - on servers, convert raised BadStatus metadata to trailers - on clients, convert trailers to BadStatus metadata when raising BadStatus
* | Merge pull request #1297 from yugui/fix/headerGravatar Tim Emiola2015-04-17
|\ \ | | | | | | Avoid implicit function declarations
* \ \ Merge pull request #1295 from yugui/fix/typed-structGravatar Tim Emiola2015-04-17
|\ \ \ | | | | | | | | Use TypedData_XXX instead of Data_XXX
| | | * Allow BadStatus to contain metadataGravatar Tim Emiola2015-04-17
| | | |
| | | * Adds a hook for returning the client connect metadataGravatar Tim Emiola2015-04-17
| | | |
| | * | Merge branch 'master' into fix/headerGravatar Yuki Yugui Sonoda2015-04-17
| | |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: src/ruby/ext/grpc/rb_grpc.c
| * | \ \ Merge branch 'master' into fix/typed-structGravatar Yuki Yugui Sonoda2015-04-17
| |\ \ \ \ | | | |/ / | | |/| | | | | | | | | | | | Conflicts: src/ruby/ext/grpc/rb_grpc.c
| | | | * Refactor: Shorter methods in RpcServerGravatar Tim Emiola2015-04-16
| | | | |
| | | | * Refactor: Move the Pool out from RpcServerGravatar Tim Emiola2015-04-16
| |_|_|/ |/| | |
* | | | Fixes error with the keep-aliveGravatar Tim Emiola2015-04-16
| | | |
* | | | Updates the example servers to use #run_till_terminatedGravatar Tim Emiola2015-04-16
| | | |
* | | | Adds a #run_till_terminated func to RpcServerGravatar Tim Emiola2015-04-16
| |/ / |/| | | | | | | | | | | | | | | | | - adds signal handling to RpcServer - ensures that very little behaviour occurs in the signal handling context - adds #run_till_terminated that launches a server in a thread and then handles signals that can be used to stop it.
* | | Merge pull request #1294 from tbetbetbe/grpc_ruby_update_gem_depsGravatar Stanley Cheung2015-04-16
|\ \ \ | | | | | | | | Updates gem dependencies, style rules
* \ \ \ Merge pull request #1296 from yugui/fix/staticGravatar Tim Emiola2015-04-16
|\ \ \ \ | | | | | | | | | | Correct storage classes of variables an functions
| | | | * Avoid implicit function declarationsGravatar Yuki Yugui Sonoda2015-04-16
| | | | |
| * | | | Make some functions staticGravatar Yuki Yugui Sonoda2015-04-16
| | | | | | | | | | | | | | | | | | | | They don't need to be extern
| * | | | Fix a linkage error with mac clangGravatar Yuki Yugui Sonoda2015-04-16
| | | | | | | | | | | | | | | | | | | | Prevent symbol cache variables from being instantiated multipe times.
| * | | | Make some global variables staticGravatar Yuki Yugui Sonoda2015-04-16
| | |_|/ | |/| | | | | | | | | | They do not need to be extern.
| | | * Use TypedData for GRPC::Core::ServerCredentialsGravatar Yuki Yugui Sonoda2015-04-16
| | | |
| | | * Use TypedData for GRPC::Core::ServerGravatar Yuki Yugui Sonoda2015-04-16
| | | |
| | | * Use TypedData for GRPC::Core::TimeSpecGravatar Yuki Yugui Sonoda2015-04-16
| | | |
| | | * Use TypedData for GRPC::Core::CredentialsGravatar Yuki Yugui Sonoda2015-04-16
| | | |
| | | * Use TypedData for GRPC::Core::CompletionQueueGravatar Yuki Yugui Sonoda2015-04-16
| | | |
| | | * Use TypedData for TmpChannelArgsGravatar Yuki Yugui Sonoda2015-04-16
| | | |
| | | * Use TypedData for GRPC::Core::ChannelGravatar Yuki Yugui Sonoda2015-04-16
| | | |
| | | * Use TypedData for GRPC::Core::MetadataArrayGravatar Yuki Yugui Sonoda2015-04-16
| | | |
| | | * Use TypedData_XXX instead of Data_XXX for GRPC::Core::CallGravatar Yuki Yugui Sonoda2015-04-16
| | |/ | |/| | | | | | | Data_XXX family is being deprecated in Ruby 2.x.
| | * Updates gem dependencies, style rulesGravatar Tim Emiola2015-04-15
| |/
* | Adds interop cancellation testsGravatar Tim Emiola2015-04-15
| |
* | Corrects handling of status during bidi call orchestration.Gravatar Tim Emiola2015-04-15
| | | | | | | | | | | | | | | | - Ensures that invalid status are raised as exceptions - Ensures that exceptions during the write thread are bubbled up to the starting thread Also - improves the debug messages during the BiDi calls
* | Adds an explicit Cancellation exceptionGravatar Tim Emiola2015-04-15
| | | | | | | | | | - uses Forwardable to provide access the @call within an ActiveCall - removes redundant methods from ActiveCall
* | Adds a tests that demonstrates successful cancellationGravatar Tim Emiola2015-04-15
|/
* Updates the pubsub sample so that it no longer uses a scopeGravatar Tim Emiola2015-04-14
|
* Adds a jwt_token_creds interop testGravatar Tim Emiola2015-04-14
|