aboutsummaryrefslogtreecommitdiff
path: root/ruby/Rakefile
Commit message (Collapse)AuthorAgeFilesLines
* Added unit test for PascalCasing package names in Ruby.Josh Haberman2016-07-251-0/+5
|
* Ruby: generated foo.proto -> foo_pb.rb instead of foo.rb.Josh Haberman2016-07-251-1/+1
| | | | | This brings us more into line with other langauges, and makes it more obvious when we are requiring protobuf generated code.
* Properly generating well known proto files for the macos build.Nicolas "Pixel" Noble2016-05-041-0/+1
|
* Addressing concerns.Nicolas "Pixel" Noble2016-04-301-1/+9
|
* Few tweaks to the rakefile to permit native gems compilation with the proto ↵Nicolas "Pixel" Noble2016-04-291-30/+34
| | | | files generation.
* Generate well-known types in Ruby extension and prune unneeded proto2 ↵Josh Haberman2016-03-031-1/+44
| | | | dependencies.
* Actually enabling cross compilation.Nicolas "Pixel" Noble2016-02-061-1/+7
|
* Added support for binary gems.Josh Haberman2016-02-041-0/+5
|
* return nil if array index indicie is out of boundsAdam Greene2015-05-011-0/+3
| | | | | | | ruby arrays don't throw an exception; they return nil. Lets do the same! this fix also includes the ability to use negative array indicies
* add jruby support by protobuf-java reflection APIIsaiah Peng2015-03-101-7/+19
|
* Rename protobuf Ruby module to google/protobuf and rework its buildChris Fallin2014-12-121-19/+3
| | | | | | system. The Ruby module build now uses an amalgamated distribution of upb, and successfully builds a Ruby gem called 'google-protobuf' with module 'google/protobuf'.
* Provide a Ruby extension.Chris Fallin2014-12-091-0/+37
This adds a Ruby extension in ruby/ that is based on the 'upb' library (now included as a submodule), and adds support for Ruby code generation to the protoc compiler.