├── .document ├── .gitignore ├── .rspec ├── .ruby-gemset ├── .ruby-version ├── .travis.yml ├── CHANGELOG.rdoc ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.rdoc ├── Rakefile ├── VERSION ├── artwork ├── article.png ├── favicon.png ├── homepage.png ├── homepage2.png ├── icon.png ├── logo-hifi-1.png ├── logo-hifi-2.png ├── logo-hifi-3.png ├── logo.ai ├── twitter.png └── video_thumb.psd ├── exe └── serve ├── lib ├── serve.rb └── serve │ ├── application.rb │ ├── bootstrap │ ├── Gemfile │ ├── README.md │ ├── compass.config │ ├── config.ru │ └── gitignore │ ├── export.rb │ ├── handlers │ ├── coffee_handler.rb │ ├── dynamic_handler.rb │ ├── email_handler.rb │ ├── file_type_handler.rb │ ├── less_handler.rb │ ├── redirect_handler.rb │ └── sass_handler.rb │ ├── javascripts.rb │ ├── out.rb │ ├── path.rb │ ├── pipeline.rb │ ├── project.rb │ ├── rack.rb │ ├── router.rb │ ├── templates │ ├── blank │ │ └── .empty │ └── default │ │ ├── public │ │ ├── .htaccess │ │ └── images │ │ │ └── serve-logo.png │ │ ├── stylesheets │ │ ├── modules │ │ │ ├── _all.scss │ │ │ ├── _links.scss │ │ │ ├── _typography.scss │ │ │ └── _utility.scss │ │ ├── partials │ │ │ ├── _base.scss │ │ │ ├── _content.scss │ │ │ └── _layout.scss │ │ └── screen.scss │ │ └── views │ │ ├── _layout.html.erb │ │ ├── index.redirect │ │ ├── layouts │ │ └── default.html.erb │ │ ├── view_helpers.rb │ │ └── welcome.html.erb │ ├── version.rb │ └── view_helpers.rb ├── serve.gemspec ├── spec ├── application_spec.rb ├── fixtures │ ├── directory │ │ ├── _layout.erb │ │ ├── coffee.coffee │ │ ├── index.html │ │ ├── markdown.html.markdown │ │ ├── markdown.markdown │ │ ├── markdown_erb.markdown.erb │ │ └── subdirectory │ │ │ └── test.erb │ ├── file.erb │ ├── hello.html │ └── stylesheets │ │ └── application.sass ├── pipeline_spec.rb ├── project_spec.rb ├── router_spec.rb ├── spec_helper.rb ├── stylesheets │ └── application.scss └── views │ ├── _layout.html.erb │ ├── hello.html.erb │ ├── index.redirect │ └── view_helpers.rb ├── tasks ├── jeweler.rake ├── rdoc.rake ├── rspec.rake ├── undefine.rake └── website.rake ├── test_project ├── _layout.erb ├── coffee │ ├── _layout.html.erb │ ├── index.html.erb │ └── test.js.coffee ├── erb │ ├── _footer.html.erb │ ├── _layout.html.erb │ └── index.html.erb ├── erubis │ ├── _footer.html.erubis │ ├── _layout.html.erubis │ └── index.html.erubis ├── file_types │ ├── test.atom │ └── test.html ├── haml │ ├── _footer.haml │ ├── _layout.haml │ └── index.haml ├── helpers │ ├── params │ │ ├── index.redirect │ │ └── test.html.erb │ └── render │ │ ├── _locals.html.erb │ │ ├── _partial.html.coffee │ │ ├── _partial.html.erb │ │ ├── _partial.html.haml │ │ ├── _partial.html.markdown │ │ ├── _partial.html.slim │ │ ├── _partial.html.textile │ │ ├── index.html.erb │ │ └── template.html.erb ├── images │ └── mesouthpark.png ├── less │ └── styles.less ├── markdown.erb │ ├── _footer.html.markdown.erb │ ├── _layout.html.erb │ └── index.html.markdown.erb ├── markdown │ └── index.markdown ├── radius │ ├── _layout.html.radius │ └── index.html.radius ├── redirect │ ├── index.redirect │ └── test.html ├── sass │ └── styles.sass ├── scss │ └── styles.scss ├── slim │ ├── _layout.slim │ └── index.slim ├── styles.css ├── textile │ └── index.textile └── view_helpers.rb └── website ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── compass.config ├── config.ru ├── public ├── .htaccess ├── favicon.ico ├── images │ ├── double-arrow-bullet.png │ ├── logo.png │ ├── noise.png │ ├── video_controls │ │ ├── border.png │ │ ├── controls.png │ │ ├── ie6 │ │ │ ├── borderBottomCenter.png │ │ │ ├── borderBottomLeft.png │ │ │ ├── borderBottomRight.png │ │ │ ├── borderMiddleLeft.png │ │ │ ├── borderMiddleRight.png │ │ │ ├── borderTopCenter.png │ │ │ ├── borderTopLeft.png │ │ │ └── borderTopRight.png │ │ ├── loading.gif │ │ ├── loading_background.png │ │ └── overlay.png │ └── video_thumb.jpg ├── javascripts │ └── jquery.colorbox-min.js └── stylesheets │ ├── application.css │ ├── screen.css │ └── video.css ├── stylesheets ├── mixins │ ├── _all.scss │ ├── _buttons.scss │ ├── _tables.scss │ └── _typography.scss ├── partials │ ├── _base.scss │ ├── _colors.scss │ ├── _content.scss │ └── _layout.scss └── screen.scss ├── tmp └── restart.txt └── views ├── _layout.html.erb ├── _video_head.html.erb ├── contributing.html.erb ├── documentation ├── _sub-commands.html.erb ├── _tree.html.erb ├── coffee-script.html.erb ├── convert.html.erb ├── create.html.erb ├── export.html.erb ├── index.html.erb ├── layouts.html.erb ├── partials.html.erb ├── rails-prototyping-tutorial.html.erb ├── template-engines-and-file-types.html.erb ├── usage.html.erb └── view-helpers.html.erb ├── get-started.html.erb ├── index.html.erb ├── layouts ├── _gauges.html.erb ├── _google-analytics.html.erb └── default.html.erb ├── mailing-list.html.erb └── view_helpers.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | serve 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.2.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/CHANGELOG.rdoc -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /artwork/article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/artwork/article.png -------------------------------------------------------------------------------- /artwork/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/artwork/favicon.png -------------------------------------------------------------------------------- /artwork/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/artwork/homepage.png -------------------------------------------------------------------------------- /artwork/homepage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/artwork/homepage2.png -------------------------------------------------------------------------------- /artwork/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/artwork/icon.png -------------------------------------------------------------------------------- /artwork/logo-hifi-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/artwork/logo-hifi-1.png -------------------------------------------------------------------------------- /artwork/logo-hifi-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/artwork/logo-hifi-2.png -------------------------------------------------------------------------------- /artwork/logo-hifi-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/artwork/logo-hifi-3.png -------------------------------------------------------------------------------- /artwork/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/artwork/logo.ai -------------------------------------------------------------------------------- /artwork/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/artwork/twitter.png -------------------------------------------------------------------------------- /artwork/video_thumb.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/artwork/video_thumb.psd -------------------------------------------------------------------------------- /exe/serve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/exe/serve -------------------------------------------------------------------------------- /lib/serve.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve.rb -------------------------------------------------------------------------------- /lib/serve/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/application.rb -------------------------------------------------------------------------------- /lib/serve/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/bootstrap/Gemfile -------------------------------------------------------------------------------- /lib/serve/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/bootstrap/README.md -------------------------------------------------------------------------------- /lib/serve/bootstrap/compass.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/bootstrap/compass.config -------------------------------------------------------------------------------- /lib/serve/bootstrap/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/bootstrap/config.ru -------------------------------------------------------------------------------- /lib/serve/bootstrap/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/bootstrap/gitignore -------------------------------------------------------------------------------- /lib/serve/export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/export.rb -------------------------------------------------------------------------------- /lib/serve/handlers/coffee_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/handlers/coffee_handler.rb -------------------------------------------------------------------------------- /lib/serve/handlers/dynamic_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/handlers/dynamic_handler.rb -------------------------------------------------------------------------------- /lib/serve/handlers/email_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/handlers/email_handler.rb -------------------------------------------------------------------------------- /lib/serve/handlers/file_type_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/handlers/file_type_handler.rb -------------------------------------------------------------------------------- /lib/serve/handlers/less_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/handlers/less_handler.rb -------------------------------------------------------------------------------- /lib/serve/handlers/redirect_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/handlers/redirect_handler.rb -------------------------------------------------------------------------------- /lib/serve/handlers/sass_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/handlers/sass_handler.rb -------------------------------------------------------------------------------- /lib/serve/javascripts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/javascripts.rb -------------------------------------------------------------------------------- /lib/serve/out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/out.rb -------------------------------------------------------------------------------- /lib/serve/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/path.rb -------------------------------------------------------------------------------- /lib/serve/pipeline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/pipeline.rb -------------------------------------------------------------------------------- /lib/serve/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/project.rb -------------------------------------------------------------------------------- /lib/serve/rack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/rack.rb -------------------------------------------------------------------------------- /lib/serve/router.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/router.rb -------------------------------------------------------------------------------- /lib/serve/templates/blank/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/serve/templates/default/public/.htaccess: -------------------------------------------------------------------------------- 1 | Options +MultiViews -------------------------------------------------------------------------------- /lib/serve/templates/default/public/images/serve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/public/images/serve-logo.png -------------------------------------------------------------------------------- /lib/serve/templates/default/stylesheets/modules/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/stylesheets/modules/_all.scss -------------------------------------------------------------------------------- /lib/serve/templates/default/stylesheets/modules/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/stylesheets/modules/_links.scss -------------------------------------------------------------------------------- /lib/serve/templates/default/stylesheets/modules/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/stylesheets/modules/_typography.scss -------------------------------------------------------------------------------- /lib/serve/templates/default/stylesheets/modules/_utility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/stylesheets/modules/_utility.scss -------------------------------------------------------------------------------- /lib/serve/templates/default/stylesheets/partials/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/stylesheets/partials/_base.scss -------------------------------------------------------------------------------- /lib/serve/templates/default/stylesheets/partials/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/stylesheets/partials/_content.scss -------------------------------------------------------------------------------- /lib/serve/templates/default/stylesheets/partials/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/stylesheets/partials/_layout.scss -------------------------------------------------------------------------------- /lib/serve/templates/default/stylesheets/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/stylesheets/screen.scss -------------------------------------------------------------------------------- /lib/serve/templates/default/views/_layout.html.erb: -------------------------------------------------------------------------------- 1 | <%= render template: '/layouts/default' %> 2 | -------------------------------------------------------------------------------- /lib/serve/templates/default/views/index.redirect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/views/index.redirect -------------------------------------------------------------------------------- /lib/serve/templates/default/views/layouts/default.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/views/layouts/default.html.erb -------------------------------------------------------------------------------- /lib/serve/templates/default/views/view_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/views/view_helpers.rb -------------------------------------------------------------------------------- /lib/serve/templates/default/views/welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/templates/default/views/welcome.html.erb -------------------------------------------------------------------------------- /lib/serve/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/version.rb -------------------------------------------------------------------------------- /lib/serve/view_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/lib/serve/view_helpers.rb -------------------------------------------------------------------------------- /serve.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/serve.gemspec -------------------------------------------------------------------------------- /spec/application_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/application_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/directory/_layout.erb: -------------------------------------------------------------------------------- 1 |

Awesomesacue

2 | 3 | <%= yield %> 4 | -------------------------------------------------------------------------------- /spec/fixtures/directory/coffee.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/directory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/fixtures/directory/index.html -------------------------------------------------------------------------------- /spec/fixtures/directory/markdown.html.markdown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/directory/markdown.markdown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/directory/markdown_erb.markdown.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/directory/subdirectory/test.erb: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /spec/fixtures/file.erb: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /spec/fixtures/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/fixtures/hello.html -------------------------------------------------------------------------------- /spec/fixtures/stylesheets/application.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/fixtures/stylesheets/application.sass -------------------------------------------------------------------------------- /spec/pipeline_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/pipeline_spec.rb -------------------------------------------------------------------------------- /spec/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/project_spec.rb -------------------------------------------------------------------------------- /spec/router_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/router_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/stylesheets/application.scss -------------------------------------------------------------------------------- /spec/views/_layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/views/_layout.html.erb -------------------------------------------------------------------------------- /spec/views/hello.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/views/hello.html.erb -------------------------------------------------------------------------------- /spec/views/index.redirect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/views/index.redirect -------------------------------------------------------------------------------- /spec/views/view_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/spec/views/view_helpers.rb -------------------------------------------------------------------------------- /tasks/jeweler.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/tasks/jeweler.rake -------------------------------------------------------------------------------- /tasks/rdoc.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/tasks/rdoc.rake -------------------------------------------------------------------------------- /tasks/rspec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/tasks/rspec.rake -------------------------------------------------------------------------------- /tasks/undefine.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/tasks/undefine.rake -------------------------------------------------------------------------------- /tasks/website.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/tasks/website.rake -------------------------------------------------------------------------------- /test_project/_layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/_layout.erb -------------------------------------------------------------------------------- /test_project/coffee/_layout.html.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> -------------------------------------------------------------------------------- /test_project/coffee/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/coffee/index.html.erb -------------------------------------------------------------------------------- /test_project/coffee/test.js.coffee: -------------------------------------------------------------------------------- 1 | alert "Hello World!" -------------------------------------------------------------------------------- /test_project/erb/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/erb/_footer.html.erb -------------------------------------------------------------------------------- /test_project/erb/_layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/erb/_layout.html.erb -------------------------------------------------------------------------------- /test_project/erb/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/erb/index.html.erb -------------------------------------------------------------------------------- /test_project/erubis/_footer.html.erubis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/erubis/_footer.html.erubis -------------------------------------------------------------------------------- /test_project/erubis/_layout.html.erubis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/erubis/_layout.html.erubis -------------------------------------------------------------------------------- /test_project/erubis/index.html.erubis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/erubis/index.html.erubis -------------------------------------------------------------------------------- /test_project/file_types/test.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/file_types/test.atom -------------------------------------------------------------------------------- /test_project/file_types/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/file_types/test.html -------------------------------------------------------------------------------- /test_project/haml/_footer.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/haml/_footer.haml -------------------------------------------------------------------------------- /test_project/haml/_layout.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/haml/_layout.haml -------------------------------------------------------------------------------- /test_project/haml/index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/haml/index.haml -------------------------------------------------------------------------------- /test_project/helpers/params/index.redirect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/helpers/params/index.redirect -------------------------------------------------------------------------------- /test_project/helpers/params/test.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/helpers/params/test.html.erb -------------------------------------------------------------------------------- /test_project/helpers/render/_locals.html.erb: -------------------------------------------------------------------------------- 1 |

<%= local_variable %>!

-------------------------------------------------------------------------------- /test_project/helpers/render/_partial.html.coffee: -------------------------------------------------------------------------------- 1 | alert "Yes!" -------------------------------------------------------------------------------- /test_project/helpers/render/_partial.html.erb: -------------------------------------------------------------------------------- 1 |

Yes!

-------------------------------------------------------------------------------- /test_project/helpers/render/_partial.html.haml: -------------------------------------------------------------------------------- 1 | %p Yes! This is Haml. -------------------------------------------------------------------------------- /test_project/helpers/render/_partial.html.markdown: -------------------------------------------------------------------------------- 1 | Yes! This is **Markdown**. -------------------------------------------------------------------------------- /test_project/helpers/render/_partial.html.slim: -------------------------------------------------------------------------------- 1 | p Yes! This is Slim. -------------------------------------------------------------------------------- /test_project/helpers/render/_partial.html.textile: -------------------------------------------------------------------------------- 1 | Yes! This is *Textile*. -------------------------------------------------------------------------------- /test_project/helpers/render/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/helpers/render/index.html.erb -------------------------------------------------------------------------------- /test_project/helpers/render/template.html.erb: -------------------------------------------------------------------------------- 1 |

Yes!

-------------------------------------------------------------------------------- /test_project/images/mesouthpark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/images/mesouthpark.png -------------------------------------------------------------------------------- /test_project/less/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/less/styles.less -------------------------------------------------------------------------------- /test_project/markdown.erb/_footer.html.markdown.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/markdown.erb/_footer.html.markdown.erb -------------------------------------------------------------------------------- /test_project/markdown.erb/_layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/markdown.erb/_layout.html.erb -------------------------------------------------------------------------------- /test_project/markdown.erb/index.html.markdown.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/markdown.erb/index.html.markdown.erb -------------------------------------------------------------------------------- /test_project/markdown/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/markdown/index.markdown -------------------------------------------------------------------------------- /test_project/radius/_layout.html.radius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/radius/_layout.html.radius -------------------------------------------------------------------------------- /test_project/radius/index.html.radius: -------------------------------------------------------------------------------- 1 |

Calling a view helper:

2 | -------------------------------------------------------------------------------- /test_project/redirect/index.redirect: -------------------------------------------------------------------------------- 1 | /redirect/test/ -------------------------------------------------------------------------------- /test_project/redirect/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/redirect/test.html -------------------------------------------------------------------------------- /test_project/sass/styles.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/sass/styles.sass -------------------------------------------------------------------------------- /test_project/scss/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/scss/styles.scss -------------------------------------------------------------------------------- /test_project/slim/_layout.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/slim/_layout.slim -------------------------------------------------------------------------------- /test_project/slim/index.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/slim/index.slim -------------------------------------------------------------------------------- /test_project/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: Helvetica, Arial, sans-serif; 3 | } -------------------------------------------------------------------------------- /test_project/textile/index.textile: -------------------------------------------------------------------------------- 1 | h1. Hello Textile World! -------------------------------------------------------------------------------- /test_project/view_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/test_project/view_helpers.rb -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/Gemfile -------------------------------------------------------------------------------- /website/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/Gemfile.lock -------------------------------------------------------------------------------- /website/compass.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/compass.config -------------------------------------------------------------------------------- /website/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/config.ru -------------------------------------------------------------------------------- /website/public/.htaccess: -------------------------------------------------------------------------------- 1 | Options +MultiViews -------------------------------------------------------------------------------- /website/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/favicon.ico -------------------------------------------------------------------------------- /website/public/images/double-arrow-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/double-arrow-bullet.png -------------------------------------------------------------------------------- /website/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/logo.png -------------------------------------------------------------------------------- /website/public/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/noise.png -------------------------------------------------------------------------------- /website/public/images/video_controls/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/border.png -------------------------------------------------------------------------------- /website/public/images/video_controls/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/controls.png -------------------------------------------------------------------------------- /website/public/images/video_controls/ie6/borderBottomCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/ie6/borderBottomCenter.png -------------------------------------------------------------------------------- /website/public/images/video_controls/ie6/borderBottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/ie6/borderBottomLeft.png -------------------------------------------------------------------------------- /website/public/images/video_controls/ie6/borderBottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/ie6/borderBottomRight.png -------------------------------------------------------------------------------- /website/public/images/video_controls/ie6/borderMiddleLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/ie6/borderMiddleLeft.png -------------------------------------------------------------------------------- /website/public/images/video_controls/ie6/borderMiddleRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/ie6/borderMiddleRight.png -------------------------------------------------------------------------------- /website/public/images/video_controls/ie6/borderTopCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/ie6/borderTopCenter.png -------------------------------------------------------------------------------- /website/public/images/video_controls/ie6/borderTopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/ie6/borderTopLeft.png -------------------------------------------------------------------------------- /website/public/images/video_controls/ie6/borderTopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/ie6/borderTopRight.png -------------------------------------------------------------------------------- /website/public/images/video_controls/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/loading.gif -------------------------------------------------------------------------------- /website/public/images/video_controls/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/loading_background.png -------------------------------------------------------------------------------- /website/public/images/video_controls/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_controls/overlay.png -------------------------------------------------------------------------------- /website/public/images/video_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/images/video_thumb.jpg -------------------------------------------------------------------------------- /website/public/javascripts/jquery.colorbox-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/javascripts/jquery.colorbox-min.js -------------------------------------------------------------------------------- /website/public/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/stylesheets/application.css -------------------------------------------------------------------------------- /website/public/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/stylesheets/screen.css -------------------------------------------------------------------------------- /website/public/stylesheets/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/public/stylesheets/video.css -------------------------------------------------------------------------------- /website/stylesheets/mixins/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/stylesheets/mixins/_all.scss -------------------------------------------------------------------------------- /website/stylesheets/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/stylesheets/mixins/_buttons.scss -------------------------------------------------------------------------------- /website/stylesheets/mixins/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/stylesheets/mixins/_tables.scss -------------------------------------------------------------------------------- /website/stylesheets/mixins/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/stylesheets/mixins/_typography.scss -------------------------------------------------------------------------------- /website/stylesheets/partials/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/stylesheets/partials/_base.scss -------------------------------------------------------------------------------- /website/stylesheets/partials/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/stylesheets/partials/_colors.scss -------------------------------------------------------------------------------- /website/stylesheets/partials/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/stylesheets/partials/_content.scss -------------------------------------------------------------------------------- /website/stylesheets/partials/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/stylesheets/partials/_layout.scss -------------------------------------------------------------------------------- /website/stylesheets/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/stylesheets/screen.scss -------------------------------------------------------------------------------- /website/tmp/restart.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/views/_layout.html.erb: -------------------------------------------------------------------------------- 1 | <%= render template: '/layouts/default' %> 2 | -------------------------------------------------------------------------------- /website/views/_video_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/_video_head.html.erb -------------------------------------------------------------------------------- /website/views/contributing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/contributing.html.erb -------------------------------------------------------------------------------- /website/views/documentation/_sub-commands.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/_sub-commands.html.erb -------------------------------------------------------------------------------- /website/views/documentation/_tree.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/_tree.html.erb -------------------------------------------------------------------------------- /website/views/documentation/coffee-script.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/coffee-script.html.erb -------------------------------------------------------------------------------- /website/views/documentation/convert.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/convert.html.erb -------------------------------------------------------------------------------- /website/views/documentation/create.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/create.html.erb -------------------------------------------------------------------------------- /website/views/documentation/export.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/export.html.erb -------------------------------------------------------------------------------- /website/views/documentation/index.html.erb: -------------------------------------------------------------------------------- 1 | <% @title = "Documentation" %> 2 | 3 | <%= render "tree" %> -------------------------------------------------------------------------------- /website/views/documentation/layouts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/layouts.html.erb -------------------------------------------------------------------------------- /website/views/documentation/partials.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/partials.html.erb -------------------------------------------------------------------------------- /website/views/documentation/rails-prototyping-tutorial.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/rails-prototyping-tutorial.html.erb -------------------------------------------------------------------------------- /website/views/documentation/template-engines-and-file-types.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/template-engines-and-file-types.html.erb -------------------------------------------------------------------------------- /website/views/documentation/usage.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/usage.html.erb -------------------------------------------------------------------------------- /website/views/documentation/view-helpers.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/documentation/view-helpers.html.erb -------------------------------------------------------------------------------- /website/views/get-started.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/get-started.html.erb -------------------------------------------------------------------------------- /website/views/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/index.html.erb -------------------------------------------------------------------------------- /website/views/layouts/_gauges.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/layouts/_gauges.html.erb -------------------------------------------------------------------------------- /website/views/layouts/_google-analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/layouts/_google-analytics.html.erb -------------------------------------------------------------------------------- /website/views/layouts/default.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/layouts/default.html.erb -------------------------------------------------------------------------------- /website/views/mailing-list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/mailing-list.html.erb -------------------------------------------------------------------------------- /website/views/view_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlong/serve/HEAD/website/views/view_helpers.rb --------------------------------------------------------------------------------