Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
be7706b
* Allow loading a Ruby source file from the class path using the full…
donv Sep 17, 2011
0599f40
* Remove path to jar file when loading a resource from the class path
donv Sep 19, 2011
3b1cdb2
[IR] Fixed bug with incorrect argument order in AttrAssignInstr
subbuss Sep 18, 2011
87f744c
[IR] Fixed incorrect handling of class variable lookup.
subbuss Sep 18, 2011
2dbe7d5
[IR] Raise TypeError rather than NameError when we are looking up an …
subbuss Sep 18, 2011
807d98f
[IR] Minor code refactoring of generated IR code for defined? check o…
subbuss Sep 18, 2011
bcfd695
Add -n flag to dev gem installation to ensure RubyGems installs binst…
headius Sep 18, 2011
42e5b2b
Add back a deprecated org.jruby.RubyTempfile stub superclass, so jrub…
headius Sep 18, 2011
09f75dd
Generify IRubyObject.to_java to reduce the need for casting the retur…
headius Sep 18, 2011
5cf6809
Grr, is it *ever* safe to generify an existing API?
headius Sep 19, 2011
4e187d3
Fix anonymous class name calculation, to repair spec regressions in K…
headius Sep 19, 2011
3d6851e
Add rdoc to gems we install for dist, since hoe appears to depend on …
headius Sep 19, 2011
ee0f597
Temporarily tag failing zlib spec. See JRUBY-6078.
headius Sep 19, 2011
b38b228
Minor cleanup in RubyModule.calculateName from revert of logic.
headius Sep 19, 2011
022b139
After 2702be2, rdoc is now installed during 'dist' and other ant targ…
BanzaiMan Sep 19, 2011
6fdb134
New versions for jruby-jars.
BanzaiMan Sep 19, 2011
41b1496
Fix 'Zlib::Inflate#<< properly handles incomplete data ERROR' on Ruby…
ymnk Sep 17, 2011
e2365ca
Untag the passing spec. See JRUBY-6078 and 66b81e0.
BanzaiMan Sep 19, 2011
f214eb9
Unless we always install rdoc gem, this causes ri/rdoc commands to fail.
headius Sep 19, 2011
76b3031
Up delay in MRI's test_signal.rb in hopes of making the signal more r…
headius Sep 19, 2011
fd01549
never ever set your parent to yourself (you don't want to be your own…
enebo Sep 19, 2011
8cba067
Add a non-array variant to enumerable bench
enebo Sep 15, 2011
46820c6
[IR] Bug fix: Now passing const_missing message to the correct module.
subbuss Sep 19, 2011
d6f3acc
[IR] Raise LocalJumpError for bad redo statements
subbuss Sep 19, 2011
5dfb3ca
[IR] Fixed IR generation bug for OpElementAsgnNode
subbuss Sep 19, 2011
ec60923
[IR] Do it right this time (Fixed IR generation bug for OpElementAsgn…
subbuss Sep 19, 2011
c01fc62
[IR] Update IR spec file
subbuss Sep 19, 2011
6b8104b
[IR] Turn off binding load/store pass since it is buggy and it is not…
subbuss Sep 19, 2011
de4bcb0
JRUBY-6073: "\x80".index("\x80")
enebo Sep 20, 2011
3946870
jruby -c should log to error stream, not output stream.
headius Sep 23, 2011
a1b4d24
Add jruby/thread_dump.rb to enable USR2 thread dumping.
headius Sep 23, 2011
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Minor cleanup in RubyModule.calculateName from revert of logic.
  • Loading branch information
headius authored and donv committed Sep 28, 2011
commit b38b228b74fe30e842d08aecadc537aa2676c33f
2 changes: 1 addition & 1 deletion src/org/jruby/RubyModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ private synchronized String calculateName() {
String name = getBaseName();
RubyClass objectClass = getRuntime().getObject();

for (RubyModule p = getParent() ; p != null && p != runtime.getObject() ; p = p.getParent()) {
for (RubyModule p = getParent() ; p != null && p != objectClass ; p = p.getParent()) {
String pName = p.getBaseName();

// This is needed when the enclosing class or module is a singleton.
Expand Down