-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathREADME
More file actions
20 lines (14 loc) · 681 Bytes
/
README
File metadata and controls
20 lines (14 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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