Skip to content

Commit

Permalink
Revert "does not get the information of included module recursively i…
Browse files Browse the repository at this point in the history
…n Module#included_modules"

This reverts commit 677f704.

Sequel gem need this revert (#66)
  • Loading branch information
Watson1978 committed May 16, 2012
1 parent d3e81c3 commit b3e008e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions class.c
Original file line number Diff line number Diff line change
Expand Up @@ -730,6 +730,7 @@ rb_mod_included_modules_nosuper(VALUE mod, VALUE ary)
for (i = 0; i < count; i++) {
VALUE imod = RARRAY_AT(inc_mods, i);
rb_ary_push(ary, imod);
rb_ary_concat(ary, rb_mod_included_modules(imod));
}
}
}
Expand Down

0 comments on commit b3e008e

Please sign in to comment.