102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# File 'lib/rubylet/war_task.rb', line 102
def common_params
yield 'jrubyHome', jruby_home
env.each do |key, value|
yield "env.#{key}", value
end
gems.each do |(name, req)|
yield "gem.#{name}", req
end
yield 'bundleExec', bundle_exec
yield 'boot', boot
yield 'servletClass', servlet_class
yield 'appRoot', app_root
yield 'compileMode', compile_mode
yield 'compatVersion', compat_version
yield 'localContextScope', local_context_scope
end
|