├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── application.rb ├── models │ └── todo.rb ├── templates │ ├── footer.haml │ └── todo.haml └── views │ ├── app_view.rb │ └── todo_view.rb ├── config.ru ├── index.html.haml ├── spec └── models │ └── todo_spec.rb └── vendor ├── base.css ├── bg.png └── jquery.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /build 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/Rakefile -------------------------------------------------------------------------------- /app/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/app/application.rb -------------------------------------------------------------------------------- /app/models/todo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/app/models/todo.rb -------------------------------------------------------------------------------- /app/templates/footer.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/app/templates/footer.haml -------------------------------------------------------------------------------- /app/templates/todo.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/app/templates/todo.haml -------------------------------------------------------------------------------- /app/views/app_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/app/views/app_view.rb -------------------------------------------------------------------------------- /app/views/todo_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/app/views/todo_view.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/config.ru -------------------------------------------------------------------------------- /index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/index.html.haml -------------------------------------------------------------------------------- /spec/models/todo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/spec/models/todo_spec.rb -------------------------------------------------------------------------------- /vendor/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/vendor/base.css -------------------------------------------------------------------------------- /vendor/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/vendor/bg.png -------------------------------------------------------------------------------- /vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opal/opal-todos/HEAD/vendor/jquery.js --------------------------------------------------------------------------------