o.jruby9-war-maven-plugin.0.2.1.source-code.init.rb Maven / Gradle / Ivy
# partially copied monkey_patch.rb from jruby-mains project
# bundler includes Bundler::SharedHelpers into its runtime
# adding the included method allows to monkey patch the runtime
# the moment it is used. i.e. no need to activate the bundler gem
module Bundler
module Patch
def clean_load_path
# nothing to be done for JRuby
end
end
module SharedHelpers
def included(bundler)
bundler.send :include, Patch
end
end
end
© 2015 - 2024 Weber Informatics LLC | Privacy Policy