-
In various projects I'm using a Gemfile with:
``` ruby
source 'https://rubygems.org'
gem 'jruby-openssl', '~> 0.8.1' # for testing compatibility with jruby 1.6.8
```
The use of the HTTPS source is a…
-
I'm not sure what the underlying cause is, but inside of rubyspec, any spec which defines a class, looking up that class doesn't work.
alex updated
11 years ago
-
Hi everyone,
I think the start for people rather new to the shoes4 project should be easier. Here is a list (of the top off my head) of things that might help:
- a description of the directory struct…
-
`jruby 1.7.1 (ruby-1.8.7p370) 2012-12-03 30a153b on Java HotSpot(TM) 64-Bit Server VM 1.7.0_09-b05 [darwin-x86_64]`
``` ruby
>> RUBY_VERSION
=> "1.9.3"
>> Time.now.strftime('%b %-d')
=> "Dec 7"
```
…
-
Do you think rubinius needs test coverage for [Ruby's ISO standard](http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579)?
Many test could be rewritten from the mruby…
-
This is a feature request to add `Enumerable::Lazy` support, along with `Enumerable#lazy`.
There is a ruby implementation we could use for reference at https://github.com/yhara/enumerable-lazy althou…
dkubb updated
11 years ago
-
@yokolet I created this ticket to synchronize the work on fixing the tests under 1.9 mode.
I fixed most of them except for the ones that have to do with encoding on the 'fix_tests_19_mode' branch. A…
-
I did not have maglev-head installed previous to running the install command.
``` bash
∴ rvm install maglev-head
Running MagLev prereqs checking script.
Starting installation of maglev-head.Linux on…
-
## Detail
https://gist.github.com/4241151
## ExampleCode
``` ruby
Thread.new {sleep}.instance_eval do
initialize {}
end #=> ABORTING ...
```
-
Okay, now this is a really tricky one, i'm not even sure if it's possible to implement in Opal but I'll throw it out there anyway: Opal currently has no support for Ruby's method_missing method:
```
…