gitextract_qn1g7olk/ ├── .document ├── .gitignore ├── .rspec ├── .ruby-gemset ├── .ruby-version ├── .travis.yml ├── CHANGELOG.rdoc ├── Gemfile ├── LICENSE ├── README.rdoc ├── Rakefile ├── VERSION ├── artwork/ │ ├── logo.ai │ └── video_thumb.psd ├── lib/ │ ├── 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 │ │ │ ├── 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.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 │ ├── less/ │ │ └── styles.less │ ├── markdown/ │ │ └── index.markdown │ ├── markdown.erb/ │ │ ├── _footer.html.markdown.erb │ │ ├── _layout.html.erb │ │ └── index.html.markdown.erb │ ├── 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 ├── compass.config ├── config.ru ├── public/ │ ├── .htaccess │ ├── 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