Skip to content

Latest commit

History

25 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

// Create project/project/SbtJruby.scala containing:
import sbt._
object PluginDef extends Build {
override lazy val projects = Seq(root)
lazy val root = Project("plugins", file(".")) dependsOn( webPlugin )
lazy val webPlugin = uri("git://github.com/banshee/sbt-jruby.git")
}
// Configure your build.sbt file with:
// By default, the plugin doesn't export its settings. Add these lines to your .sbt file:
seq(SbtJRuby.SbtJRubySettings.settings: _*)
// Specify a ruby file to run
jrubyFile in compile := file("foobar.rb")
// Not required, but this is how you make compiling dependent on the jruby task
compile <<= (compile in Compile) dependsOn jruby

About

Support for calling jruby from sbt

Resources

Stars

9 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages