aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby
Commit message (Collapse)AuthorAge
* Update Ruby library version for next releaseGravatar murgatroid992016-01-04
|
* Include roots.pem with Ruby packageGravatar murgatroid992015-12-18
|
* Bundled C core with Ruby libraryGravatar murgatroid992015-12-18
|
* Fixed stub construction in interop clientGravatar murgatroid992015-12-16
|
* Made insecure channel/stub explicit, in all layersGravatar murgatroid992015-12-16
|
* Merge pull request #4412 from murgatroid99/ruby_auth_metadata_pluginGravatar Michael Lumish2015-12-11
|\ | | | | Ruby auth metadata plugin
* \ Merge pull request #4397 from jtattermusch/tv_sec_64bitGravatar Craig Tiller2015-12-11
|\ \ | | | | | | Make gpr_timespec platform agnostic.
* \ \ Merge pull request #4413 from jtattermusch/remove_ssl_cert_file_envGravatar Michael Lumish2015-12-11
|\ \ \ | | | | | | | | Get rid of SSL_CERT_FILE env entirely
| | | * Fixed arguments passed to Ruby auth plugin callbackGravatar murgatroid992015-12-11
| | | |
| * | | update channel_credentials_specGravatar Jan Tattermusch2015-12-11
| | | |
| * | | Address commentsGravatar Jan Tattermusch2015-12-11
| | | |
| * | | Get rid of SSL_CERT_FILE env entirelyGravatar Jan Tattermusch2015-12-10
| | | |
* | | | Merge pull request #4396 from murgatroid99/ruby_server_fix_hangGravatar Jan Tattermusch2015-12-10
|\ \ \ \ | |/ / / |/| | | Fixed a busy-wait in Ruby server run_till_terminated
| | * | make gpr_timespec platform agnosticGravatar Jan Tattermusch2015-12-10
| |/ / |/| |
| | * Fixed bug with composing credentialsGravatar murgatroid992015-12-10
| | |
| * | Fixed a busy-wait in Ruby server run_till_terminatedGravatar murgatroid992015-12-10
| | |
* | | Fixed encoding for bytes fields in the ruby interop serverGravatar murgatroid992015-12-08
| | |
* | | Fix encoding for bytes fields in ruby interop clientGravatar murgatroid992015-12-08
| | |
* | | update ruby to new position of math.proto and health.protoGravatar Jan Tattermusch2015-12-07
| | |
* | | consolidate math.proto and health.protoGravatar Jan Tattermusch2015-12-07
| | |
* | | Added explicit dependency on signet to gemspecGravatar murgatroid992015-12-07
| | |
| | * Fixed a hash keyGravatar murgatroid992015-12-04
| | |
| | * Plumb CallCredentials through Ruby code, replacing metadata_updater ↵Gravatar murgatroid992015-12-04
| | | | | | | | | | | | functionality
| | * Add CallCredentials class to Ruby wrapping codeGravatar murgatroid992015-12-04
| |/
* / Making ruby's gcov configuration work.Gravatar Nicolas "Pixel" Noble2015-12-02
|/
* Merge branch 'master' of github.com:grpc/grpc into core_creds_api_changeGravatar Julien Boeuf2015-11-17
|\
| * Merge branch 'master' of https://github.com/grpc/grpc into update_ssl_certGravatar Julien Boeuf2015-11-17
| |\
* | \ Merge branch 'master' of github.com:grpc/grpc into core_creds_api_changeGravatar Julien Boeuf2015-11-17
|\ \ \ | | |/ | |/|
| * | Merge pull request #4120 from ↵Gravatar Michael Lumish2015-11-12
| |\ \ | | | | | | | | | | | | | | | | tbetbetbe/grpc_ruby_fix_compile_on_2_0_typed_free_immediately Corrects compile error on ruby 2.0
| | * | Corrects compile error on ruby 2.0Gravatar Tim Emiola2015-11-12
| | | |
| * | | Merge pull request #4106 from tbetbetbe/grpc_ruby_fix_flaky_ruby_interop_testGravatar Michael Lumish2015-11-12
| |\ \ \ | | | | | | | | | | Grpc ruby fix flaky ruby interop test
| | * | | Updates interop client/server loggingGravatar Tim Emiola2015-11-11
| | | | | | | | | | | | | | | | | | | | | | | | | - server logger.level = WARN - client logger.level = INFO
| | * | | Adds standard logging to the client/serverGravatar Tim Emiola2015-11-11
| | | | | | | | | | | | | | | | | | | | - truncates the server debug log entries to make that readable
| | * | | Fixes a multithreading bug in the ruby rpc_serverGravatar Tim Emiola2015-11-11
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the current ruby server interop test flakiness. - The interop tests recently changed so that clients access servers in parallel, meaning that the interop servers handle multiple rpcs at once, which is how this bug became visible - since this change, tests run against the ruby interop server have failed sporadically - the problem was that the block in #loop_handle_server_calls that is passed to the thread pool referenced a var in an enclosing block, which resulted in requests being processed by the wrong handler - this fix ensures that the block to be run on the thread pool thread does not have any references to vars in the enclosing block
| * | | Ensures that bidi calls obtain metadata.Gravatar Tim Emiola2015-11-10
| | | | | | | | | | | | | | | | Fixes an omission from earlier PRs that adds support metadata.
| * | | Fixes an issue running the tests on Ruby2.2Gravatar Tim Emiola2015-11-10
| |/ /
| | * Updating the server1 cert so that it can be used with Go.Gravatar Julien Boeuf2015-11-09
| |/ | | | | | | | | | | | | | | The encoding of the issuer field in this cert is now a PRINTABLESTRING as opposed to UTF8STRING in the previous server1.pem which was causing the Go issue. Fixes #4086.
| * Merge pull request #4009 from jtattermusch/add_badgesGravatar Michael Lumish2015-10-30
| |\ | | | | | | Add npm, gem and cocoapods badges
| | * Add gem badgeGravatar Jan Tattermusch2015-10-30
| | |
* | | Ruby wrapping of core credentials API change.Gravatar Tim Emiola2015-10-28
| | |
* | | Updates channel credentialsGravatar Tim Emiola2015-10-27
| | | | | | | | | | | | | | | | | | - switches credentials to channel credentials - removes usages of other credentials classes that would are not currently used in the ruby surface
| * | fix ruby per_rpc_credsGravatar Jan Tattermusch2015-10-19
| |/
| * Merge pull request #3861 from jtattermusch/ruby_use_tlsGravatar Michael Lumish2015-10-19
|/| | | | | Accept --use_tls=true and --use_test_ca=true in ruby interop tests
| * accept --use_tls=true and --use_test_ca=true in rubyGravatar Jan Tattermusch2015-10-15
| |
* | Add newline to .rubocop.ymlGravatar murgatroid992015-10-14
| |
* | Fixed previous change, altered RuboCop settings to let me do soGravatar murgatroid992015-10-14
| |
* | Made ruby server stop waiting for calls when it starts getting null callsGravatar murgatroid992015-10-14
|/
* Fixes the broken ruby interop testsGravatar Tim Emiola2015-10-08
|
* Merge pull request #3602 from grpc/release-0_11Gravatar Tim Emiola2015-10-02
|\ | | | | Upmerge from beta to master.
| * Bugfix: correct circular arg refGravatar Tim Emiola2015-09-25
| |