Closed dteoh closed 12 years ago
I couldn't update to yajl-ruby 1.1.0. Anyone know any more about this?
Found a workaround from this post.
~/.rvm/gems/ruby-1.9.3-p194/gems/yajl-ruby-1.0.0
)ext/yajl
, edit both yajl_ext.h
and yajl_ext.c
, and change both instances of inline void
to static void
(see below)ext/yajl
, run make clean all
yajl.bundle
from ext/yajl
to replace the one in lib/yajl
In yajl_ext.c
:
static void yajl_check_and_fire_callback(void * ctx) {
// ...snip...
static void yajl_set_static_value(void * ctx, VALUE val) {
In yajl_ext.h
:
static void yajl_check_and_fire_callback(void * ctx);
static void yajl_set_static_value(void * ctx, VALUE val);
Updating to new version 1.1.0 didn't work, but @Aupajo's solution did. Thanks
Pulling Yajl out in next release (already in HEAD). Sorry for the hassle guys.
I cannot use coffee-script gem version ~> 2.2.0, Stasis just crashes outright.
I updated yajl-ruby to 1.1.0 and it seemed to fix it.