Fable Tales
Fable Tales
as far as I can tell, there isn't a way to provide ruby-install with a directory path to a ruby checkout on my machine. It'd be nice to have it...
**What language does this apply to?** Ruby **Describe the problem you are trying to solve.** Consider trying to do this: ```ruby #!/usr/bin/ruby require 'google/protobuf' Google::Protobuf::DescriptorPool.generated_pool.build do add_file("google/ads/googleads/v2/services/campaign_budget_service.proto", :syntax => :proto3)...
What about: 1. Never explicitly return `nil`, it's almost certainly not duck typed the same as the thing you're actually returning 2. Immediately wrap `nil`s returned by third parties in...
I think this is better.
**What version of protobuf and what language are you using?** Version: 3.6.0 Language: Ruby **What operating system (Linux, Windows, ...) and version?** OS X 10.14 **What runtime / compiler are...
there was only one formatting issue when we [compat checked](https://github.com/penelopezone/rubyfmt/pull/355/files) standard and rubyfmt which is how it formats something like this: ``` module Foo # the blankline above is what...
A ruby file of the form: ```ruby lambda { |x ;y, z| } ``` will fail standard because it expects there to be no sapce before all semicolons, and a...
One of the things that many RSpec users really love is clean output. At the moment, we don't have a great story for enforcing this at a suite level. I...