For instance, i have: ```proto # a.proto file package abc_def; message ghi {} ``` Then, when generating ruby source, i got: ```ruby # a.pb.rb module Abc_def class Ghi {} end ``` The package named `abc_def` should be generated to `AbcDef` module, instead of `Abc_def`, shouldn't it? I checked this issue: https://github.com/ruby-protobuf/protobuf/issues/81#issuecomment-16066840, but the case of the package name was not mentioned there.