├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── Rakefile ├── TODO.md ├── application.rb ├── assets ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ └── custom.css ├── img │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── markdown-mark.png │ ├── noise.png │ ├── paper.png │ └── screenshot.png └── js │ ├── bootstrap-alert.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── jquery.js ├── config.ru ├── favicon.ico ├── public └── views ├── all.erb ├── delete.erb ├── edit.erb ├── layout.erb └── show.erb /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/TODO.md -------------------------------------------------------------------------------- /application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/application.rb -------------------------------------------------------------------------------- /assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/css/bootstrap.css -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/css/custom.css -------------------------------------------------------------------------------- /assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /assets/img/markdown-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/img/markdown-mark.png -------------------------------------------------------------------------------- /assets/img/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/img/noise.png -------------------------------------------------------------------------------- /assets/img/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/img/paper.png -------------------------------------------------------------------------------- /assets/img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/img/screenshot.png -------------------------------------------------------------------------------- /assets/js/bootstrap-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/js/bootstrap-alert.js -------------------------------------------------------------------------------- /assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/js/bootstrap.js -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/assets/js/jquery.js -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/config.ru -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/favicon.ico -------------------------------------------------------------------------------- /public: -------------------------------------------------------------------------------- 1 | assets -------------------------------------------------------------------------------- /views/all.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/views/all.erb -------------------------------------------------------------------------------- /views/delete.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/views/delete.erb -------------------------------------------------------------------------------- /views/edit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/views/edit.erb -------------------------------------------------------------------------------- /views/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/views/layout.erb -------------------------------------------------------------------------------- /views/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/first20hours/codex/HEAD/views/show.erb --------------------------------------------------------------------------------