Class Raven::GemInstallTask
In: lib/raven/java_tasks.rb
Parent: GemWrapTask

Wraps a jar file around a Gem and automatically installs it in your local Gem repository. See the gem wrap task for more info (same rules apply).

Methods

execute  

Public Instance methods

[Source]

     # File lib/raven/java_tasks.rb, line 336
336:       def execute
337:         super
338:         params = [false]
339:         params << RAVEN_HOME if defined?(GEMS_IN_HOME)
340:         Gem::Installer.new("target/#{@group}-#{@artifact}-#{@version}-java.gem").install(*params)
341:       end

[Validate]