├── .gitignore ├── .gitmodules ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.md ├── Procfile ├── Rakefile ├── Readme.md ├── app.rb ├── bin ├── rackup ├── rake └── thin ├── config.ru ├── dehtml5.rb ├── lib ├── auto_last_modified.rb └── sinatra_boilerplate.rb ├── models.rb ├── public ├── underscore.js └── zepto.js ├── rfc.rb ├── script ├── bootstrap └── console ├── searchable.rb ├── templates ├── definition_list.erb ├── document.erb ├── figure.erb ├── list.erb ├── reference.erb ├── section.erb ├── table.erb └── text.erb └── views ├── _print.scss ├── _screen.sass ├── _toc.scss ├── app.coffee ├── error.erb ├── index.erb ├── layout.erb ├── not_found.erb ├── opensearch.erb ├── search.erb ├── show.erb └── style.sass /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | .sass-cache 3 | tmp/ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/.gitmodules -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.0.0-p0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/Procfile -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/Rakefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/Readme.md -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/app.rb -------------------------------------------------------------------------------- /bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/bin/rackup -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/thin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/bin/thin -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/config.ru -------------------------------------------------------------------------------- /dehtml5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/dehtml5.rb -------------------------------------------------------------------------------- /lib/auto_last_modified.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/lib/auto_last_modified.rb -------------------------------------------------------------------------------- /lib/sinatra_boilerplate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/lib/sinatra_boilerplate.rb -------------------------------------------------------------------------------- /models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/models.rb -------------------------------------------------------------------------------- /public/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/public/underscore.js -------------------------------------------------------------------------------- /public/zepto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/public/zepto.js -------------------------------------------------------------------------------- /rfc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/rfc.rb -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec irb -r bundler/setup -r ./app.rb 3 | -------------------------------------------------------------------------------- /searchable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/searchable.rb -------------------------------------------------------------------------------- /templates/definition_list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/templates/definition_list.erb -------------------------------------------------------------------------------- /templates/document.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/templates/document.erb -------------------------------------------------------------------------------- /templates/figure.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/templates/figure.erb -------------------------------------------------------------------------------- /templates/list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/templates/list.erb -------------------------------------------------------------------------------- /templates/reference.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/templates/reference.erb -------------------------------------------------------------------------------- /templates/section.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/templates/section.erb -------------------------------------------------------------------------------- /templates/table.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/templates/table.erb -------------------------------------------------------------------------------- /templates/text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/templates/text.erb -------------------------------------------------------------------------------- /views/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/views/_print.scss -------------------------------------------------------------------------------- /views/_screen.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/views/_screen.sass -------------------------------------------------------------------------------- /views/_toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/views/_toc.scss -------------------------------------------------------------------------------- /views/app.coffee: -------------------------------------------------------------------------------- 1 | console.log "hello from Coffee" 2 | -------------------------------------------------------------------------------- /views/error.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/views/error.erb -------------------------------------------------------------------------------- /views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/views/index.erb -------------------------------------------------------------------------------- /views/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/views/layout.erb -------------------------------------------------------------------------------- /views/not_found.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/views/not_found.erb -------------------------------------------------------------------------------- /views/opensearch.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/views/opensearch.erb -------------------------------------------------------------------------------- /views/search.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/views/search.erb -------------------------------------------------------------------------------- /views/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/views/show.erb -------------------------------------------------------------------------------- /views/style.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rfc/HEAD/views/style.sass --------------------------------------------------------------------------------