Arto Bendiken
Arto Bendiken
Just curious, what was the eventual resolution on this issue?
For the time being, what I ended up using is an approach like the following: ``` Citrus.require(File.join(File.dirname(__FILE__), 'my_grammar')) module MyGrammar KEYWORDS = %w(ALL AND ANY AS ASC BY CROSS DESC...
Ah, that explains why the Ruby source code for `BERT::Decode.new` had no clues to this problem. I had forgotten there's a C extension as well. Clear as day, now.
An easy workaround is to explicitly load up the Ruby version of the decoder: ``` >> require 'bert' >> BERT::Decode.new(StringIO.new("\203h\002d\000\005replyl\000\000\000\001a\001j")) ArgumentError: wrong number of arguments (1 for 0) from (irb):2:in...
:+1: The `jasmine-node` 2.0.0-beta4 release works nicely for me.
@NathanSweet Most helpful, thanks. Also, anyone stumbling onto this will want to read https://github.com/shevek/jarjar/issues/8
Most of the top-level libraries (such as `android_bluetooth`) are stubs as yet--there's a _lot_ of ground to cover... That said, the Bluetooth APIs specifically are definitely on my near-term roadmap,...
I ran into the same problem attempting to run `nvcc` from the NVIDIA CUDA Toolkit: cicc: Relink `/usr/lib/libgcc_s.so.1' with `/usr/glibc-compat/lib/libc.so.6' for IFUNC symbol `memset' nvcc error : 'cicc' died due...
The convenience template methods for `lmdb::dbi#get()` seem a bit too permissive at the moment, as in your example you are passing in a C string (`const char*`) to the key...
I will review and merge any pending pull requests this weekend, if you guys want to submit one.