Skip to content

Commit

Permalink
release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Hamblen committed Aug 21, 2010
1 parent 0817ba6 commit d74a1ab
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ lib_managed/
project/boot/
project/build/target/
target/
src_managed/
project/plugins/project/
1 change: 1 addition & 0 deletions notes/0.1.1.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Write to current directory when the "name" parameter is absent.
3 changes: 3 additions & 0 deletions notes/about.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[giter8][g8] is a command line tool for templates published to github.

[g8]: http://github.com/n8han/giter8
3 changes: 2 additions & 1 deletion project/build/project.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sbt._

class Giter8Project(info: ProjectInfo) extends ParentProject(info) {
class Giter8Project(info: ProjectInfo) extends ParentProject(info) with posterous.Publish {
lazy val app = project("app", "giter8", new DefaultProject(_) {
val launchInterface = "org.scala-tools.sbt" % "launcher-interface" % "0.7.4" % "provided"

Expand All @@ -13,6 +13,7 @@ class Giter8Project(info: ProjectInfo) extends ParentProject(info) {
lazy val plugin = project("plugin", "giter8 plugin", new PluginProject(_) {
val stringTemplate = "org.antlr" % "stringtemplate" % "3.2.1"
})
override def postTitle(vers: String) = "%s %s".format("giter8", vers)
override def managedStyle = ManagedStyle.Maven
val publishTo = "Scala Tools Nexus" at "http://nexus.scala-tools.org/content/repositories/releases/"
Credentials(Path.userHome / ".ivy2" / ".credentials", log)
Expand Down
7 changes: 7 additions & 0 deletions project/plugins/plugins.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import sbt._

class Plugins(info: ProjectInfo) extends PluginDefinition(info) {
val snuggletex_repo = "snuggletex_repo" at "http://www2.ph.ed.ac.uk/maven2"
val t_repo = "t_repo" at "http://tristanhunt.com:8081/content/groups/public/"
val posterous = "net.databinder" % "posterous-sbt" % "0.1.6"
}

0 comments on commit d74a1ab

Please sign in to comment.