├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── modules ├── core │ └── src │ │ └── main │ │ ├── scala-2.12- │ │ └── tut │ │ │ └── IMainPlatform.scala │ │ ├── scala-2.13+ │ │ └── tut │ │ │ └── IMainPlatform.scala │ │ └── scala │ │ └── tut │ │ ├── AnsiFilterStream.scala │ │ ├── Exception.scala │ │ ├── FileIO.scala │ │ ├── Modifier.scala │ │ ├── Spigot.scala │ │ ├── Tut.scala │ │ ├── TutMain.scala │ │ ├── TutState.scala │ │ ├── Zed.scala │ │ ├── felix │ │ ├── IO.scala │ │ ├── LiftIO.scala │ │ ├── Monad.scala │ │ ├── Resource.scala │ │ ├── StateT.scala │ │ └── Syntax.scala │ │ └── package.scala ├── docs │ └── src │ │ └── main │ │ ├── resources │ │ └── microsite │ │ │ ├── css │ │ │ └── tweak.css │ │ │ └── img │ │ │ └── tut.jpg │ │ └── tut │ │ ├── commands.md │ │ ├── configuration.md │ │ ├── faq.md │ │ ├── index.md │ │ ├── integrations.md │ │ ├── modifiers.md │ │ └── standalone.md ├── plugin │ └── src │ │ └── main │ │ └── scala │ │ └── tut │ │ └── TutPlugin.scala └── tests │ └── src │ └── sbt-test │ └── tut │ ├── test-00-basic │ ├── build.sbt │ ├── expect.md │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ └── test.md │ └── test │ ├── test-01-options │ ├── build.sbt │ ├── expect.md │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ └── test.md │ └── test │ ├── test-02-plugins │ ├── build.sbt │ ├── expect.md │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ └── test.md │ └── test │ ├── test-03-config │ ├── build.sbt │ ├── project │ │ └── plugins.sbt │ └── test │ ├── test-04-only │ ├── build.sbt │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ ├── A.md │ │ │ ├── B.md │ │ │ ├── sub1 │ │ │ ├── C.md │ │ │ └── sub1.1 │ │ │ │ ├── D.md │ │ │ │ └── E.md │ │ │ └── sub2 │ │ │ ├── F.md │ │ │ └── G.md │ └── test │ ├── test-05-fail │ ├── build.sbt │ ├── expect.md │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ └── test.md │ └── test │ ├── test-06-walk │ ├── build.sbt │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ ├── A.md │ │ │ ├── B.md │ │ │ └── sub │ │ │ ├── D.md │ │ │ └── E.ignore │ └── test │ ├── test-07-unused-imports │ ├── build.sbt │ ├── expect.md │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ └── test.md │ └── test │ ├── test-08-quick │ ├── build.sbt │ ├── expect1.md │ ├── expect1b.md │ ├── expect2.md │ ├── expect2b.md │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ ├── revisions │ │ │ ├── file1b.md │ │ │ └── file2b.md │ │ │ └── tut │ │ │ ├── file1.md │ │ │ └── file2.md │ └── test │ ├── test-09-decorate │ ├── build.sbt │ ├── expect.md │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ └── test.md │ └── test │ ├── test-11-transitive-dependency │ ├── build.sbt │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ └── test.md │ └── test │ ├── test-12-long-file │ ├── build.sbt │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ └── test.md │ └── test │ ├── test-12-passthrough │ ├── build.sbt │ ├── expect.md │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ └── test.md │ └── test │ ├── test-13-handles-fork │ ├── build.sbt │ ├── expect.md │ ├── project │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── tut │ │ │ └── test.md │ └── test │ └── test-14-unclosed-expr │ ├── build.sbt │ ├── project │ └── plugins.sbt │ ├── src │ └── main │ │ └── tut │ │ └── test.md │ └── test ├── project ├── build.properties └── plugins.sbt ├── tut.jpg └── version.sbt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/README.md -------------------------------------------------------------------------------- /modules/core/src/main/scala-2.12-/tut/IMainPlatform.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala-2.12-/tut/IMainPlatform.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala-2.13+/tut/IMainPlatform.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala-2.13+/tut/IMainPlatform.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/AnsiFilterStream.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/AnsiFilterStream.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/Exception.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/Exception.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/FileIO.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/FileIO.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/Modifier.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/Modifier.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/Spigot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/Spigot.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/Tut.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/Tut.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/TutMain.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/TutMain.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/TutState.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/TutState.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/Zed.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/Zed.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/felix/IO.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/felix/IO.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/felix/LiftIO.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/felix/LiftIO.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/felix/Monad.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/felix/Monad.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/felix/Resource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/felix/Resource.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/felix/StateT.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/felix/StateT.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/felix/Syntax.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/felix/Syntax.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/tut/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/core/src/main/scala/tut/package.scala -------------------------------------------------------------------------------- /modules/docs/src/main/resources/microsite/css/tweak.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/docs/src/main/resources/microsite/css/tweak.css -------------------------------------------------------------------------------- /modules/docs/src/main/resources/microsite/img/tut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/docs/src/main/resources/microsite/img/tut.jpg -------------------------------------------------------------------------------- /modules/docs/src/main/tut/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/docs/src/main/tut/commands.md -------------------------------------------------------------------------------- /modules/docs/src/main/tut/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/docs/src/main/tut/configuration.md -------------------------------------------------------------------------------- /modules/docs/src/main/tut/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/docs/src/main/tut/faq.md -------------------------------------------------------------------------------- /modules/docs/src/main/tut/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/docs/src/main/tut/index.md -------------------------------------------------------------------------------- /modules/docs/src/main/tut/integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/docs/src/main/tut/integrations.md -------------------------------------------------------------------------------- /modules/docs/src/main/tut/modifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/docs/src/main/tut/modifiers.md -------------------------------------------------------------------------------- /modules/docs/src/main/tut/standalone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/docs/src/main/tut/standalone.md -------------------------------------------------------------------------------- /modules/plugin/src/main/scala/tut/TutPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/plugin/src/main/scala/tut/TutPlugin.scala -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-00-basic/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-00-basic/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-00-basic/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-00-basic/expect.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-00-basic/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-00-basic/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-00-basic/src/main/tut/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-00-basic/src/main/tut/test.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-00-basic/test: -------------------------------------------------------------------------------- 1 | > tut 2 | > check 3 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-01-options/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-01-options/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-01-options/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-01-options/expect.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-01-options/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-01-options/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-01-options/src/main/tut/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-01-options/src/main/tut/test.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-01-options/test: -------------------------------------------------------------------------------- 1 | > tut 2 | > check 3 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-02-plugins/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-02-plugins/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-02-plugins/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-02-plugins/expect.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-02-plugins/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-02-plugins/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-02-plugins/src/main/tut/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-02-plugins/src/main/tut/test.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-02-plugins/test: -------------------------------------------------------------------------------- 1 | > tut 2 | > check 3 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-03-config/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-03-config/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-03-config/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-03-config/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-03-config/test: -------------------------------------------------------------------------------- 1 | > check 2 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-04-only/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-04-only/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-04-only/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-04-only/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-04-only/src/main/tut/A.md: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-04-only/src/main/tut/B.md: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-04-only/src/main/tut/sub1/C.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-04-only/src/main/tut/sub1/sub1.1/D.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-04-only/src/main/tut/sub1/sub1.1/E.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-04-only/src/main/tut/sub2/F.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-04-only/src/main/tut/sub2/G.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-04-only/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-04-only/test -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-05-fail/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-05-fail/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-05-fail/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-05-fail/expect.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-05-fail/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-05-fail/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-05-fail/src/main/tut/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-05-fail/src/main/tut/test.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-05-fail/test: -------------------------------------------------------------------------------- 1 | -> tut 2 | > check 3 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-06-walk/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-06-walk/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-06-walk/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-06-walk/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-06-walk/src/main/tut/A.md: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-06-walk/src/main/tut/B.md: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-06-walk/src/main/tut/sub/D.md: -------------------------------------------------------------------------------- 1 | xyzzy -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-06-walk/src/main/tut/sub/E.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-06-walk/src/main/tut/sub/E.ignore -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-06-walk/test: -------------------------------------------------------------------------------- 1 | > check 2 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-07-unused-imports/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-07-unused-imports/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-07-unused-imports/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-07-unused-imports/expect.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-07-unused-imports/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-07-unused-imports/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-07-unused-imports/src/main/tut/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-07-unused-imports/src/main/tut/test.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-07-unused-imports/test: -------------------------------------------------------------------------------- 1 | > tut 2 | > check 3 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-08-quick/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-08-quick/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-08-quick/expect1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-08-quick/expect1.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-08-quick/expect1b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-08-quick/expect1b.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-08-quick/expect2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-08-quick/expect2.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-08-quick/expect2b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-08-quick/expect2b.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-08-quick/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-08-quick/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-08-quick/src/main/revisions/file1b.md: -------------------------------------------------------------------------------- 1 | ```tut:book 2 | "File " + 1 + "b" 3 | ``` 4 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-08-quick/src/main/revisions/file2b.md: -------------------------------------------------------------------------------- 1 | ```tut:book 2 | "File " + 2 + "b" 3 | ``` 4 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-08-quick/src/main/tut/file1.md: -------------------------------------------------------------------------------- 1 | ```tut:book 2 | "File " + 1 3 | ``` 4 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-08-quick/src/main/tut/file2.md: -------------------------------------------------------------------------------- 1 | ```tut:book 2 | "File " + 2 3 | ``` 4 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-08-quick/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-08-quick/test -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-09-decorate/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-09-decorate/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-09-decorate/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-09-decorate/expect.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-09-decorate/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-09-decorate/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-09-decorate/src/main/tut/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-09-decorate/src/main/tut/test.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-09-decorate/test: -------------------------------------------------------------------------------- 1 | > tut 2 | > check 3 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-11-transitive-dependency/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-11-transitive-dependency/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-11-transitive-dependency/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-11-transitive-dependency/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-11-transitive-dependency/src/main/tut/test.md: -------------------------------------------------------------------------------- 1 | Foo 2 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-11-transitive-dependency/test: -------------------------------------------------------------------------------- 1 | > packagedArtifacts 2 | > check 3 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-12-long-file/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-12-long-file/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-12-long-file/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-12-long-file/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-12-long-file/src/main/tut/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-12-long-file/src/main/tut/test.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-12-long-file/test: -------------------------------------------------------------------------------- 1 | > tut 2 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-12-passthrough/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-12-passthrough/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-12-passthrough/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-12-passthrough/expect.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-12-passthrough/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-12-passthrough/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-12-passthrough/src/main/tut/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-12-passthrough/src/main/tut/test.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-12-passthrough/test: -------------------------------------------------------------------------------- 1 | > tut 2 | > check 3 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-13-handles-fork/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-13-handles-fork/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-13-handles-fork/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-13-handles-fork/expect.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-13-handles-fork/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-13-handles-fork/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-13-handles-fork/src/main/tut/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-13-handles-fork/src/main/tut/test.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-13-handles-fork/test: -------------------------------------------------------------------------------- 1 | > tut 2 | > check 3 | -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-14-unclosed-expr/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-14-unclosed-expr/build.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-14-unclosed-expr/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-14-unclosed-expr/project/plugins.sbt -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-14-unclosed-expr/src/main/tut/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/modules/tests/src/sbt-test/tut/test-14-unclosed-expr/src/main/tut/test.md -------------------------------------------------------------------------------- /modules/tests/src/sbt-test/tut/test-14-unclosed-expr/test: -------------------------------------------------------------------------------- 1 | -> tut 2 | -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.3.0 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /tut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpolecat/tut/HEAD/tut.jpg -------------------------------------------------------------------------------- /version.sbt: -------------------------------------------------------------------------------- 1 | version in ThisBuild := "0.6.14-SNAPSHOT" 2 | --------------------------------------------------------------------------------