-
```
$ rvm use rbx-2 --install --binary --fuzzy
rbx-2 is not installed - installing.
Searching for binary rubies, this might take some time.
Requested binary installation but no rubies are available to…
-
I saw this today: http://rubini.us/2013/10/04/rubinius-2-0-released/
Does anyone use rubinius in production? If so, I'd like to hear about it…
-
This is the tail of an error I got trying to install rbx 2.4.1:
```
/usr/local/rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/rake/application.rb:150:in `invoke_task'
/usr/local/rvm/rubies/ruby-2.2.0/lib/ruby/…
-
```
`Installing nokogiri 1.6.7.2 with native extensions
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
/usr/bin/ruby2.1 extconf.rb
checking if the C compiler …
-
## Problem
The exception is thrown in the code:
> SyntaxError: syntax error, unexpected '.': /home/travis/build/znamenica/bukovina/lib/bukovina/parsers/name.rb:51:42
## How to Reproduce
The problem…
-
Background: I'm trying to write a service that receives source code via HTTP, parses it using syntect and then returns some information about it. I'm using Iron for it, but this issue would also occur…
-
https://travis-ci.org/swanandp/acts_as_list/jobs/151394790
Not sure why this is failing only sometimes?
-
See ruby/ruby@989f5a1e6fc2074158456e70529002cb5e4d29d0.
-
```
def fibacc(n,a,b)
if n==0
a
else
fibacc n-1,b,a+b
end
end
def dummyacc(n,a,b,c)
if(n==0)
a
else
dummyacc n-1,b,c,a+b+c
end
end
def dummy(n)
dummyacc n,100,1,1
end
def…
-
I'm trying to connect to rabbitmq server over tls/ssl, however no matter what I do, it doesn't seem to work.
I've tried with URI, and Hash, but all I get for URI - note that cert-paths which were add…