commit | af4aa9bd64229d726d62a532f5f31a415ff74725 | [log] [tgz] |
---|---|---|
author | Josh Haberman <jhaberman@gmail.com> | Thu Feb 04 10:44:22 2016 -0800 |
committer | Josh Haberman <jhaberman@gmail.com> | Thu Feb 04 10:44:22 2016 -0800 |
tree | 6ab60c1b90c7e942e7829a7ddc24a35f8893a5e1 | |
parent | bd8a476510d17d3841ff2509fbd67b7f4b543c1c [diff] [blame] |
Added support for binary gems.
diff --git a/ruby/lib/google/protobuf.rb b/ruby/lib/google/protobuf.rb index f0eb626..62bdd1b 100644 --- a/ruby/lib/google/protobuf.rb +++ b/ruby/lib/google/protobuf.rb
@@ -44,7 +44,11 @@ require 'json' require 'google/protobuf_java' else - require 'google/protobuf_c' + begin + require "google/#{RUBY_VERSION.sub(/\.\d$/, '')}/protobuf_c" + rescue LoadError + require 'google/protobuf_c' + end end require 'google/protobuf/repeated_field'