Scott Nelson

Results 10 comments of Scott Nelson

Here is my warble.rb file (minus all the comments): ``` ruby Warbler::Config.new do |config| config.features = %w(compiled) config.dirs = %w(app config lib log vendor tmp db_scripts) config.includes = FileList[ 'var/**',...

This commit appears to be the culprit. https://github.com/jruby/warbler/commit/3c52f33948bb150b8b166639b200e78791fcbc97 Reverting it (removing "env -i") makes everything work again.

Thanks, but this still fails on Windows if GnuWin32 CoreUtils (http://gnuwin32.sourceforge.net/packages/coreutils.htm) is installed, which does provide an env executable... ``` C:\Program Files (x86)\GnuWin32\bin\env.exe: java: No such file or directory warble...

The problem is that env -i is wiping out all of the environment variables, as it's supposed to... including the PATH variable. So the system has no idea where to...

Thanks @ipolevoy ! That seems to fix it. Is there any way to get this build from MavenCentral, or do we have to wait until 2.3 is released?

Thanks @ipolevoy . It's not all that critical. We're just in the initial planning and requirements gathering phase right now, and we do have a few workaround, including my hack,...

@ipolevoy I am moving the conversation from #796 to this issue. We are writing plugins for an application called IdentityIQ. This is a third party web application running under Tomcat....

@ipolevoy Yes, the issue is that getResources() does not work, but getResourceAsStream() does work. This is true anywhere in our code. We have no control over the classloader, as we...

That's strange... Let me do some tests with multiple plugins using getResourceAsStream on our project and see what happens. It's true that getResourceAsStream would only return one file, so if...

@ipolevoy Sorry I haven't gotten back to you on this. So, we now have several plugins, all using the same snapshot version of ActiveJDBC that I stashed away, which was...