OSDN Git Service

first commit
authorSet <set.minami@gmail.com>
Mon, 13 May 2013 14:27:44 +0000 (23:27 +0900)
committerSet <set.minami@gmail.com>
Mon, 13 May 2013 14:27:44 +0000 (23:27 +0900)
.gitignore [new file with mode: 0644]
BlackQuill.icns [new file with mode: 0644]
BlackQuill.png [new file with mode: 0644]
LISENCES.txt [new file with mode: 0644]
README.md [new file with mode: 0644]
build.sbt [new file with mode: 0644]
src/main/scala/BlackQuill.scala [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..aa9acec
--- /dev/null
@@ -0,0 +1,6 @@
+target
+Ico*
+project/target/config-classes
+.DS_Store
+.ensime
+.ensime_lucene
diff --git a/BlackQuill.icns b/BlackQuill.icns
new file mode 100644 (file)
index 0000000..e7c3a66
Binary files /dev/null and b/BlackQuill.icns differ
diff --git a/BlackQuill.png b/BlackQuill.png
new file mode 100644 (file)
index 0000000..ee8c609
Binary files /dev/null and b/BlackQuill.png differ
diff --git a/LISENCES.txt b/LISENCES.txt
new file mode 100644 (file)
index 0000000..ea2048d
--- /dev/null
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2013 set.minami<set.minami@gmail.com>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/build.sbt b/build.sbt
new file mode 100644 (file)
index 0000000..5d3fbb5
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,12 @@
+name := "BlackQuill"
+
+version := "0.1.0"
+
+scalaVersion := "2.9.2"
+
+scalacOptions ++= Seq("-encoding","UTF-8")
+
+libraryDependencies ++= Seq(
+       "org.apache.commons" % "commons-lang3" % "3.1",
+       "commons-io" % "commons-io" % "2.4"
+)
diff --git a/src/main/scala/BlackQuill.scala b/src/main/scala/BlackQuill.scala
new file mode 100644 (file)
index 0000000..75fdd3e
--- /dev/null
@@ -0,0 +1,7 @@
+package org.blackquill
+
+object BlackQuill{
+  def main(args:Array[String]){
+    println("Hello World")
+  }
+}