Code Monkey home page Code Monkey logo

jcodings's Introduction

JRuby - an implementation of the Ruby language on the JVM

Master: JRuby CI, JRuby CI (Windows) 9.3 branch: JRuby CI, JRuby CI (Windows)

About

JRuby is an implementation of the Ruby language using the JVM.

It aims to be a complete, correct and fast implementation of Ruby, at the same time as providing powerful new features such as concurrency without a global-interpreter-lock, true parallelism, and tight integration to the Java language to allow you to use Java classes in your Ruby program and to allow JRuby to be embedded into a Java application.

You can use JRuby simply as a faster version of Ruby, you can use it to run Ruby on the JVM and access powerful JVM libraries such as highly tuned concurrency primitives, you can use it to embed Ruby as a scripting language in your Java program, or many other possibilities.

We're a welcoming community - you can talk to us on #jruby on Libera. There are core team members in the EU and US time zones.

Visit the JRuby website and the JRuby wiki for more information.

Getting JRuby

To run JRuby you will need a JRE (the Java VM runtime environment) version 8 or higher.

Your operating system may provide a JRE and JRuby in a package manager, but you may find that this version is very old.

An alternative is to use one of the Ruby version managers.

For rbenv you will need the ruby-build plugin. You may find that your system package manager can provide these. To see which versions of JRuby are available you should run:

$ rbenv install jruby

Note: if you do not regularly git update rbenv this list of versions may be out of date.

We recommend always selecting the latest version of JRuby from the list. You can install that particular version (9.2.13.0 is just for illustration):

$ rbenv install jruby-9.2.13.0

For rvm you can simply do:

$ rvm install jruby

Using Homebrew works too:

$ brew install jruby

You can also download packages from the JRuby website that you can unpack and run in place.

Building JRuby

See BUILDING for information about prerequisites, how to compile JRuby from source and how to test it.

Authors

Stefan Matthias Aust, Anders Bengtsson, Geert Bevin, Ola Bini, Piergiuliano Bossi, Johannes Brodwall, Rocky Burt, Paul Butcher, Benoit Cerrina, Wyss Clemens, David Corbin, Benoit Daloze, Thomas E Enebo, Robert Feldt, Chad Fowler, Russ Freeman, Joey Gibson, Kiel Hodges, Xandy Johnson, Kelvin Liu, Kevin Menard, Alan Moore, Akinori Musha, Charles Nutter, Takashi Okamoto, Jan Arne Petersen, Tobias Reif, David Saff, Subramanya Sastry, Chris Seaton, Nick Sieger, Ed Sinjiashvili, Vladimir Sizikov, Daiki Ueno, Matthias Veit, Jason Voegele, Sergey Yevtushenko, Robert Yokota, and many gracious contributors from the community.

JRuby uses code generously shared by the creator of the Ruby language, Yukihiro Matsumoto [email protected].

Project Contact: Thomas E Enebo [email protected]

License

JRuby is licensed under a tri EPL/GPL/LGPL license. You can use it, redistribute it and/or modify it under the terms of the:

Eclipse Public License version 2.0 OR GNU General Public License version 2 OR GNU Lesser General Public License version 2.1

Some components have other licenses and copyright. See the COPYING file for more specifics.

jcodings's People

Contributors

ahorek avatar banzaiman avatar chrisseaton avatar dependabot[bot] avatar djoooooe avatar enebo avatar headius avatar henrich avatar k77ch7 avatar lopex avatar nirvdrum avatar rscottm avatar ryenus avatar sebthom avatar tychobrailleur avatar yui-knk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

jcodings's Issues

ArrayIndexOutOfBounds exception GB18030

repo https://github.com/mikel/mail

This is the only test failing on jruby, so I think it's worth to track it here.

https://travis-ci.org/mikel/mail/jobs/416928052

 1) Mail::Encodings B encodings should decode GB18030 encoded string misidentified as GB2312
     Failure/Error: Unable to find org.jcodings.transcode.TranscodeFunctions.funSioFromGB18030(TranscodeFunctions.java to read failed line
     
     Java::JavaLang::ArrayIndexOutOfBoundsException:
       3
     # org.jcodings.transcode.TranscodeFunctions.funSioFromGB18030(TranscodeFunctions.java:424)
     # org.jcodings.transcode.specific.From_GB18030_Transcoder.startInfoToOutput(From_GB18030_Transcoder.java:40)
     # org.jcodings.transcode.Transcoding.transcodeRestartable0(Transcoding.java:283)
     # org.jcodings.transcode.Transcoding.transcodeRestartable(Transcoding.java:105)
     # org.jcodings.transcode.Transcoding.convert(Transcoding.java:86)
     # org.jcodings.transcode.EConv.transSweep(EConv.java:236)
     # org.jcodings.transcode.EConv.transConvNeedReport(EConv.java:300)
     # org.jcodings.transcode.EConv.transConv(EConv.java:294)
     # org.jcodings.transcode.EConv.convertInternal(EConv.java:406)
     # org.jcodings.transcode.EConv.convert(EConv.java:452)
     # org.jruby.util.io.EncodingUtils.transcodeLoop(EncodingUtils.java:1403)
     # org.jruby.util.io.EncodingUtils.transcodeLoop(EncodingUtils.java:1315)
     # org.jruby.util.io.EncodingUtils.strTranscode0(EncodingUtils.java:939)
     # org.jruby.util.io.EncodingUtils.strTranscode(EncodingUtils.java:860)
     # org.jruby.util.io.EncodingUtils.strEncode(EncodingUtils.java:832)
     # org.jruby.RubyString.encode(RubyString.java:6040)
     # org.jruby.RubyString$INVOKER$i$encode.call(RubyString$INVOKER$i$encode.gen)
     # org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:199)

Copyright issue

Hi, I'd like to use this library, but I can't find copyright.
I think this library is MIT license. So, There should be 'Copyright (c) ' text.

Please tell me where I can find those copyright text.

Verify org.jruby.jcodings:jcodings:1.0.44 is JDK11 compatible

Hello guys,

we are in the process of migrating from JDK8 to JDK11. Our internal tool says that org.jruby.jcodings:jcodings:1.0.44 is not not JDK11 compatible, because it uses covariant methods:

This project contains references to covariant Java API methods that are not provided in JDK 8.

Incompatible bytecode compiled with JDK 9+ may throw a java.lang.NoSuchMethodError when running on JDK 8. An example are implementations of java.nio.Buffer.

Ensure that bytecode compiled to run on JDK 8 uses the -release 8 option. Bytecode built using compiler options -source 1.8 and -target 1.8 do not ensure compatible bytecode.

NoSuchMethodError exceptions may also be mitigated by up casting types such as: ((Buffer) charBuffer).flip()

Could you please verify/release a new version that is JDK11 compatible?

ArrayIndexOutOfBoundsExceptions when transcoding UTF8-SoftBank=>SJIS-KDDI or CP51932=>CP50220

The following unit tests crash in org.jcodings.transcode.Transcoding:

@Test
public void test1() {
    byte[] src = {0, -19, -97, -65, -18, -128, -128, -12, -113, -65, -65};
    byte[] dst = new byte[8];
    Ptr srcPtr = new Ptr(7);
    Ptr dstPtr = new Ptr(0);
    EConv econv = TranscoderDB.open("UTF8-SoftBank", "SJIS-KDDI", 0);
    econv.convert(src, srcPtr, src.length, dst, dstPtr, dst.length, 0);
}
java.lang.ArrayIndexOutOfBoundsException: 3
	at org.jcodings.transcode.Transcoding.transcodeRestartable0(Transcoding.java:172)
	at org.jcodings.transcode.Transcoding.transcodeRestartable(Transcoding.java:105)
	at org.jcodings.transcode.Transcoding.convert(Transcoding.java:86)
	at org.jcodings.transcode.EConv.transSweep(EConv.java:236)
	at org.jcodings.transcode.EConv.transConvNeedReport(EConv.java:300)
	at org.jcodings.transcode.EConv.transConv(EConv.java:294)
	at org.jcodings.transcode.EConv.convertInternal(EConv.java:410)
	at org.jcodings.transcode.EConv.convert(EConv.java:452)
@Test
public void test2() {
    byte[] src = {0, 127, -114, -95, -114, -2, -95, -95, -95, -2, -94, -95, -94, -2, -93, -95, -93, -2, -92, -95, -92, -2, -91, -95, -91, -2, -90, -95, -90, -2, -89, -95, -89, -2, -88, -95, -88,
                    -2, -87, -95, -87, -2, -86, -95, -86, -2, -85, -95, -85, -2, -84, -95, -84, -2, -83, -95, -83, -2, -82, -95, -82, -2, -81, -95, -81, -2, -80, -95, -80, -2, -79, -95, -79, -2,
                    -78, -95, -78, -2, -77, -95, -77, -2, -76, -95, -76, -2, -75, -95, -75, -2, -74, -95, -74, -2, -73, -95, -73, -2, -72, -95};
    byte[] dst = new byte[100];
    Ptr srcPtr = new Ptr(0);
    Ptr dstPtr = new Ptr(0);
    EConv econv = TranscoderDB.open("CP51932", "CP50220", 0);
    econv.convert(src, srcPtr, src.length, dst, dstPtr, dst.length, 0);
}
java.lang.ArrayIndexOutOfBoundsException: 186
	at org.jcodings.transcode.TranscodeFunctions.funSoCp50220Encoder(TranscodeFunctions.java:528)
	at org.jcodings.transcode.specific.Cp50220_encoder_Transcoder.startToOutput(Cp50220_encoder_Transcoder.java:45)
	at org.jcodings.transcode.Transcoding.transcodeRestartable0(Transcoding.java:307)
	at org.jcodings.transcode.Transcoding.transcodeRestartable(Transcoding.java:105)
	at org.jcodings.transcode.Transcoding.convert(Transcoding.java:86)
	at org.jcodings.transcode.EConv.transSweep(EConv.java:236)
	at org.jcodings.transcode.EConv.transConvNeedReport(EConv.java:300)
	at org.jcodings.transcode.EConv.transConv(EConv.java:294)
	at org.jcodings.transcode.EConv.convertInternal(EConv.java:406)
	at org.jcodings.transcode.EConv.convert(EConv.java:452)

jcodings does not properly produce error for at least two encodings on bad codepoint

Originally reported as http://jira.codehaus.org/browse/JRUBY-5228

Two expectations fail from this...the latter two in the following spec from Integer#chr specs:

    it "raises a RangeError if self is an invalid codepoint for the given encoding" do
      lambda { 0x81.chr(Encoding::EUC_JP)     }.should raise_error(RangeError)
      lambda { 256.chr(Encoding::ISO_8859_9)  }.should raise_error(RangeError)
      lambda { 620.chr(Encoding::TIS_620)     }.should raise_error(RangeError)
    end

The EUC_JP line properly produces an EncodingException inside jcodings, but the other two do not.

1.0.19 build failure on test

I got jcodings 1.0.19 build failure as below (built on Debian unstable).

[INFO] ------------------------------------------------------------------------
[INFO] Building JCodings 1.0.19
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ jcodings ---
[WARNING] Using platform encoding (ANSI_X3.4-1968 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 559 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.2:compile (default-compile) @ jcodings ---
[INFO] Changes detected - recompiling the module!
[WARNING] File encoding has not been set, using platform encoding ANSI_X3.4-1968, i.e. build is platform dependent!
[INFO] Compiling 128 source files to /build/jcodings-1.0.19/target/classes
[INFO] /build/jcodings-1.0.19/src/org/jcodings/util/Hash.java: Some input files use unchecked or unsafe operations.
[INFO] /build/jcodings-1.0.19/src/org/jcodings/util/Hash.java: Recompile with -Xlint:unchecked for details.
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ jcodings ---
[WARNING] Using platform encoding (ANSI_X3.4-1968 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /build/jcodings-1.0.19/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.2:testCompile (default-testCompile) @ jcodings ---
[INFO] Changes detected - recompiling the module!
[WARNING] File encoding has not been set, using platform encoding ANSI_X3.4-1968, i.e. build is platform dependent!
[INFO] Compiling 9 source files to /build/jcodings-1.0.19/target/test-classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[10,30] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[10,31] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[10,32] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[10,33] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,23] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,24] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,22] unclosed character literal
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,24] illegal character: '\ufffd'
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,25] unclosed character literal
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,40] ';' expected
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,76] ';' expected
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestEConv.java:[86,35] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestEConv.java:[86,36] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestEConv.java:[86,37] unmappable character for encoding ASCII
[INFO] 14 errors
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.298 s
[INFO] Finished at: 2017-04-15T02:05:13+00:00
[INFO] Final Memory: 13M/303M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.2:testCompile (default-testCompile) on project jcodings: Compilation failure: Compilation failure:
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[10,30] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[10,31] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[10,32] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[10,33] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,23] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,24] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,22] unclosed character literal
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,24] illegal character: '\ufffd'
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,25] unclosed character literal
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,40] ';' expected
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestUnicode.java:[15,76] ';' expected
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestEConv.java:[86,35] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestEConv.java:[86,36] unmappable character for encoding ASCII
[ERROR] /build/jcodings-1.0.19/test/org/jcodings/specific/TestEConv.java:[86,37] unmappable character for encoding ASCII
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

Unable to find org.jcodings.specific.BaseUTF8Encoding.mbcCaseFold

hi @lopex
the recent mail build started to fail
https://travis-ci.org/mikel/mail/jobs/435704866
https://github.com/mikel/mail

not sure if the problem is in joni or jcodings. If you have time, please take a look, thanks.

Failure/Error: Unable to find org.jcodings.specific.BaseUTF8Encoding.mbcCaseFold(BaseUTF8Encoding.java to read failed line
     
     Java::JavaLang::ArrayIndexOutOfBoundsException:
       -2
     # org.jcodings.specific.BaseUTF8Encoding.mbcCaseFold(BaseUTF8Encoding.java:152)
     # org.jcodings.specific.UTF8Encoding.mbcCaseFold(UTF8Encoding.java:22)
     # org.joni.Search.lowerCaseMatch(Search.java:42)
     # org.joni.Search.access$000(Search.java:27)
     # org.joni.Search$11.search(Search.java:439)
     # org.joni.Matcher.forwardSearchRange(Matcher.java:137)
     # org.joni.Matcher.searchCommon(Matcher.java:425)
     # org.joni.Matcher.search(Matcher.java:301)
     # org.jruby.RubyRegexp.matcherSearch(RubyRegexp.java:231)
     # org.jruby.RubyRegexp.search(RubyRegexp.java:1306)
     # org.jruby.RubyRegexp.matchPos(RubyRegexp.java:1195)
     # org.jruby.RubyRegexp.op_match(RubyRegexp.java:1113)
     # org.jruby.RubyString.op_match(RubyString.java:1656)
     # org.jruby.RubyString$INVOKER$i$1$0$op_match.call(RubyString$INVOKER$i$1$0$op_match.gen)
     # org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
     # home.travis.build.mikel.mail.lib.mail.encodings.invokeOther6:=~(/home/travis/build/mikel/mail/lib/mail/encodings.rb:125)
     # home.travis.build.mikel.mail.lib.mail.encodings.RUBY$method$value_decode$0(/home/travis/build/mikel/mail/lib/mail/encodings.rb:125)
...

warning: could not load encoding for file.encoding of MS932 in jruby

In Windows 7 , jruby 9.1.2.0, following warning occours.

jruby -we ''
C:/jruby-9.1.2.0/lib/ruby/stdlib/rubygems.rb:117: warning: could not load encoding for file.encoding of MS932, using default external

In my environment, file.encoding is MS932. But in EncodingList.java there isn't MS932.
So, please add the follwing entry.

EncodingDB.alias("MS932", "Windows-31J");

Exception happens when send email with inline attachment

Please help me ,thanks you
This exception happens at some environment,not happens at others

org.jcodings.specific.UTF8Encoding.length(UTF8Encoding.java:35)
org.jcodings.Encoding.isMbcHead(Encoding.java:469)
org.joni.ByteCodeMachine.opCClassMIXNot(ByteCodeMachine.java:810)
org.joni.ByteCodeMachine.matchAt(ByteCodeMachine.java:225)
org.joni.Matcher.matchCheck(Matcher.java:304)
org.joni.Matcher.searchInterruptible(Matcher.java:480)
org.jruby.RubyRegexp$SearchMatchTask.run(RubyRegexp.java:291)
org.jruby.RubyThread.executeBlockingTask(RubyThread.java:1065)
org.jruby.RubyRegexp.matcherSearch(RubyRegexp.java:253)
org.jruby.RubyRegexp.search19(RubyRegexp.java:1797)
org.jruby.RubyRegexp.matchPos(RubyRegexp.java:1737)
org.jruby.RubyRegexp.op_match19(RubyRegexp.java:1674)
org.jruby.RubyString.op_match19(RubyString.java:1701)
org.jruby.RubyString$INVOKER$i$1$0$op_match19.call(RubyString$INVOKER$i$1$0$op_match19.gen)
org.jruby.RubyClass.finvoke(RubyClass.java:690)
org.jruby.runtime.Helpers.invoke(Helpers.java:502)
org.jruby.RubyBasicObject.callMethod(RubyBasicObject.java:363)
org.jruby.RubyBasicObject.op_not_match(RubyBasicObject.java:2649)
org.jruby.RubyKernel.op_not_match(RubyKernel.java:2274)
org.jruby.RubyKernel$INVOKER$s$1$0$op_not_match.call(RubyKernel$INVOKER$s$1$0$op_not_match.gen)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.String$$blank?df90e91eec0fce257365c0d4598b874f104c588f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/core_ext/object/blank.rb:93)
rubyjit.String$$blank?df90e91eec0fce257365c0d4598b874f104c588f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/core_ext/object/blank.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:141)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:134)
org.jruby.ast.CallNoArgNode.interpret(CallNoArgNode.java:60)
org.jruby.ast.IfNode.interpret(IfNode.java:110)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:204)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:206)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:183)
org.jruby.RubyClass.newInstance(RubyClass.java:804)
org.jruby.RubyClass$INVOKER$i$newInstance.call(RubyClass$INVOKER$i$newInstance.gen)
org.jruby.internal.runtime.methods.JavaMethod$JavaMethodZeroOrOneOrNBlock.call(JavaMethod.java:297)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:326)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:170)
org.jruby.ast.CallOneArgNode.interpret(CallOneArgNode.java:57)
org.jruby.ast.InstAsgnNode.interpret(InstAsgnNode.java:95)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:139)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:182)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:306)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:136)
org.jruby.ast.VCallNode.interpret(VCallNode.java:88)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.ast.IfNode.interpret(IfNode.java:118)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:139)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:182)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:306)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:136)
org.jruby.ast.VCallNode.interpret(VCallNode.java:88)
org.jruby.ast.AttrAssignOneArgNode.interpret(AttrAssignOneArgNode.java:32)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:182)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:198)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:326)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:170)
org.jruby.ast.FCallOneArgNode.interpret(FCallOneArgNode.java:36)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:204)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:206)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:336)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:179)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:183)
org.jruby.RubyClass.newInstance(RubyClass.java:804)
org.jruby.RubyClass$INVOKER$i$newInstance.call(RubyClass$INVOKER$i$newInstance.gen)
org.jruby.internal.runtime.methods.JavaMethod$JavaMethodZeroOrOneOrNBlock.call(JavaMethod.java:297)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:326)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:170)
org.jruby.ast.CallOneArgNode.interpret(CallOneArgNode.java:57)
org.jruby.ast.LocalAsgnNode.interpret(LocalAsgnNode.java:123)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:225)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:214)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:346)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:204)
app.mailers.user_mailer.method__8$RUBY$send_activation_email(app/mailers/user_mailer.rb:82)
app$mailers$user_mailer$method__8$RUBY$send_activation_email.call(app$mailers$user_mailer$method__8$RUBY$send_activation_email)
org.jruby.RubyClass.finvoke(RubyClass.java:548)
org.jruby.RubyBasicObject.send19(RubyBasicObject.java:1531)
org.jruby.RubyKernel.send19(RubyKernel.java:2254)
org.jruby.RubyKernel$INVOKER$s$send19.call(RubyKernel$INVOKER$s$send19.gen)
org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:180)
org.jruby.internal.runtime.methods.AliasMethod.call(AliasMethod.java:76)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:296)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:72)
org.jruby.runtime.callsite.CachingCallSite.callVarargs(CachingCallSite.java:106)
rubyjit.AbstractController::Base$$process_action_fe0e185ac758603aa668cae6d262d7d7469130e4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb:189)
rubyjit.AbstractController::Base$$process_action_fe0e185ac758603aa668cae6d262d7d7469130e4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:101)
org.jruby.runtime.callsite.SuperCallSite.cacheAndCall(SuperCallSite.java:316)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:70)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:75)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:111)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb:18)
rubyjit$AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837$block_0$RUBY$file.call(rubyjit$AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yieldSpecificInternal(CompiledBlock19.java:117)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:92)
org.jruby.runtime.Block.yieldSpecific(Block.java:111)
org.jruby.ast.ZYieldNode.interpret(ZYieldNode.java:25)
org.jruby.ast.OrNode.interpret(OrNode.java:100)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.AndNode.interpret(AndNode.java:97)
org.jruby.ast.LocalAsgnNode.interpret(LocalAsgnNode.java:123)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:161)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:190)
org.jruby.RubyClass.finvoke(RubyClass.java:527)
org.jruby.RubyBasicObject.send19(RubyBasicObject.java:1504)
org.jruby.RubyKernel.send19(RubyKernel.java:2242)
org.jruby.RubyKernel$INVOKER$s$send19.call(RubyKernel$INVOKER$s$send19.gen)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:336)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:179)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:183)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb:80)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:336)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:179)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb:17)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:121)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:296)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:72)
org.jruby.runtime.callsite.CachingCallSite.callVarargs(CachingCallSite.java:106)
rubyjit.AbstractController::Base$$process_c0bf79cb126d3d80da3ac9c9e270859fdb78ce64780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb:136)
rubyjit.AbstractController::Base$$process_c0bf79cb126d3d80da3ac9c9e270859fdb78ce64780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:101)
org.jruby.runtime.callsite.SuperCallSite.cacheAndCall(SuperCallSite.java:316)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:70)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:75)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:111)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb:44)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:101)
org.jruby.runtime.callsite.SuperCallSite.cacheAndCall(SuperCallSite.java:316)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:70)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:75)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:111)
org.jruby.ast.ZSuperNode.interpret(ZSuperNode.java:103)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:112)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:126)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:173)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:296)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:72)
org.jruby.ast.FCallSpecialArgNode.interpret(FCallSpecialArgNode.java:45)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:112)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:164)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:286)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:81)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:85)
org.jruby.RubyClass.newInstance(RubyClass.java:825)
org.jruby.RubyClass$INVOKER$i$newInstance.call(RubyClass$INVOKER$i$newInstance.gen)
org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:180)
org.jruby.internal.runtime.methods.WrapperMethod.call(WrapperMethod.java:70)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:296)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:72)
org.jruby.ast.FCallSpecialArgNode.interpret(FCallSpecialArgNode.java:45)
org.jruby.ast.CallNoArgNode.interpret(CallNoArgNode.java:60)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:112)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:164)
org.jruby.runtime.Helpers$MethodMissingMethod.call(Helpers.java:451)
org.jruby.runtime.callsite.CachingCallSite.callMethodMissing(CachingCallSite.java:389)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:293)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:72)
app.controllers.enterprise.users_controller.chained_20_rescue_2$RUBY$SYNTHETICbatch_send_activation_email(app/controllers/enterprise/users_controller.rb:547)
app.controllers.enterprise.users_controller.block_15$RUBY$batch_send_activation_email(app/controllers/enterprise/users_controller.rb:546)
app$controllers$enterprise$users_controller$block_15$RUBY$batch_send_activation_email.call(app$controllers$enterprise$users_controller$block_15$RUBY$batch_send_activation_email)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.Block.yield(Block.java:142)
org.jruby.RubyArray.eachCommon(RubyArray.java:1606)
org.jruby.RubyArray.each(RubyArray.java:1613)
org.jruby.RubyArray$INVOKER$i$0$0$each.call(RubyArray$INVOKER$i$0$0$each.gen)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:143)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:149)
org.jruby.runtime.callsite.CachingCallSite.callVarargs(CachingCallSite.java:112)
rubyjit.ActiveRecord::Delegation$$each_e7d71e122651c1c11e7dc5d173f3e9a3a3957506780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file
(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/relation/delegation.rb:13)
rubyjit.ActiveRecord::Delegation$$each_e7d71e122651c1c11e7dc5d173f3e9a3a3957506780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/relation/delegation.rb)
rubyjit.ActiveRecord::Delegation$$each_e7d71e122651c1c11e7dc5d173f3e9a3a3957506780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/relation/delegation.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:38)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:161)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:316)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:145)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:154)
app.controllers.enterprise.users_controller.method__19$RUBY$batch_send_activation_email(app/controllers/enterprise/users_controller.rb:539)
app$controllers$enterprise$users_controller$method__19$RUBY$batch_send_activation_email.call(app$controllers$enterprise$users_controller$method__19$RUBY$batch_send_activation_email)
org.jruby.RubyClass.finvoke(RubyClass.java:527)
org.jruby.RubyBasicObject.send19(RubyBasicObject.java:1504)
org.jruby.RubyKernel.send19(RubyKernel.java:2242)
org.jruby.RubyKernel$INVOKER$s$send19.call(RubyKernel$INVOKER$s$send19.gen)
org.jruby.internal.runtime.methods.AliasMethod.call(AliasMethod.java:86)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActionController::ImplicitRender$$send_action_c0a0cbe02d94e5ea948e83bb3724d560e51fcc98780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/implicit_render.rb:4)
rubyjit.ActionController::ImplicitRender$$send_action_c0a0cbe02d94e5ea948e83bb3724d560e51fcc98780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/implicit_render.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
org.jruby.runtime.callsite.CachingCallSite.callVarargs(CachingCallSite.java:103)
rubyjit.AbstractController::Base$$process_action_fe0e185ac758603aa668cae6d262d7d7469130e4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb:189)
rubyjit.AbstractController::Base$$process_action_fe0e185ac758603aa668cae6d262d7d7469130e4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActionController::Rendering$$process_action_6871d1a0f8e98bea36fcf7ebcb0820dc51145635780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rendering.rb:10)
rubyjit.ActionController::Rendering$$process_action_6871d1a0f8e98bea36fcf7ebcb0820dc51145635780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rendering.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb:18)
rubyjit$AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837$block_0$RUBY$file.call(rubyjit$AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yieldSpecificInternal(CompiledBlock19.java:117)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:92)
org.jruby.runtime.Block.yieldSpecific(Block.java:111)
org.jruby.ast.ZYieldNode.interpret(ZYieldNode.java:25)
org.jruby.ast.OrNode.interpret(OrNode.java:100)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.AndNode.interpret(AndNode.java:97)
org.jruby.ast.LocalAsgnNode.interpret(LocalAsgnNode.java:123)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_BLOCK(ASTInterpreter.java:112)
org.jruby.runtime.Interpreted19Block.evalBlockBody(Interpreted19Block.java:206)
org.jruby.runtime.Interpreted19Block.yield(Interpreted19Block.java:157)
org.jruby.runtime.Interpreted19Block.yieldSpecific(Interpreted19Block.java:135)
org.jruby.runtime.Block.yieldSpecific(Block.java:120)
org.jruby.ast.YieldOneNode.interpret(YieldOneNode.java:35)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.evaluator.ASTInterpreter.INTERPRET_BLOCK(ASTInterpreter.java:112)
org.jruby.runtime.Interpreted19Block.evalBlockBody(Interpreted19Block.java:206)
org.jruby.runtime.Interpreted19Block.yield(Interpreted19Block.java:157)
org.jruby.runtime.Interpreted19Block.yieldSpecific(Interpreted19Block.java:130)
org.jruby.runtime.Block.yieldSpecific(Block.java:111)
app.controllers.application_controller.method__1$RUBY$set_current_user(app/controllers/application_controller.rb:25)
app$controllers$application_controller$method__1$RUBY$set_current_user.call(app$controllers$application_controller$method__1$RUBY$set_current_user)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:143)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:154)
org.jruby.ast.FCallNoArgBlockNode.interpret(FCallNoArgBlockNode.java:32)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:204)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:206)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
org.jruby.ast.FCallOneArgBlockNode.interpret(FCallOneArgBlockNode.java:34)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:161)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:190)
org.jruby.RubyClass.finvoke(RubyClass.java:527)
org.jruby.RubyBasicObject.send19(RubyBasicObject.java:1504)
org.jruby.RubyKernel.send19(RubyKernel.java:2242)
org.jruby.RubyKernel$INVOKER$s$send19.call(RubyKernel$INVOKER$s$send19.gen)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:336)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:179)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:183)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb:80)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb:17)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActionController::Rescue$$process_action_7a630a57c8989c6257ffcb6a56b0b8712805d7bb780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rescue.rb:29)
rubyjit.ActionController::Rescue$$process_action_7a630a57c8989c6257ffcb6a56b0b8712805d7bb780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rescue.rb)
rubyjit.ActionController::Rescue$$process_action_7a630a57c8989c6257ffcb6a56b0b8712805d7bb780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rescue.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActionController::Instrumentation$$process_action_1b51e08dcb869a805f73b5d5a66379748016a4a4780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/instrumentation.rb:31)
rubyjit$ActionController::Instrumentation$$process_action_1b51e08dcb869a805f73b5d5a66379748016a4a4780555837$block_0$RUBY$file.call(rubyjit$ActionController::Instrumentation$$process_action_1b51e08dcb869a805f73b5d5a66379748016a4a4780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:97)
org.jruby.runtime.Block.yieldSpecific(Block.java:120)
rubyjit.Module$$instrument_d2390a54758207f8f334c557a78450b817120911780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications.rb:159)
rubyjit$Module$$instrument_d2390a54758207f8f334c557a78450b817120911780555837$block_0$RUBY$file.call(rubyjit$Module$$instrument_d2390a54758207f8f334c557a78450b817120911780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:97)
org.jruby.runtime.Block.yieldSpecific(Block.java:120)
rubyjit.ActiveSupport::Notifications::Instrumenter$$instrument_a8044e94e1abce77a4890b701d41aa39c3ad2796780555837.chained_1_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications/instrumenter.rb:20)
rubyjit.ActiveSupport::Notifications::Instrumenter$$instrument_a8044e94e1abce77a4890b701d41aa39c3ad2796780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications/instrumenter.rb)
rubyjit.ActiveSupport::Notifications::Instrumenter$$instrument_a8044e94e1abce77a4890b701d41aa39c3ad2796780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications/instrumenter.rb:19)
rubyjit.ActiveSupport::Notifications::Instrumenter$$instrument_a8044e94e1abce77a4890b701d41aa39c3ad2796780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications/instrumenter.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:46)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:241)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:211)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:222)
rubyjit.Module$$instrument_d2390a54758207f8f334c557a78450b817120911780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications.rb:159)
rubyjit.Module$$instrument_d2390a54758207f8f334c557a78450b817120911780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:46)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:241)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:211)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:222)
rubyjit.ActionController::Instrumentation$$process_action_1b51e08dcb869a805f73b5d5a66379748016a4a4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/instrumentation.rb:30)
rubyjit.ActionController::Instrumentation$$process_action_1b51e08dcb869a805f73b5d5a66379748016a4a4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/instrumentation.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActionController::ParamsWrapper$$process_action_e31a554c9e959c0cec96aa34b5e1496a5bafc491780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/params_wrapper.rb:245)
rubyjit.ActionController::ParamsWrapper$$process_action_e31a554c9e959c0cec96aa34b5e1496a5bafc491780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/params_wrapper.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActiveRecord::Railties::ControllerRuntime$$process_action_bd8e199a71c8c263d60d12352c0d26d9f4da4b7c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/railties/controller_runtime.rb:18)
rubyjit.ActiveRecord::Railties::ControllerRuntime$$process_action_bd8e199a71c8c263d60d12352c0d26d9f4da4b7c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/railties/controller_runtime.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
org.jruby.runtime.callsite.CachingCallSite.callVarargs(CachingCallSite.java:103)
rubyjit.AbstractController::Base$$process_c0bf79cb126d3d80da3ac9c9e270859fdb78ce64780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb:136)
rubyjit.AbstractController::Base$$process_c0bf79cb126d3d80da3ac9c9e270859fdb78ce64780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb:44)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionController::Metal$$dispatch_9728565d95b6b26c460dce915f23fa7c7d21d953780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal.rb:195)
rubyjit.ActionController::Metal$$dispatch_9728565d95b6b26c460dce915f23fa7c7d21d953780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:241)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:236)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:243)
rubyjit.ActionController::RackDelegation$$dispatch_3e126930d326adba7ecef27fd750e7436d9e4ee8780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rack_delegation.rb:13)
rubyjit.ActionController::RackDelegation$$dispatch_3e126930d326adba7ecef27fd750e7436d9e4ee8780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rack_delegation.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:221)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:202)
rubyjit.ActionController::Metal$$action_c8f2731c42ba33e3c7ce3ed45c29d936ca19a3aa780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal.rb:231)
rubyjit$ActionController::Metal$$action_c8f2731c42ba33e3c7ce3ed45c29d936ca19a3aa780555837$block_0$RUBY$file.call(rubyjit$ActionController::Metal$$action_c8f2731c42ba33e3c7ce3ed45c29d936ca19a3aa780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:159)
org.jruby.runtime.CompiledBlock19.call(CompiledBlock19.java:87)
org.jruby.runtime.Block.call(Block.java:101)
org.jruby.RubyProc.call(RubyProc.java:290)
org.jruby.RubyProc.call19(RubyProc.java:271)
org.jruby.RubyProc$INVOKER$i$0$0$call19.call(RubyProc$INVOKER$i$0$0$call19.gen)
org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:210)
org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:206)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Routing::RouteSet::Dispatcher$$dispatch_5b0f1b0f4696eaf750329523f6077136b447c4be780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb:80)
rubyjit.ActionDispatch::Routing::RouteSet::Dispatcher$$dispatch_5b0f1b0f4696eaf750329523f6077136b447c4be780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:261)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:236)
rubyjit.ActionDispatch::Routing::RouteSet::Dispatcher$$call_1768a6144a2dcac8a48e06d2317d90575a3c8d15780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb:48)
rubyjit.ActionDispatch::Routing::RouteSet::Dispatcher$$call_1768a6144a2dcac8a48e06d2317d90575a3c8d15780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Journey::Router$$call_3f929fbc0a9565fe41dac1923d099b0ba7616f29780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/journey/router.rb:71)
rubyjit$ActionDispatch::Journey::Router$$call_3f929fbc0a9565fe41dac1923d099b0ba7616f29780555837$block_0$RUBY$file.call(rubyjit$ActionDispatch::Journey::Router$$call_3f929fbc0a9565fe41dac1923d099b0ba7616f29780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.Block.yield(Block.java:142)
org.jruby.RubyArray.eachCommon(RubyArray.java:1606)
org.jruby.RubyArray.each(RubyArray.java:1613)
org.jruby.RubyArray$INVOKER$i$0$0$each.call(RubyArray$INVOKER$i$0$0$each.gen)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:143)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:154)
rubyjit.ActionDispatch::Journey::Router$$call_3f929fbc0a9565fe41dac1923d099b0ba7616f29780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/journey/router.rb:59)
rubyjit.ActionDispatch::Journey::Router$$call_3f929fbc0a9565fe41dac1923d099b0ba7616f29780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/journey/router.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Routing::RouteSet$$call_5ca1b18486602a1d1a552d44226450413b254a4a780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb:655)
rubyjit.ActionDispatch::Routing::RouteSet$$call_5ca1b18486602a1d1a552d44226450413b254a4a780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ExceptionNotification::Rack$$call_62bf13b30d9cbddba2dbf4e722c8b0b0ca58e59f780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/exception_notification-4.0.1/lib/exception_notification/rack.rb:28)
rubyjit.ExceptionNotification::Rack$$call_62bf13b30d9cbddba2dbf4e722c8b0b0ca58e59f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/exception_notification-4.0.1/lib/exception_notification/rack.rb)
rubyjit.ExceptionNotification::Rack$$call_62bf13b30d9cbddba2dbf4e722c8b0b0ca58e59f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/exception_notification-4.0.1/lib/exception_notification/rack.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::ContentLength$$call_1f98100577fca9b0720095a11ffdb6a593e4b1f5780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/content_length.rb:14)
rubyjit.Rack::ContentLength$$call_1f98100577fca9b0720095a11ffdb6a593e4b1f5780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/content_length.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.SimpleCaptcha::Middleware$$call_3268f719fa60b639332ea7e81ac686cafa1947d7780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/simple_captcha-0.1.6/lib/simple_captcha/middleware.rb:20)
rubyjit.SimpleCaptcha::Middleware$$call_3268f719fa60b639332ea7e81ac686cafa1947d7780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/simple_captcha-0.1.6/lib/simple_captcha/middleware.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::ETag$$call_a8e6d33d05d3fd19b9a2da701b8cfc0accd766bc780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/etag.rb:23)
rubyjit.Rack::ETag$$call_a8e6d33d05d3fd19b9a2da701b8cfc0accd766bc780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/etag.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::ConditionalGet$$call_08ef9d0dc0dc379e953522915354fc3c71426305780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/conditionalget.rb:35)
rubyjit.Rack::ConditionalGet$$call_08ef9d0dc0dc379e953522915354fc3c71426305780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/conditionalget.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::Head$$call_36939d5e5a27ef938954bdca2f4d978f1fd604ac780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/head.rb:11)
rubyjit.Rack::Head$$call_36939d5e5a27ef938954bdca2f4d978f1fd604ac780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/head.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::ParamsParser$$call_e6d3aececf91d96f7cbc0299939c69931e041442780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/params_parser.rb:27)
rubyjit.ActionDispatch::ParamsParser$$call_e6d3aececf91d96f7cbc0299939c69931e041442780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/params_parser.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Flash$$call_d60d0cdc3bea8849b2f1ec89ec50e3677bd459b3780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/flash.rb:241)
rubyjit.ActionDispatch::Flash$$call_d60d0cdc3bea8849b2f1ec89ec50e3677bd459b3780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/flash.rb)
rubyjit.ActionDispatch::Flash$$call_d60d0cdc3bea8849b2f1ec89ec50e3677bd459b3780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/flash.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::Session::Abstract::ID$$context_e015a2cdabda8a4cdccfb8f39eef3fb27fbdbe6d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:225)
rubyjit.Rack::Session::Abstract::ID$$context_e015a2cdabda8a4cdccfb8f39eef3fb27fbdbe6d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/session/abstract/id.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::Session::Abstract::ID$$call_373ae39afc6e5efdccceb11934399ec8a50b1e62780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:220)
rubyjit.Rack::Session::Abstract::ID$$call_373ae39afc6e5efdccceb11934399ec8a50b1e62780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/session/abstract/id.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
config.initializers.session_store.method__2$RUBY$call(config/initializers/session_store.rb:16)
config$initializers$session_store$method__2$RUBY$call.call(config$initializers$session_store$method__2$RUBY$call)
config$initializers$session_store$method__2$RUBY$call.call(config$initializers$session_store$method__2$RUBY$call)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Cookies$$call_5268b6de5fe1152279fb3332789820ef814e5f76780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/cookies.rb:486)
rubyjit.ActionDispatch::Cookies$$call_5268b6de5fe1152279fb3332789820ef814e5f76780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/cookies.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActiveRecord::QueryCache$$call_f015407081112786c21c401cdb93582c994e2cf3780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/query_cache.rb:36)
rubyjit.ActiveRecord::QueryCache$$call_f015407081112786c21c401cdb93582c994e2cf3780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/query_cache.rb)
rubyjit.ActiveRecord::QueryCache$$call_f015407081112786c21c401cdb93582c994e2cf3780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/query_cache.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActiveRecord::ConnectionAdapters::ConnectionManagement$$call_db6f2290ce8395c3e09e34037f6464f9de285eca780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/connection_pool.rb:626)
rubyjit.ActiveRecord::ConnectionAdapters::ConnectionManagement$$call_db6f2290ce8395c3e09e34037f6464f9de285eca780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/connection_pool.rb)
rubyjit.ActiveRecord::ConnectionAdapters::ConnectionManagement$$call_db6f2290ce8395c3e09e34037f6464f9de285eca780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/connection_pool.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/callbacks.rb:29)
rubyjit.ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/callbacks.rb:28)
rubyjit$ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837$block_0$RUBY$file.call(rubyjit$ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yieldSpecificInternal(CompiledBlock19.java:117)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:92)
org.jruby.runtime.Block.yieldSpecific(Block.java:111)
rubyjit.ActionDispatch::Callbacks$$run__1830932903__call__callbacks_d935d7a3a28d83af2183900774b473093f768724780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb:376)
rubyjit.ActionDispatch::Callbacks$$run__1830932903__call__callbacks_d935d7a3a28d83af2183900774b473093f768724780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:161)
org.jruby.RubyClass.finvoke(RubyClass.java:527)
org.jruby.RubyBasicObject.send19(RubyBasicObject.java:1504)
org.jruby.RubyKernel.send19(RubyKernel.java:2242)
org.jruby.RubyKernel$INVOKER$s$send19.call(RubyKernel$INVOKER$s$send19.gen)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:336)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:179)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:183)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb:80)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
rubyjit.ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/callbacks.rb:27)
rubyjit.ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::RemoteIp$$call_83cb5757aed39cf2d8833789d8725c283f996ef4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/remote_ip.rb:76)
rubyjit.ActionDispatch::RemoteIp$$call_83cb5757aed39cf2d8833789d8725c283f996ef4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/remote_ip.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::DebugExceptions$$call_634a2bac57972bf9f9304521c1b53ab11bec563d780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file
(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/debug_exceptions.rb:17)
rubyjit.ActionDispatch::DebugExceptions$$call_634a2bac57972bf9f9304521c1b53ab11bec563d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/debug_exceptions.rb)
rubyjit.ActionDispatch::DebugExceptions$$call_634a2bac57972bf9f9304521c1b53ab11bec563d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/debug_exceptions.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::ShowExceptions$$call_ec8beb41fc05ca94a017739b72a4f92ad4ca19ee780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/show_exceptions.rb:30)
rubyjit.ActionDispatch::ShowExceptions$$call_ec8beb41fc05ca94a017739b72a4f92ad4ca19ee780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/show_exceptions.rb)
rubyjit.ActionDispatch::ShowExceptions$$call_ec8beb41fc05ca94a017739b72a4f92ad4ca19ee780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/show_exceptions.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rails::Rack::Logger$$call_app_7788dfaa5db422f14638cfda44b55ddf9e91fc86780555837.chained_1_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb:38)
rubyjit.Rails::Rack::Logger$$call_app_7788dfaa5db422f14638cfda44b55ddf9e91fc86780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb)
rubyjit.Rails::Rack::Logger$$call_app_7788dfaa5db422f14638cfda44b55ddf9e91fc86780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb)
rubyjit.Rails::Rack::Logger$$call_app_7788dfaa5db422f14638cfda44b55ddf9e91fc86780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:221)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:202)
rubyjit.Rails::Rack::Logger$$call_f5ea3c2b447816f27bbda4f8d4c369ba8c848b49780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb:21)
rubyjit$Rails::Rack::Logger$$call_f5ea3c2b447816f27bbda4f8d4c369ba8c848b49780555837$block_0$RUBY$file.call(rubyjit$Rails::Rack::Logger$$call_f5ea3c2b447816f27bbda4f8d4c369ba8c848b49780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:97)
org.jruby.runtime.Block.yieldSpecific(Block.java:120)
rubyjit.ActiveSupport::TaggedLogging$$tagged_3be98ffdd700fc05cc62d040cb7c11546c56442f780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb:67)
rubyjit$ActiveSupport::TaggedLogging$$tagged_3be98ffdd700fc05cc62d040cb7c11546c56442f780555837$block_0$RUBY$file.call(rubyjit$ActiveSupport::TaggedLogging$$tagged_3be98ffdd700fc05cc62d040cb7c11546c56442f780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:97)
org.jruby.runtime.Block.yieldSpecific(Block.java:120)
rubyjit.ActiveSupport::TaggedLogging::Formatter$$tagged_335f737d24beedb0bf66bfab13b49d8e362852a7780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb:25)
rubyjit.ActiveSupport::TaggedLogging::Formatter$$tagged_335f737d24beedb0bf66bfab13b49d8e362852a7780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb)
rubyjit.ActiveSupport::TaggedLogging::Formatter$$tagged_335f737d24beedb0bf66bfab13b49d8e362852a7780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
org.jruby.runtime.callsite.CachingCallSite.callVarargsIter(CachingCallSite.java:123)
rubyjit.ActiveSupport::TaggedLogging$$tagged_3be98ffdd700fc05cc62d040cb7c11546c56442f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb:67)
rubyjit.ActiveSupport::TaggedLogging$$tagged_3be98ffdd700fc05cc62d040cb7c11546c56442f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
rubyjit.Rails::Rack::Logger$$call_f5ea3c2b447816f27bbda4f8d4c369ba8c848b49780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb:21)
rubyjit.Rails::Rack::Logger$$call_f5ea3c2b447816f27bbda4f8d4c369ba8c848b49780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::RequestId$$call_b0ac2c6b1094379fddac9746051476518e86ce6a780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/request_id.rb:21)
rubyjit.ActionDispatch::RequestId$$call_b0ac2c6b1094379fddac9746051476518e86ce6a780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/request_id.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::MethodOverride$$call_2588c1776d95cdaf230b8964421d60b7d9464ca9780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/methodoverride.rb:21)
rubyjit.Rack::MethodOverride$$call_2588c1776d95cdaf230b8964421d60b7d9464ca9780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/methodoverride.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::Runtime$$call_edc82c8d3e91c428b70e1709944ce0f078554e75780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/runtime.rb:17)
rubyjit.Rack::Runtime$$call_edc82c8d3e91c428b70e1709944ce0f078554e75780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/runtime.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActiveSupport::Cache::Strategy::LocalCache::Middleware$$call_608baa5590253866531289d04db4e797559599b8780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/cache/strategy/local_cache.rb:83)
rubyjit.ActiveSupport::Cache::Strategy::LocalCache::Middleware$$call_608baa5590253866531289d04db4e797559599b8780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/cache/strategy/local_cache.rb)
rubyjit.ActiveSupport::Cache::Strategy::LocalCache::Middleware$$call_608baa5590253866531289d04db4e797559599b8780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/cache/strategy/local_cache.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rails::Engine$$call_1a34e71450b46bd98492ab7d183452648171777d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/engine.rb:511)
rubyjit.Rails::Engine$$call_1a34e71450b46bd98492ab7d183452648171777d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/engine.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
rubyjit.Rails::Application$$call_aded50d0f7933444c54f3bf3917984b0e9e4ce50780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/application.rb:97)
rubyjit.Rails::Application$$call_aded50d0f7933444c54f3bf3917984b0e9e4ce50780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/application.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::Handler::Servlet$$call_962596486a78eb92b0f724aa0f060cd6a1315df4780555837.file(file:/home/q/system/byod_cloud/tianji-1.9.15.10/WEB-INF/lib/gems-gems-jruby-rack-1.1.14-lib-jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22)
rubyjit.Rack::Handler::Servlet$$call_962596486a78eb92b0f724aa0f060cd6a1315df4780555837.file(file:/home/q/system/byod_cloud/tianji-1.9.15.10/WEB-INF/lib/gems-gems-jruby-rack-1.1.14-lib-jruby-rack-1.1.14.jar!/rack/handler/servlet.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.RubyClass.finvoke(RubyClass.java:690)
org.jruby.runtime.Helpers.invoke(Helpers.java:502)
org.jruby.RubyBasicObject.callMethod(RubyBasicObject.java:363)
org.jruby.javasupport.JavaEmbedUtils$1.callMethod(JavaEmbedUtils.java:143)
org.jruby.rack.DefaultRackApplication.call(DefaultRackApplication.java:64)
org.jruby.rack.AbstractRackDispatcher.process(AbstractRackDispatcher.java:33)
org.jruby.rack.AbstractFilter.doFilter(AbstractFilter.java:66)
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501)
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:950)
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408)
org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1040)
org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:607)
org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:313)
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
java.lang.Thread.run(Thread.java:744)

Dec 29, 2014 1:37:58 AM org.apache.catalina.core.ApplicationContext log
INFO: E, [2014-12-29T01:37:58.975000 #2295] ERROR -- : -1

Dec 29, 2014 1:37:58 AM org.apache.catalina.core.ApplicationContext log
INFO: E, [2014-12-29T01:37:58.996000 #2295] ERROR -- : org.jcodings.specific.UTF8Encoding.length(UTF8Encoding.java:35)
org.jcodings.Encoding.isMbcHead(Encoding.java:469)
org.joni.ByteCodeMachine.opCClassMIXNot(ByteCodeMachine.java:810)
org.joni.ByteCodeMachine.matchAt(ByteCodeMachine.java:225)
org.joni.Matcher.matchCheck(Matcher.java:304)
org.joni.Matcher.searchInterruptible(Matcher.java:480)
org.jruby.RubyRegexp$SearchMatchTask.run(RubyRegexp.java:291)
org.jruby.RubyThread.executeBlockingTask(RubyThread.java:1065)
org.jruby.RubyRegexp.matcherSearch(RubyRegexp.java:253)
org.jruby.RubyRegexp.search19(RubyRegexp.java:1797)
org.jruby.RubyRegexp.matchPos(RubyRegexp.java:1737)
org.jruby.RubyRegexp.op_match19(RubyRegexp.java:1674)
org.jruby.RubyString.op_match19(RubyString.java:1701)
org.jruby.RubyString$INVOKER$i$1$0$op_match19.call(RubyString$INVOKER$i$1$0$op_match19.gen)
org.jruby.RubyClass.finvoke(RubyClass.java:690)
org.jruby.runtime.Helpers.invoke(Helpers.java:502)
org.jruby.RubyBasicObject.callMethod(RubyBasicObject.java:363)
org.jruby.RubyBasicObject.op_not_match(RubyBasicObject.java:2649)
org.jruby.RubyKernel.op_not_match(RubyKernel.java:2274)
org.jruby.RubyKernel$INVOKER$s$1$0$op_not_match.call(RubyKernel$INVOKER$s$1$0$op_not_match.gen)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.String$$blank?df90e91eec0fce257365c0d4598b874f104c588f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/core_ext/object/blank.rb:93)
rubyjit.String$$blank?df90e91eec0fce257365c0d4598b874f104c588f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/core_ext/object/blank.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:141)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:134)
org.jruby.ast.CallNoArgNode.interpret(CallNoArgNode.java:60)
org.jruby.ast.IfNode.interpret(IfNode.java:110)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:204)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:206)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:183)
org.jruby.RubyClass.newInstance(RubyClass.java:804)
org.jruby.RubyClass$INVOKER$i$newInstance.call(RubyClass$INVOKER$i$newInstance.gen)
org.jruby.internal.runtime.methods.JavaMethod$JavaMethodZeroOrOneOrNBlock.call(JavaMethod.java:297)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
org.jruby.ast.CallOneArgNode.interpret(CallOneArgNode.java:57)
org.jruby.ast.InstAsgnNode.interpret(InstAsgnNode.java:95)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:139)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:182)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:134)
org.jruby.ast.VCallNode.interpret(VCallNode.java:88)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.ast.IfNode.interpret(IfNode.java:118)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:139)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:182)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:134)
org.jruby.ast.VCallNode.interpret(VCallNode.java:88)
org.jruby.ast.AttrAssignOneArgNode.interpret(AttrAssignOneArgNode.java:32)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:182)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:198)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
org.jruby.ast.FCallOneArgNode.interpret(FCallOneArgNode.java:36)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:204)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:206)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:183)
org.jruby.RubyClass.newInstance(RubyClass.java:804)
org.jruby.RubyClass$INVOKER$i$newInstance.call(RubyClass$INVOKER$i$newInstance.gen)
org.jruby.internal.runtime.methods.JavaMethod$JavaMethodZeroOrOneOrNBlock.call(JavaMethod.java:297)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
org.jruby.ast.CallOneArgNode.interpret(CallOneArgNode.java:57)
org.jruby.ast.LocalAsgnNode.interpret(LocalAsgnNode.java:123)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:225)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:214)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:202)
app.mailers.user_mailer.method__8$RUBY$send_activation_email(app/mailers/user_mailer.rb:82)
app$mailers$user_mailer$method__8$RUBY$send_activation_email.call(app$mailers$user_mailer$method__8$RUBY$send_activation_email)
org.jruby.RubyClass.finvoke(RubyClass.java:548)
org.jruby.RubyBasicObject.send19(RubyBasicObject.java:1531)
org.jruby.RubyKernel.send19(RubyKernel.java:2254)
org.jruby.RubyKernel$INVOKER$s$send19.call(RubyKernel$INVOKER$s$send19.gen)
org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:180)
org.jruby.internal.runtime.methods.AliasMethod.call(AliasMethod.java:76)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:296)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:72)
org.jruby.runtime.callsite.CachingCallSite.callVarargs(CachingCallSite.java:106)
rubyjit.AbstractController::Base$$process_action_fe0e185ac758603aa668cae6d262d7d7469130e4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb:189)
rubyjit.AbstractController::Base$$process_action_fe0e185ac758603aa668cae6d262d7d7469130e4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:101)
org.jruby.runtime.callsite.SuperCallSite.cacheAndCall(SuperCallSite.java:316)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:70)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:75)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:111)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb:18)
rubyjit$AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837$block_0$RUBY$file.call(rubyjit$AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yieldSpecificInternal(CompiledBlock19.java:117)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:92)
org.jruby.runtime.Block.yieldSpecific(Block.java:111)
org.jruby.ast.ZYieldNode.interpret(ZYieldNode.java:25)
org.jruby.ast.OrNode.interpret(OrNode.java:100)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.AndNode.interpret(AndNode.java:97)
org.jruby.ast.LocalAsgnNode.interpret(LocalAsgnNode.java:123)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:161)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:190)
org.jruby.RubyClass.finvoke(RubyClass.java:527)
org.jruby.RubyBasicObject.send19(RubyBasicObject.java:1504)
org.jruby.RubyKernel.send19(RubyKernel.java:2242)
org.jruby.RubyKernel$INVOKER$s$send19.call(RubyKernel$INVOKER$s$send19.gen)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:336)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:179)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:183)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb:80)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:336)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:179)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb:17)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:121)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:296)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:72)
org.jruby.runtime.callsite.CachingCallSite.callVarargs(CachingCallSite.java:106)
rubyjit.AbstractController::Base$$process_c0bf79cb126d3d80da3ac9c9e270859fdb78ce64780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb:136)
rubyjit.AbstractController::Base$$process_c0bf79cb126d3d80da3ac9c9e270859fdb78ce64780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:101)
org.jruby.runtime.callsite.SuperCallSite.cacheAndCall(SuperCallSite.java:316)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:70)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:75)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:111)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb:44)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:101)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:68)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:75)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:111)
org.jruby.ast.ZSuperNode.interpret(ZSuperNode.java:103)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:112)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:126)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:173)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:296)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:72)
org.jruby.ast.FCallSpecialArgNode.interpret(FCallSpecialArgNode.java:45)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:112)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:164)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:286)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:81)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:85)
org.jruby.RubyClass.newInstance(RubyClass.java:825)
org.jruby.RubyClass$INVOKER$i$newInstance.call(RubyClass$INVOKER$i$newInstance.gen)
org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:180)
org.jruby.internal.runtime.methods.WrapperMethod.call(WrapperMethod.java:70)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:296)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:72)
org.jruby.ast.FCallSpecialArgNode.interpret(FCallSpecialArgNode.java:45)
org.jruby.ast.CallNoArgNode.interpret(CallNoArgNode.java:60)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:112)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:164)
org.jruby.runtime.Helpers$MethodMissingMethod.call(Helpers.java:451)
org.jruby.runtime.callsite.CachingCallSite.callMethodMissing(CachingCallSite.java:389)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:293)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:72)
app.controllers.enterprise.users_controller.chained_20_rescue_2$RUBY$SYNTHETICbatch_send_activation_email(app/controllers/enterprise/users_controller.rb:547)
app.controllers.enterprise.users_controller.block_15$RUBY$batch_send_activation_email(app/controllers/enterprise/users_controller.rb:546)
app$controllers$enterprise$users_controller$block_15$RUBY$batch_send_activation_email.call(app$controllers$enterprise$users_controller$block_15$RUBY$batch_send_activation_email)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.Block.yield(Block.java:142)
org.jruby.RubyArray.eachCommon(RubyArray.java:1606)
org.jruby.RubyArray.each(RubyArray.java:1613)
org.jruby.RubyArray$INVOKER$i$0$0$each.call(RubyArray$INVOKER$i$0$0$each.gen)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:143)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:149)
org.jruby.runtime.callsite.CachingCallSite.callVarargs(CachingCallSite.java:112)
rubyjit.ActiveRecord::Delegation$$each_e7d71e122651c1c11e7dc5d173f3e9a3a3957506780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file
(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/relation/delegation.rb:13)
rubyjit.ActiveRecord::Delegation$$each_e7d71e122651c1c11e7dc5d173f3e9a3a3957506780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/relation/delegation.rb)
rubyjit.ActiveRecord::Delegation$$each_e7d71e122651c1c11e7dc5d173f3e9a3a3957506780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/relation/delegation.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:38)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:161)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:143)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:154)
app.controllers.enterprise.users_controller.method__19$RUBY$batch_send_activation_email(app/controllers/enterprise/users_controller.rb:539)
app$controllers$enterprise$users_controller$method__19$RUBY$batch_send_activation_email.call(app$controllers$enterprise$users_controller$method__19$RUBY$batch_send_activation_email)
org.jruby.RubyClass.finvoke(RubyClass.java:527)
org.jruby.RubyBasicObject.send19(RubyBasicObject.java:1504)
org.jruby.RubyKernel.send19(RubyKernel.java:2242)
org.jruby.RubyKernel$INVOKER$s$send19.call(RubyKernel$INVOKER$s$send19.gen)
org.jruby.internal.runtime.methods.AliasMethod.call(AliasMethod.java:86)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActionController::ImplicitRender$$send_action_c0a0cbe02d94e5ea948e83bb3724d560e51fcc98780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/implicit_render.rb:4)
rubyjit.ActionController::ImplicitRender$$send_action_c0a0cbe02d94e5ea948e83bb3724d560e51fcc98780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/implicit_render.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:326)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:170)
org.jruby.runtime.callsite.CachingCallSite.callVarargs(CachingCallSite.java:103)
rubyjit.AbstractController::Base$$process_action_fe0e185ac758603aa668cae6d262d7d7469130e4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb:189)
rubyjit.AbstractController::Base$$process_action_fe0e185ac758603aa668cae6d262d7d7469130e4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActionController::Rendering$$process_action_6871d1a0f8e98bea36fcf7ebcb0820dc51145635780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rendering.rb:10)
rubyjit.ActionController::Rendering$$process_action_6871d1a0f8e98bea36fcf7ebcb0820dc51145635780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rendering.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.cacheAndCall(SuperCallSite.java:366)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:192)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb:18)
rubyjit$AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837$block_0$RUBY$file.call(rubyjit$AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yieldSpecificInternal(CompiledBlock19.java:117)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:92)
org.jruby.runtime.Block.yieldSpecific(Block.java:111)
org.jruby.ast.ZYieldNode.interpret(ZYieldNode.java:25)
org.jruby.ast.OrNode.interpret(OrNode.java:100)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.AndNode.interpret(AndNode.java:97)
org.jruby.ast.LocalAsgnNode.interpret(LocalAsgnNode.java:123)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_BLOCK(ASTInterpreter.java:112)
org.jruby.runtime.Interpreted19Block.evalBlockBody(Interpreted19Block.java:206)
org.jruby.runtime.Interpreted19Block.yield(Interpreted19Block.java:157)
org.jruby.runtime.Interpreted19Block.yieldSpecific(Interpreted19Block.java:135)
org.jruby.runtime.Block.yieldSpecific(Block.java:120)
org.jruby.ast.YieldOneNode.interpret(YieldOneNode.java:35)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.evaluator.ASTInterpreter.INTERPRET_BLOCK(ASTInterpreter.java:112)
org.jruby.runtime.Interpreted19Block.evalBlockBody(Interpreted19Block.java:206)
org.jruby.runtime.Interpreted19Block.yield(Interpreted19Block.java:157)
org.jruby.runtime.Interpreted19Block.yieldSpecific(Interpreted19Block.java:130)
org.jruby.runtime.Block.yieldSpecific(Block.java:111)
app.controllers.application_controller.method__1$RUBY$set_current_user(app/controllers/application_controller.rb:25)
app$controllers$application_controller$method__1$RUBY$set_current_user.call(app$controllers$application_controller$method__1$RUBY$set_current_user)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:143)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:154)
org.jruby.ast.FCallNoArgBlockNode.interpret(FCallNoArgBlockNode.java:32)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.IfNode.interpret(IfNode.java:116)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:204)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:206)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
org.jruby.ast.FCallOneArgBlockNode.interpret(FCallOneArgBlockNode.java:34)
org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)
org.jruby.ast.BlockNode.interpret(BlockNode.java:71)
org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:74)
org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:161)
org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:190)
org.jruby.RubyClass.finvoke(RubyClass.java:527)
org.jruby.RubyBasicObject.send19(RubyBasicObject.java:1504)
org.jruby.RubyKernel.send19(RubyKernel.java:2242)
org.jruby.RubyKernel$INVOKER$s$send19.call(RubyKernel$INVOKER$s$send19.gen)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:336)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:179)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:183)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb:80)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:336)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:179)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb:17)
rubyjit.AbstractController::Callbacks$$process_action_c937987706d79aa9d98b4e0c9ebdacfc3d35e83c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/callbacks.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActionController::Rescue$$process_action_7a630a57c8989c6257ffcb6a56b0b8712805d7bb780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rescue.rb:29)
rubyjit.ActionController::Rescue$$process_action_7a630a57c8989c6257ffcb6a56b0b8712805d7bb780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rescue.rb)
rubyjit.ActionController::Rescue$$process_action_7a630a57c8989c6257ffcb6a56b0b8712805d7bb780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rescue.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActionController::Instrumentation$$process_action_1b51e08dcb869a805f73b5d5a66379748016a4a4780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/instrumentation.rb:31)
rubyjit$ActionController::Instrumentation$$process_action_1b51e08dcb869a805f73b5d5a66379748016a4a4780555837$block_0$RUBY$file.call(rubyjit$ActionController::Instrumentation$$process_action_1b51e08dcb869a805f73b5d5a66379748016a4a4780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:97)
org.jruby.runtime.Block.yieldSpecific(Block.java:120)
rubyjit.Module$$instrument_d2390a54758207f8f334c557a78450b817120911780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications.rb:159)
rubyjit$Module$$instrument_d2390a54758207f8f334c557a78450b817120911780555837$block_0$RUBY$file.call(rubyjit$Module$$instrument_d2390a54758207f8f334c557a78450b817120911780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:97)
org.jruby.runtime.Block.yieldSpecific(Block.java:120)
rubyjit.ActiveSupport::Notifications::Instrumenter$$instrument_a8044e94e1abce77a4890b701d41aa39c3ad2796780555837.chained_1_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications/instrumenter.rb:20)
rubyjit.ActiveSupport::Notifications::Instrumenter$$instrument_a8044e94e1abce77a4890b701d41aa39c3ad2796780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications/instrumenter.rb)
rubyjit.ActiveSupport::Notifications::Instrumenter$$instrument_a8044e94e1abce77a4890b701d41aa39c3ad2796780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications/instrumenter.rb:19)
rubyjit.ActiveSupport::Notifications::Instrumenter$$instrument_a8044e94e1abce77a4890b701d41aa39c3ad2796780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications/instrumenter.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:46)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:241)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:211)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:222)
rubyjit.Module$$instrument_d2390a54758207f8f334c557a78450b817120911780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications.rb:159)
rubyjit.Module$$instrument_d2390a54758207f8f334c557a78450b817120911780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/notifications.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:46)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:241)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:211)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:222)
rubyjit.ActionController::Instrumentation$$process_action_1b51e08dcb869a805f73b5d5a66379748016a4a4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/instrumentation.rb:30)
rubyjit.ActionController::Instrumentation$$process_action_1b51e08dcb869a805f73b5d5a66379748016a4a4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/instrumentation.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActionController::ParamsWrapper$$process_action_e31a554c9e959c0cec96aa34b5e1496a5bafc491780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/params_wrapper.rb:245)
rubyjit.ActionController::ParamsWrapper$$process_action_e31a554c9e959c0cec96aa34b5e1496a5bafc491780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/params_wrapper.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.ActiveRecord::Railties::ControllerRuntime$$process_action_bd8e199a71c8c263d60d12352c0d26d9f4da4b7c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/railties/controller_runtime.rb:18)
rubyjit.ActiveRecord::Railties::ControllerRuntime$$process_action_bd8e199a71c8c263d60d12352c0d26d9f4da4b7c780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/railties/controller_runtime.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:326)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:170)
org.jruby.runtime.callsite.CachingCallSite.callVarargs(CachingCallSite.java:103)
rubyjit.AbstractController::Base$$process_c0bf79cb126d3d80da3ac9c9e270859fdb78ce64780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb:136)
rubyjit.AbstractController::Base$$process_c0bf79cb126d3d80da3ac9c9e270859fdb78ce64780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/base.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.cacheAndCall(SuperCallSite.java:366)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:192)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
org.jruby.runtime.callsite.SuperCallSite.callVarargs(SuperCallSite.java:108)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb:44)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb)
rubyjit.AbstractController::Rendering$$process_87df28e907a24a5015d6a2129618077def9c2ab6780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/abstract_controller/rendering.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionController::Metal$$dispatch_9728565d95b6b26c460dce915f23fa7c7d21d953780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal.rb:195)
rubyjit.ActionController::Metal$$dispatch_9728565d95b6b26c460dce915f23fa7c7d21d953780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:241)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:236)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:243)
rubyjit.ActionController::RackDelegation$$dispatch_3e126930d326adba7ecef27fd750e7436d9e4ee8780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rack_delegation.rb:13)
rubyjit.ActionController::RackDelegation$$dispatch_3e126930d326adba7ecef27fd750e7436d9e4ee8780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal/rack_delegation.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:221)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:202)
rubyjit.ActionController::Metal$$action_c8f2731c42ba33e3c7ce3ed45c29d936ca19a3aa780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_controller/metal.rb:231)
rubyjit$ActionController::Metal$$action_c8f2731c42ba33e3c7ce3ed45c29d936ca19a3aa780555837$block_0$RUBY$file.call(rubyjit$ActionController::Metal$$action_c8f2731c42ba33e3c7ce3ed45c29d936ca19a3aa780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:159)
org.jruby.runtime.CompiledBlock19.call(CompiledBlock19.java:87)
org.jruby.runtime.Block.call(Block.java:101)
org.jruby.RubyProc.call(RubyProc.java:290)
org.jruby.RubyProc.call19(RubyProc.java:271)
org.jruby.RubyProc$INVOKER$i$0$0$call19.call(RubyProc$INVOKER$i$0$0$call19.gen)
org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:210)
org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:206)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Routing::RouteSet::Dispatcher$$dispatch_5b0f1b0f4696eaf750329523f6077136b447c4be780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb:80)
rubyjit.ActionDispatch::Routing::RouteSet::Dispatcher$$dispatch_5b0f1b0f4696eaf750329523f6077136b447c4be780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:261)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:236)
rubyjit.ActionDispatch::Routing::RouteSet::Dispatcher$$call_1768a6144a2dcac8a48e06d2317d90575a3c8d15780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb:48)
rubyjit.ActionDispatch::Routing::RouteSet::Dispatcher$$call_1768a6144a2dcac8a48e06d2317d90575a3c8d15780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Journey::Router$$call_3f929fbc0a9565fe41dac1923d099b0ba7616f29780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/journey/router.rb:71)
rubyjit$ActionDispatch::Journey::Router$$call_3f929fbc0a9565fe41dac1923d099b0ba7616f29780555837$block_0$RUBY$file.call(rubyjit$ActionDispatch::Journey::Router$$call_3f929fbc0a9565fe41dac1923d099b0ba7616f29780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.Block.yield(Block.java:142)
org.jruby.RubyArray.eachCommon(RubyArray.java:1606)
org.jruby.RubyArray.each(RubyArray.java:1613)
org.jruby.RubyArray$INVOKER$i$0$0$each.call(RubyArray$INVOKER$i$0$0$each.gen)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:143)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:154)
rubyjit.ActionDispatch::Journey::Router$$call_3f929fbc0a9565fe41dac1923d099b0ba7616f29780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/journey/router.rb:59)
rubyjit.ActionDispatch::Journey::Router$$call_3f929fbc0a9565fe41dac1923d099b0ba7616f29780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/journey/router.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Routing::RouteSet$$call_5ca1b18486602a1d1a552d44226450413b254a4a780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb:655)
rubyjit.ActionDispatch::Routing::RouteSet$$call_5ca1b18486602a1d1a552d44226450413b254a4a780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/routing/route_set.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ExceptionNotification::Rack$$call_62bf13b30d9cbddba2dbf4e722c8b0b0ca58e59f780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/exception_notification-4.0.1/lib/exception_notification/rack.rb:28)
rubyjit.ExceptionNotification::Rack$$call_62bf13b30d9cbddba2dbf4e722c8b0b0ca58e59f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/exception_notification-4.0.1/lib/exception_notification/rack.rb)
rubyjit.ExceptionNotification::Rack$$call_62bf13b30d9cbddba2dbf4e722c8b0b0ca58e59f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/exception_notification-4.0.1/lib/exception_notification/rack.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::ContentLength$$call_1f98100577fca9b0720095a11ffdb6a593e4b1f5780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/content_length.rb:14)
rubyjit.Rack::ContentLength$$call_1f98100577fca9b0720095a11ffdb6a593e4b1f5780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/content_length.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.SimpleCaptcha::Middleware$$call_3268f719fa60b639332ea7e81ac686cafa1947d7780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/simple_captcha-0.1.6/lib/simple_captcha/middleware.rb:20)
rubyjit.SimpleCaptcha::Middleware$$call_3268f719fa60b639332ea7e81ac686cafa1947d7780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/simple_captcha-0.1.6/lib/simple_captcha/middleware.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::ETag$$call_a8e6d33d05d3fd19b9a2da701b8cfc0accd766bc780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/etag.rb:23)
rubyjit.Rack::ETag$$call_a8e6d33d05d3fd19b9a2da701b8cfc0accd766bc780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/etag.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::ConditionalGet$$call_08ef9d0dc0dc379e953522915354fc3c71426305780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/conditionalget.rb:35)
rubyjit.Rack::ConditionalGet$$call_08ef9d0dc0dc379e953522915354fc3c71426305780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/conditionalget.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::Head$$call_36939d5e5a27ef938954bdca2f4d978f1fd604ac780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/head.rb:11)
rubyjit.Rack::Head$$call_36939d5e5a27ef938954bdca2f4d978f1fd604ac780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/head.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::ParamsParser$$call_e6d3aececf91d96f7cbc0299939c69931e041442780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/params_parser.rb:27)
rubyjit.ActionDispatch::ParamsParser$$call_e6d3aececf91d96f7cbc0299939c69931e041442780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/params_parser.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Flash$$call_d60d0cdc3bea8849b2f1ec89ec50e3677bd459b3780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/flash.rb:241)
rubyjit.ActionDispatch::Flash$$call_d60d0cdc3bea8849b2f1ec89ec50e3677bd459b3780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/flash.rb)
rubyjit.ActionDispatch::Flash$$call_d60d0cdc3bea8849b2f1ec89ec50e3677bd459b3780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/flash.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::Session::Abstract::ID$$context_e015a2cdabda8a4cdccfb8f39eef3fb27fbdbe6d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:225)
rubyjit.Rack::Session::Abstract::ID$$context_e015a2cdabda8a4cdccfb8f39eef3fb27fbdbe6d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/session/abstract/id.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::Session::Abstract::ID$$call_373ae39afc6e5efdccceb11934399ec8a50b1e62780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:220)
rubyjit.Rack::Session::Abstract::ID$$call_373ae39afc6e5efdccceb11934399ec8a50b1e62780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/session/abstract/id.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
config.initializers.session_store.method__2$RUBY$call(config/initializers/session_store.rb:16)
config$initializers$session_store$method__2$RUBY$call.call(config$initializers$session_store$method__2$RUBY$call)
config$initializers$session_store$method__2$RUBY$call.call(config$initializers$session_store$method__2$RUBY$call)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Cookies$$call_5268b6de5fe1152279fb3332789820ef814e5f76780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/cookies.rb:486)
rubyjit.ActionDispatch::Cookies$$call_5268b6de5fe1152279fb3332789820ef814e5f76780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/cookies.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActiveRecord::QueryCache$$call_f015407081112786c21c401cdb93582c994e2cf3780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/query_cache.rb:36)
rubyjit.ActiveRecord::QueryCache$$call_f015407081112786c21c401cdb93582c994e2cf3780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/query_cache.rb)
rubyjit.ActiveRecord::QueryCache$$call_f015407081112786c21c401cdb93582c994e2cf3780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/query_cache.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActiveRecord::ConnectionAdapters::ConnectionManagement$$call_db6f2290ce8395c3e09e34037f6464f9de285eca780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/connection_pool.rb:626)
rubyjit.ActiveRecord::ConnectionAdapters::ConnectionManagement$$call_db6f2290ce8395c3e09e34037f6464f9de285eca780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/connection_pool.rb)
rubyjit.ActiveRecord::ConnectionAdapters::ConnectionManagement$$call_db6f2290ce8395c3e09e34037f6464f9de285eca780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activerecord-4.0.0/lib/active_record/connection_adapters/abstract/connection_pool.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/callbacks.rb:29)
rubyjit.ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/callbacks.rb:28)
rubyjit$ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837$block_0$RUBY$file.call(rubyjit$ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yieldSpecificInternal(CompiledBlock19.java:117)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:92)
org.jruby.runtime.Block.yieldSpecific(Block.java:111)
rubyjit.ActionDispatch::Callbacks$$run__1830932903__call__callbacks_d935d7a3a28d83af2183900774b473093f768724780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb:376)
rubyjit.ActionDispatch::Callbacks$$run__1830932903__call__callbacks_d935d7a3a28d83af2183900774b473093f768724780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:161)
org.jruby.RubyClass.finvoke(RubyClass.java:527)
org.jruby.RubyBasicObject.send19(RubyBasicObject.java:1504)
org.jruby.RubyKernel.send19(RubyKernel.java:2242)
org.jruby.RubyKernel$INVOKER$s$send19.call(RubyKernel$INVOKER$s$send19.gen)
org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:336)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:179)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:183)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb:80)
rubyjit.ActiveSupport::Callbacks$$run_callbacks_4e8cb34ee8bb813f91f5e9b4c70d5715c57fe1bf780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
rubyjit.ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/callbacks.rb:27)
rubyjit.ActionDispatch::Callbacks$$call_db125fe0ff4368261b832b51e3e4be28a3166ba0780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/callbacks.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::RemoteIp$$call_83cb5757aed39cf2d8833789d8725c283f996ef4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/remote_ip.rb:76)
rubyjit.ActionDispatch::RemoteIp$$call_83cb5757aed39cf2d8833789d8725c283f996ef4780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/remote_ip.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::DebugExceptions$$call_634a2bac57972bf9f9304521c1b53ab11bec563d780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file
(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/debug_exceptions.rb:17)
rubyjit.ActionDispatch::DebugExceptions$$call_634a2bac57972bf9f9304521c1b53ab11bec563d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/debug_exceptions.rb)
rubyjit.ActionDispatch::DebugExceptions$$call_634a2bac57972bf9f9304521c1b53ab11bec563d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/debug_exceptions.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::ShowExceptions$$call_ec8beb41fc05ca94a017739b72a4f92ad4ca19ee780555837.chained_0_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/show_exceptions.rb:30)
rubyjit.ActionDispatch::ShowExceptions$$call_ec8beb41fc05ca94a017739b72a4f92ad4ca19ee780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/show_exceptions.rb)
rubyjit.ActionDispatch::ShowExceptions$$call_ec8beb41fc05ca94a017739b72a4f92ad4ca19ee780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/show_exceptions.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rails::Rack::Logger$$call_app_7788dfaa5db422f14638cfda44b55ddf9e91fc86780555837.chained_1_rescue_1$RUBY$SYNTHETIC__file__(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb:38)
rubyjit.Rails::Rack::Logger$$call_app_7788dfaa5db422f14638cfda44b55ddf9e91fc86780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb)
rubyjit.Rails::Rack::Logger$$call_app_7788dfaa5db422f14638cfda44b55ddf9e91fc86780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb)
rubyjit.Rails::Rack::Logger$$call_app_7788dfaa5db422f14638cfda44b55ddf9e91fc86780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:221)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:202)
rubyjit.Rails::Rack::Logger$$call_f5ea3c2b447816f27bbda4f8d4c369ba8c848b49780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb:21)
rubyjit$Rails::Rack::Logger$$call_f5ea3c2b447816f27bbda4f8d4c369ba8c848b49780555837$block_0$RUBY$file.call(rubyjit$Rails::Rack::Logger$$call_f5ea3c2b447816f27bbda4f8d4c369ba8c848b49780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:97)
org.jruby.runtime.Block.yieldSpecific(Block.java:120)
rubyjit.ActiveSupport::TaggedLogging$$tagged_3be98ffdd700fc05cc62d040cb7c11546c56442f780555837.block_0$RUBY$file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb:67)
rubyjit$ActiveSupport::TaggedLogging$$tagged_3be98ffdd700fc05cc62d040cb7c11546c56442f780555837$block_0$RUBY$file.call(rubyjit$ActiveSupport::TaggedLogging$$tagged_3be98ffdd700fc05cc62d040cb7c11546c56442f780555837$block_0$RUBY$file)
org.jruby.runtime.CompiledBlock19.yield(CompiledBlock19.java:135)
org.jruby.runtime.CompiledBlock19.yieldSpecific(CompiledBlock19.java:97)
org.jruby.runtime.Block.yieldSpecific(Block.java:120)
rubyjit.ActiveSupport::TaggedLogging::Formatter$$tagged_335f737d24beedb0bf66bfab13b49d8e362852a7780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb:25)
rubyjit.ActiveSupport::TaggedLogging::Formatter$$tagged_335f737d24beedb0bf66bfab13b49d8e362852a7780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb)
rubyjit.ActiveSupport::TaggedLogging::Formatter$$tagged_335f737d24beedb0bf66bfab13b49d8e362852a7780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
org.jruby.runtime.callsite.CachingCallSite.callVarargsIter(CachingCallSite.java:123)
rubyjit.ActiveSupport::TaggedLogging$$tagged_3be98ffdd700fc05cc62d040cb7c11546c56442f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb:67)
rubyjit.ActiveSupport::TaggedLogging$$tagged_3be98ffdd700fc05cc62d040cb7c11546c56442f780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/tagged_logging.rb)
org.jruby.ast.executable.AbstractScript.file(AbstractScript.java:42)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:177)
org.jruby.runtime.callsite.CachingCallSite.callIter(CachingCallSite.java:188)
rubyjit.Rails::Rack::Logger$$call_f5ea3c2b447816f27bbda4f8d4c369ba8c848b49780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb:21)
rubyjit.Rails::Rack::Logger$$call_f5ea3c2b447816f27bbda4f8d4c369ba8c848b49780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/rack/logger.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActionDispatch::RequestId$$call_b0ac2c6b1094379fddac9746051476518e86ce6a780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/request_id.rb:21)
rubyjit.ActionDispatch::RequestId$$call_b0ac2c6b1094379fddac9746051476518e86ce6a780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/actionpack-4.0.0/lib/action_dispatch/middleware/request_id.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::MethodOverride$$call_2588c1776d95cdaf230b8964421d60b7d9464ca9780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/methodoverride.rb:21)
rubyjit.Rack::MethodOverride$$call_2588c1776d95cdaf230b8964421d60b7d9464ca9780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/methodoverride.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::Runtime$$call_edc82c8d3e91c428b70e1709944ce0f078554e75780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/runtime.rb:17)
rubyjit.Rack::Runtime$$call_edc82c8d3e91c428b70e1709944ce0f078554e75780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/rack-1.5.2/lib/rack/runtime.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.ActiveSupport::Cache::Strategy::LocalCache::Middleware$$call_608baa5590253866531289d04db4e797559599b8780555837.chained_0_ensure_1$RUBY$ensure(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/cache/strategy/local_cache.rb:83)
rubyjit.ActiveSupport::Cache::Strategy::LocalCache::Middleware$$call_608baa5590253866531289d04db4e797559599b8780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/cache/strategy/local_cache.rb)
rubyjit.ActiveSupport::Cache::Strategy::LocalCache::Middleware$$call_608baa5590253866531289d04db4e797559599b8780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/activesupport-4.0.0/lib/active_support/cache/strategy/local_cache.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rails::Engine$$call_1a34e71450b46bd98492ab7d183452648171777d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/engine.rb:511)
rubyjit.Rails::Engine$$call_1a34e71450b46bd98492ab7d183452648171777d780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/engine.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:201)
org.jruby.runtime.callsite.SuperCallSite.callBlock(SuperCallSite.java:190)
org.jruby.runtime.callsite.SuperCallSite.call(SuperCallSite.java:197)
rubyjit.Rails::Application$$call_aded50d0f7933444c54f3bf3917984b0e9e4ce50780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/application.rb:97)
rubyjit.Rails::Application$$call_aded50d0f7933444c54f3bf3917984b0e9e4ce50780555837.file(/home/q/platform/tomcat/webapps/ROOT/WEB-INF/gems/gems/railties-4.0.0/lib/rails/application.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:168)
rubyjit.Rack::Handler::Servlet$$call_962596486a78eb92b0f724aa0f060cd6a1315df4780555837.file(file:/home/q/system/byod_cloud/tianji-1.9.15.10/WEB-INF/lib/gems-gems-jruby-rack-1.1.14-lib-jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22)
rubyjit.Rack::Handler::Servlet$$call_962596486a78eb92b0f724aa0f060cd6a1315df4780555837.file(file:/home/q/system/byod_cloud/tianji-1.9.15.10/WEB-INF/lib/gems-gems-jruby-rack-1.1.14-lib-jruby-rack-1.1.14.jar!/rack/handler/servlet.rb)
org.jruby.internal.runtime.methods.JittedMethod.call(JittedMethod.java:181)
org.jruby.RubyClass.finvoke(RubyClass.java:690)
org.jruby.runtime.Helpers.invoke(Helpers.java:502)
org.jruby.RubyBasicObject.callMethod(RubyBasicObject.java:363)
org.jruby.javasupport.JavaEmbedUtils$1.callMethod(JavaEmbedUtils.java:143)
org.jruby.rack.DefaultRackApplication.call(DefaultRackApplication.java:64)
org.jruby.rack.AbstractRackDispatcher.process(AbstractRackDispatcher.java:33)
org.jruby.rack.AbstractFilter.doFilter(AbstractFilter.java:66)
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501)
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:950)
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408)
org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1040)
org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:607)
org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:313)
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
java.lang.Thread.run(Thread.java:744)

Regression in transcoding UTF-8 -> Windows-1255

There appears to be a regression in transcoding UTF-8 -> Windows-1255, introduced sometime after jcodings 1.0.26. The following Ruby code (taken from the MRI test suite), demonstrates the problem:

"\xCA".encode("utf-8", "windows-1255")

With jcodings 1.0.26, this will result in an Encoding::UndefinedConversionError being raised. With jcodings 1.0.28, no error is raised and an empty string is produced instead.

Implement approximate length and other length routines for proper broken character processing

MRI has several character length routines that have different semantics and are used quite inconsistently, wiki: https://github.com/jruby/jruby/wiki/Encodings-in-JRuby.

For now we only have two semantics:

  • return -1 on broken or (-1 - n) for missing n bytes in a stream (in jcodings itself).
  • StringSupport.preciseLength in JRuby core.

There are several issues:
#25
jruby/joni#38
jruby/joni#17
jruby/joni#46

All of those are related to semantics where length returns 1 for invalid character, so scans can advance while consuming arrays (were we have -1 and fall into infinite loops or AIOOBE)

Presto mitigated some of that by using our NonStrictUtf8Encoding here:
prestodb/presto#8711

Ultimately, we need to decide whether to scatter our code with more costly validating length routines (which would be wasteful for already validated Strings), or try a less wasteful approach by expanding on https://github.com/jruby/jcodings/tree/unsafe-encoding

Econv behaviour for gb18030

Should the last two lines should be equal? Thanks!

EConv econv = TranscoderDB.open("UTF-8", "gb18030", 0);

byte[] src = "Lašas".getBytes("UTF-8");
byte[] dest = new byte["Lašas".getBytes("gb18030").length];

econv.convert(src, new Ptr(0), 6, dest, new Ptr(0), dest.length, 0);
System.out.println(Arrays.toString(dest)); 
// [76, 97, -127, 48, 18, 56, 97, 115]
System.out.println(Arrays.toString("Lašas".getBytes("gb18030"))); 
// [76, 97, -127, 48, -108, 56, 97, 115]

Mongolian vowel separator needs to be removed from CR_Bank range

The JCodings CR_Blank.bin still has the 0x180e-0x180e range in it, which needs to be removed to match Ruby 2.2 (https://github.com/ruby/ruby/blob/004bb16ccc01608849c8d200aed990b6d6e2b98e/enc/unicode/name2ctype.h#L668-L678).

RubySpec is here ruby/spec@6076e90.

JRuby currently fails this spec.

I looked at the CR_Blank.bin file and I think I just need to remove the range bytes and decrement the count from 9 to 8, but I'm not sure what the leading 0000 0013 in the file means. What should I do with that?

I'm also unsure how to test this in JRuby. JCodings is a dependency of a dependency isn't it? How can I get JRuby to use a local snapshot of JCodings with this change?

org.jcodings.exception.InternalException: encoding class <UTF8> not found

I think this is the right place to report this.

I'm getting an error in jruby that appears to be coming from here. I'm at least moderately sure the UTF8 encoding class exists.

I'm using jruby 9.2.

org.jcodings.exception.InternalException: encoding class <UTF8> not found
	at org.jcodings.Encoding.load(Encoding.java:572)
	at data_objects.drivers.AbstractDriverDefinition.newUnicodeString(AbstractDriverDefinition.java:414)
	at data_objects.drivers.AbstractDriverDefinition.getTypecastResultSetValue(AbstractDriverDefinition.java:404)
	at data_objects.Reader.next(Reader.java:136)
	at data_objects.Reader$INVOKER$i$0$0$next_DBG.call(Reader$INVOKER$i$0$0$next_DBG.gen)
....

The stack trace for the jruby bit is:

Uncaught exception: encoding class <UTF8> not found (code: , sql state: , query: , uri: )
	data_objects/Reader.java:153:in `next!'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-do-adapter-1.2.0/lib/dm-do-adapter/adapter.rb:302:in `select_field'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-do-adapter-1.2.0/lib/dm-do-adapter/adapter.rb:41:in `block in select'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-do-adapter-1.2.0/lib/dm-do-adapter/adapter.rb:276:in `with_connection'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-do-adapter-1.2.0/lib/dm-do-adapter/adapter.rb:33:in `select'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/adapters/dm-postgres-adapter.rb:45:in `schema_name'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/adapters/dm-do-adapter.rb:26:in `storage_exists?'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/adapters/dm-do-adapter.rb:90:in `create_model_storage'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/adapters/dm-postgres-adapter.rb:23:in `block in create_model_storage'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/adapters/dm-postgres-adapter.rb:58:in `without_notices'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/adapters/dm-postgres-adapter.rb:23:in `create_model_storage'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/adapters/dm-do-adapter.rb:57:in `upgrade_model_storage'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/adapters/dm-postgres-adapter.rb:18:in `block in upgrade_model_storage'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/adapters/dm-postgres-adapter.rb:58:in `without_notices'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/adapters/dm-postgres-adapter.rb:18:in `upgrade_model_storage'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/auto_migration.rb:73:in `upgrade_model_storage'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/auto_migration.rb:145:in `auto_upgrade!'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/auto_migration.rb:47:in `block in repository_execute'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-core-1.2.1/lib/dm-core/support/descendant_set.rb:64:in `block in each'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-core-1.2.1/lib/dm-core/support/subject_set.rb:211:in `block in each'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-core-1.2.1/lib/dm-core/support/ordered_set.rb:320:in `block in each'
	org/jruby/RubyArray.java:1801:in `each'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-core-1.2.1/lib/dm-core/support/ordered_set.rb:320:in `each'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-core-1.2.1/lib/dm-core/support/subject_set.rb:211:in `each'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-core-1.2.1/lib/dm-core/support/descendant_set.rb:63:in `each'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/auto_migration.rb:46:in `repository_execute'
	C:/jruby-9.2.0.0/lib/ruby/gems/shared/gems/dm-migrations-1.2.0/lib/dm-migrations/auto_migration.rb:27:in `auto_upgrade!'

Calling code: https://github.com/datamapper/dm-do-adapter/blob/master/lib/dm-do-adapter/adapter.rb#L304

I'm not sure what more information I can provide, I don't really know how jruby works.

Add JRuby encoding tests to jcodings CI

The jcodings test are rather slim and do not cover enough test cases or lines of code. Meanwhile, the JRuby-based encoding tests inherited from CRuby are quite extensive, and find issues the jcodings tests do not such as those mentioned in #44.

We should add the JRuby encoding tests as an additional job in CI.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.