Jim Weirich

Results 3 issues of Jim Weirich

Do the following method definitions properly source: ``` ruby def foo(a=nil, b) end def bar(a, b=1, c) end ```

``` ruby sexp = Ripper::SexpBuilder.parse("a + -1") Sorcerer.subexpressions(sexp) ``` Currently returns ``` ruby ["a + -1", "a", "-1"] ``` It should return ``` ruby ["a + -1", "a"] ``` (same...

RSpec 3.0.0 beta 2 renames the PendingDeclaredInExample to SkipDeclaredInExample.