Alex Chaffee

Results 57 comments of Alex Chaffee

`rubygems_version` is not a check; it's just recording what version created it (or installed it? docs are vague). `add_dependency` wouldn't work since `rubygems` is not itself a gem (`rubygems-update` is...

https://github.com/rubygems/guides/issues/78 :-)

to improve the Google Fu of this (closed but still relevant) issue, I'll post my full error message: ``` # ``` @ddgromit's 3-line solution worked for me. Remember to `spring...

Thanks, I'm currently slogging through the backlog (for some reason it's easier to work on open source projects when I'm unemployed, go figure). I'll accept this once I merge my...

To clarify, this is apparently only a problem on Windows. Can you also let us know what version of Ruby you're using? On Sat, Jan 7, 2012 at 12:18 PM,...

thanks, I'll look into it

I'm in the process of upgrading Wrong to use Ryan's new versions of ruby_parser and ruby2ruby; hopefully that'll fix the sexp_processor and RubyInline fallout.

Is ActiveSupport::TestCase a subclass of Test::Unit? If so, replace "require 'wrong'" with "require 'wrong/adapters/test_unit'" as it says in the "adapters" section of the readme. On Thu, Oct 27, 2011 at...

The latest Wrong has these deps: ``` s.add_dependency "predicated", "~> 0.2.6" s.add_dependency "ruby_parser", ">= 3.0.1" s.add_dependency "ruby2ruby", ">= 2.0.1" s.add_dependency "sexp_processor", ">= 4.0" s.add_dependency "diff-lcs", "~> 1.1.2" ``` After pushing...