<gthank>
I'm looking for tips on how to debug a `bundle install --local --path vendor` failure ; it tells me "Could not find racc-1.6.2 in any of the sources" but when I list the contents of `./vendor/cache` I find `racc-1.6.2.gem`
tomtmym has joined #ruby
tomtmym has quit [Changing host]
tomtmym has joined #ruby
<jhass[m]>
looks like racc has jruby specific native extensions, any JRuby involved in your setup anywhere?
<jhass[m]>
like using it locally but not on the deployment target or vice versa
<jhass[m]>
locally=whatever compiles your vendor/cache directory
<gthank>
No, no JRuby
<gthank>
It's a FreeBSD box on AWS (a Graviton2-based instance)
<adam12>
Probably arch related then.
<adam12>
Did you build vendor/cache on another machine?
<gthank>
If I run it without `--local`, it works, and there are messages about fetching gems (basically anything that says compiling with native extensions), but none of the timestamps in `vendor/cache` change
<gthank>
Yes, `vendor/cache` is common and includes manual downloads to handle multiple architectures. Confusingly, `racc` doesn't seem to have a platform-specific gem but does then say it's compiling with native extensions
dionysus69 has quit [Ping timeout: 240 seconds]
John_Ivan has quit [Read error: Connection reset by peer]
otisolsen70 has quit [Read error: Connection reset by peer]
teclator has quit [Ping timeout: 250 seconds]
shokohsc has quit [Ping timeout: 255 seconds]
<ox1eef_>
gthank: Install it as a port. devel/rubygem-racc.
Goodbye_Vincent has quit [Read error: Connection reset by peer]
Goodbye_Vincent has joined #ruby
caedmon has joined #ruby
caedmon has quit [Ping timeout: 265 seconds]
mark22k has joined #ruby
<mark22k>
Hello, is there somewhere a maintained fork of Eventmachine. Currently there are over 100 issues and 34 PR, which are not or only partially processed. Furthermore the project is shown as red on https://www.ruby-toolbox.com/projects/eventmachine. Is there somewhere a community-developed maintained version of eventmachine? Are there alternatives to
<mark22k>
eventmachine, which are also event-based (not like async)?
John_Ivan__ has joined #ruby
<weaksauc_>
what kind of events? mark22k
<mark22k>
Receive
<weaksauc_>
if async can make a http server via falcon it seems it should be able to do whatever you'd want
<mark22k>
Perhaps a little poorly worded. I noticed the difference in the WebSocket extensions, which are available for async and EventMachine. With faya-websocket, which uses EventMachine, there is an event for each WebSocket event (onError, onConnect, onDisconnect, ...). When I look at the examples of async-websocket, it looks more like a normal TCP
<mark22k>
connection.
<mark22k>
falcon I should probably take a look at. Thanks!
___nick___ has quit [Ping timeout: 260 seconds]
<weaksauc_>
mark22k if you have a lot of time invested in eventmachine you can use git master perhaps