Skip to content

Commit

Permalink
pkg: change domain for importing (toml -> stoml)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvican committed Jan 5, 2016
1 parent 8d72741 commit e86dcfa
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "stoml"

organization := "com.github.jvican"

version := "1.1"
version := "0.1"

scalaVersion := "2.11.7"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package toml
package stoml

import scala.language.{implicitConversions, postfixOps}
import java.util.{Date => JDate}
Expand Down Expand Up @@ -147,7 +147,7 @@ trait TomlParser extends ParserUtil with TomlSymbol {
}

object TomlParserApi extends TomlParser {
import toml.Toml.{Node, Table, Pair}
import stoml.Toml.{Node, Table, Pair}

type Key = Vector[String]

Expand Down
2 changes: 1 addition & 1 deletion src/test/scala/api/TomlParserApiSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import fastparse.core.Parsed.{Failure, Success}
import org.scalatest.{Matchers, FunSpec}

class TomlParserApiSpec extends FunSpec with Matchers {
import toml.TomlParserApi._
import stoml.TomlParserApi._

val smallFileTest =
"""best-author-ever = "Anonymous"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package toml
package stoml

import org.scalacheck.Gen
import org.scalatest.prop._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package toml
package stoml

import fastparse.core.Parsed.Success
import org.scalacheck.Gen
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package toml
package stoml

import org.scalacheck.Gen

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package toml
package stoml

import org.scalacheck.Gen
import org.scalatest.prop._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package toml
package stoml

import fastparse.core.Parsed.Success
import org.scalacheck.Gen
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package toml
package stoml

import fastparse.core.Parsed.Success
import org.scalacheck.Gen
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package toml
package stoml

import org.scalacheck.Gen
import org.scalatest.prop._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package toml
package stoml

import fastparse.core.Parsed
import fastparse.core.Parsed.{Failure, Success}
Expand Down

0 comments on commit e86dcfa

Please sign in to comment.