aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler/ruby_generator_string-inl.h
Commit message (Collapse)AuthorAge
* 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 # ... ```
* Update clang-format to 5.0Gravatar Craig Tiller2017-11-03
|
* auto-fix most of licensesGravatar Jan Tattermusch2017-06-08
|
* ruby: Use fully-qualified type name when necessaryGravatar Jun Mukai2016-04-06
| | | | | | | - Use full_name() instead of name(), otherwise package names are omitted. - Fix a minor bug on RubyTypeOf(), to replace dotted protobuf package name by ruby's module names correctly.
* Use grpc:: counterparts in ruby code generatorGravatar Yang Gao2015-03-23
|
* Guard headers tool.Gravatar Nicolas "Pixel" Noble2015-03-01
|
* Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
|
* Update copyright to 2015Gravatar Craig Tiller2015-02-18
|
* Use clang-format-3.5Gravatar Craig Tiller2015-01-18
|
* Removing "using namespace std" everywhere.Gravatar Nicolas Noble2015-01-15
|
* clang-format codebaseGravatar Craig Tiller2015-01-13
|
* bugfix: ruby code-gen capitalizationGravatar temiola2015-01-06
| | | | | | | Change on 2015/01/06 by temiola <temiola@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83391912
* Getting the generated Makefile to support .proto files.Gravatar nnoble2014-12-12
| | | | | | | | | | -) Compiling the proto plugin using the HOSTCC compiler. -) Set up proper rules to invoke the plugin from protoc. -) Few various renaming hacks to fully get out of []. Change on 2014/12/12 by nnoble <nnoble@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=82000361
* Fixes package prefixesGravatar temiola2014-12-12
| | | | | | | | | | | | | | | | | Fixes how module names for messages with package prefixes are rendered. - detected while prototyping with beefcake - fixed on the internal beefcake fork here [] This change replicates that fix for the official code generator. TODO: add a test; what's normal done to test features like this the proto codebase? Add another test.proto/golden file? Change on 2014/12/11 by temiola <temiola@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81916292
* First pass at making the compilers open-sourcable.Gravatar nnoble2014-12-11
Change on 2014/12/10 by nnoble <nnoble@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81829127