grosser (Michael Grosser) wrote: > Neither the release notes nor the wasm/README.md include any runnable examples. > ... I assume the final release will have an official .wasm file that ships with it. Note that the current approach ...rkh (Konstantin Haase)
This is failing on Travis CI and unfortunately preventing us from offering 2.2.0-preview2. See https://travis-ci.org/travis-ci/travis-rubies/jobs/42454368#L194 Konstantinrkh (Konstantin Haase)
Now that def returns the method name, it would be handy to have alias/alias_method return the name of the alias: class Foo private def foo() end protected alias_method :bar, :foo end Same goes for the attr_* methods: clas...rkh (Konstantin Haase)
eLobato (Daniel Lobato Garcia) wrote: > This error showed up in a Rails app, on my code I had two different files (ProxyAPI::Resource and ProxyAPI::BMC < Resource), and somehow there was a separated Resource class defined by a loaded ge...rkh (Konstantin Haase)
Example: s = StringScanner.new("Fri Dec 12 1975 14:39") s.scan(/(?<wday>\w+) (?<month>\w+) (?<day>\d+) /) # this currently works s[0] # -> "Fri Dec 12 " s[1] ...rkh (Konstantin Haase)