├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rubocop.yml ├── .yardopts ├── Gemfile ├── Gemfile.lock ├── History.md ├── LICENSE ├── README.md ├── Rakefile ├── demo ├── 404.md ├── _config.yml ├── _layouts │ ├── default.html │ └── post.html ├── _posts │ └── 2015-11-05-hello-world.md ├── about │ └── index.md ├── config.ru ├── css │ └── site.css └── index.md ├── lanyon.gemspec ├── lib ├── lanyon.rb └── lanyon │ ├── application.rb │ ├── backports.rb │ ├── router.rb │ └── version.rb └── test ├── helper.rb ├── source ├── _posts │ └── 2015-11-05-hello-world.md ├── buenos_dias.md ├── crlf.dat ├── css │ └── test.css ├── dir-with-index │ └── index.md ├── dir-without-index │ └── page.md ├── index.md ├── js │ └── test.min.js ├── no-extension ├── with blank.md └── with+plus.md ├── test_build.rb ├── test_configuration.rb ├── test_integration.rb └── test_router.rb /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- 1 | --no-private 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/Rakefile -------------------------------------------------------------------------------- /demo/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/demo/404.md -------------------------------------------------------------------------------- /demo/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/demo/_config.yml -------------------------------------------------------------------------------- /demo/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/demo/_layouts/default.html -------------------------------------------------------------------------------- /demo/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/demo/_layouts/post.html -------------------------------------------------------------------------------- /demo/_posts/2015-11-05-hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/demo/_posts/2015-11-05-hello-world.md -------------------------------------------------------------------------------- /demo/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/demo/about/index.md -------------------------------------------------------------------------------- /demo/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/demo/config.ru -------------------------------------------------------------------------------- /demo/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/demo/css/site.css -------------------------------------------------------------------------------- /demo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/demo/index.md -------------------------------------------------------------------------------- /lanyon.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/lanyon.gemspec -------------------------------------------------------------------------------- /lib/lanyon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/lib/lanyon.rb -------------------------------------------------------------------------------- /lib/lanyon/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/lib/lanyon/application.rb -------------------------------------------------------------------------------- /lib/lanyon/backports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/lib/lanyon/backports.rb -------------------------------------------------------------------------------- /lib/lanyon/router.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/lib/lanyon/router.rb -------------------------------------------------------------------------------- /lib/lanyon/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/lib/lanyon/version.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/source/_posts/2015-11-05-hello-world.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | A Blog Post 5 | -------------------------------------------------------------------------------- /test/source/buenos_dias.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | ¡Buenos días! 5 | -------------------------------------------------------------------------------- /test/source/crlf.dat: -------------------------------------------------------------------------------- 1 | File 2 | with 3 | CRLF 4 | newlines 5 | -------------------------------------------------------------------------------- /test/source/css/test.css: -------------------------------------------------------------------------------- 1 | /* CSS */ 2 | -------------------------------------------------------------------------------- /test/source/dir-with-index/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/test/source/dir-with-index/index.md -------------------------------------------------------------------------------- /test/source/dir-without-index/page.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | Test 5 | -------------------------------------------------------------------------------- /test/source/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | Home Page 5 | -------------------------------------------------------------------------------- /test/source/js/test.min.js: -------------------------------------------------------------------------------- 1 | // JavaScript 2 | -------------------------------------------------------------------------------- /test/source/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /test/source/with blank.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | filename with blank 5 | -------------------------------------------------------------------------------- /test/source/with+plus.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | filename with + 5 | -------------------------------------------------------------------------------- /test/test_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/test/test_build.rb -------------------------------------------------------------------------------- /test/test_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/test/test_configuration.rb -------------------------------------------------------------------------------- /test/test_integration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/test/test_integration.rb -------------------------------------------------------------------------------- /test/test_router.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stomar/lanyon/HEAD/test/test_router.rb --------------------------------------------------------------------------------