├── ember ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── rails.png │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── ember-data.js │ │ │ ├── ember.js │ │ │ └── todos.js.coffee │ │ └── stylesheets │ │ │ ├── application.css │ │ │ ├── scaffolds.css.scss │ │ │ └── todos.css.scss │ ├── controllers │ │ ├── application_controller.rb │ │ └── todos_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ └── todos_helper.rb │ ├── mailers │ │ └── .gitkeep │ ├── models │ │ ├── .gitkeep │ │ └── todo.rb │ └── views │ │ ├── layouts │ │ └── application.html.erb │ │ └── todos │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── backtrace_silencers.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── secret_token.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ └── routes.rb ├── db │ ├── migrate │ │ ├── 20120110202006_create_todos.rb │ │ └── 20120113204024_change_done_in_todos.rb │ ├── schema.rb │ └── seeds.rb ├── doc │ └── README_FOR_APP ├── lib │ ├── assets │ │ └── .gitkeep │ └── tasks │ │ └── .gitkeep ├── log │ └── .gitkeep ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── index.html │ └── robots.txt ├── script │ └── rails ├── test │ ├── fixtures │ │ ├── .gitkeep │ │ └── todos.yml │ ├── functional │ │ ├── .gitkeep │ │ └── todos_controller_test.rb │ ├── integration │ │ └── .gitkeep │ ├── performance │ │ └── browsing_test.rb │ ├── test_helper.rb │ └── unit │ │ ├── .gitkeep │ │ ├── helpers │ │ └── todos_helper_test.rb │ │ └── todo_test.rb └── vendor │ ├── assets │ └── stylesheets │ │ └── .gitkeep │ └── plugins │ └── .gitkeep └── todo ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── README ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── destroy.png │ │ └── rails.png │ ├── javascripts │ │ ├── application.js │ │ ├── backbone │ │ │ ├── collections │ │ │ │ └── items_collection.js.coffee │ │ │ ├── models │ │ │ │ ├── .gitkeep │ │ │ │ └── item.js.coffee │ │ │ ├── routers │ │ │ │ └── .gitkeep │ │ │ ├── templates │ │ │ │ ├── .gitkeep │ │ │ │ ├── item.jst.ejs │ │ │ │ └── stats.jst.ejs │ │ │ ├── todo.js.coffee │ │ │ ├── vendor │ │ │ │ └── backbone-localstorage.js │ │ │ └── views │ │ │ │ ├── .gitkeep │ │ │ │ ├── app_view.js.coffee │ │ │ │ └── item_view.js.coffee │ │ └── items.js.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── items.css.scss │ │ └── scaffolds.css.scss ├── controllers │ ├── application_controller.rb │ └── items_controller.rb ├── helpers │ ├── application_helper.rb │ └── items_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ └── item.rb └── views │ ├── items │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ └── layouts │ └── application.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml └── routes.rb ├── db ├── migrate │ └── 20111112203339_create_items.rb ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── lib ├── assets │ └── .gitkeep └── tasks │ └── .gitkeep ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── index.html └── robots.txt ├── script └── rails ├── spec ├── controllers │ └── items_controller_spec.rb ├── helpers │ └── items_helper_spec.rb ├── javascripts │ ├── backbone │ │ ├── collections │ │ │ └── items_collection_spec.js.coffee │ │ ├── models │ │ │ └── item_spec.js.coffee │ │ └── views │ │ │ ├── app_view_spec.js.coffee │ │ │ └── item_view_spec.js.coffee │ ├── spec.js │ └── support │ │ ├── jasmine-jquery.js │ │ ├── jasmine-sinon.js │ │ └── sinon.js ├── models │ └── item_spec.rb ├── requests │ └── items_spec.rb ├── routing │ └── items_routing_spec.rb └── views │ └── items │ ├── edit.html.erb_spec.rb │ ├── index.html.erb_spec.rb │ ├── new.html.erb_spec.rb │ └── show.html.erb_spec.rb ├── test ├── fixtures │ └── .gitkeep ├── functional │ └── .gitkeep ├── integration │ └── .gitkeep ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ └── .gitkeep └── vendor ├── assets └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /ember/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/.gitignore -------------------------------------------------------------------------------- /ember/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/Gemfile -------------------------------------------------------------------------------- /ember/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/Gemfile.lock -------------------------------------------------------------------------------- /ember/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/README -------------------------------------------------------------------------------- /ember/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/Rakefile -------------------------------------------------------------------------------- /ember/app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/assets/images/rails.png -------------------------------------------------------------------------------- /ember/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /ember/app/assets/javascripts/ember-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/assets/javascripts/ember-data.js -------------------------------------------------------------------------------- /ember/app/assets/javascripts/ember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/assets/javascripts/ember.js -------------------------------------------------------------------------------- /ember/app/assets/javascripts/todos.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/assets/javascripts/todos.js.coffee -------------------------------------------------------------------------------- /ember/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /ember/app/assets/stylesheets/scaffolds.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/assets/stylesheets/scaffolds.css.scss -------------------------------------------------------------------------------- /ember/app/assets/stylesheets/todos.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/assets/stylesheets/todos.css.scss -------------------------------------------------------------------------------- /ember/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /ember/app/controllers/todos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/controllers/todos_controller.rb -------------------------------------------------------------------------------- /ember/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /ember/app/helpers/todos_helper.rb: -------------------------------------------------------------------------------- 1 | module TodosHelper 2 | end 3 | -------------------------------------------------------------------------------- /ember/app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember/app/models/todo.rb: -------------------------------------------------------------------------------- 1 | class Todo < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /ember/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /ember/app/views/todos/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/views/todos/_form.html.erb -------------------------------------------------------------------------------- /ember/app/views/todos/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/views/todos/edit.html.erb -------------------------------------------------------------------------------- /ember/app/views/todos/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/views/todos/index.html.erb -------------------------------------------------------------------------------- /ember/app/views/todos/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/views/todos/new.html.erb -------------------------------------------------------------------------------- /ember/app/views/todos/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/app/views/todos/show.html.erb -------------------------------------------------------------------------------- /ember/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config.ru -------------------------------------------------------------------------------- /ember/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/application.rb -------------------------------------------------------------------------------- /ember/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/boot.rb -------------------------------------------------------------------------------- /ember/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/database.yml -------------------------------------------------------------------------------- /ember/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/environment.rb -------------------------------------------------------------------------------- /ember/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/environments/development.rb -------------------------------------------------------------------------------- /ember/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/environments/production.rb -------------------------------------------------------------------------------- /ember/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/environments/test.rb -------------------------------------------------------------------------------- /ember/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /ember/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/initializers/inflections.rb -------------------------------------------------------------------------------- /ember/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /ember/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /ember/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/initializers/session_store.rb -------------------------------------------------------------------------------- /ember/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /ember/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/locales/en.yml -------------------------------------------------------------------------------- /ember/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/config/routes.rb -------------------------------------------------------------------------------- /ember/db/migrate/20120110202006_create_todos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/db/migrate/20120110202006_create_todos.rb -------------------------------------------------------------------------------- /ember/db/migrate/20120113204024_change_done_in_todos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/db/migrate/20120113204024_change_done_in_todos.rb -------------------------------------------------------------------------------- /ember/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/db/schema.rb -------------------------------------------------------------------------------- /ember/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/db/seeds.rb -------------------------------------------------------------------------------- /ember/doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/doc/README_FOR_APP -------------------------------------------------------------------------------- /ember/lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember/lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/public/404.html -------------------------------------------------------------------------------- /ember/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/public/422.html -------------------------------------------------------------------------------- /ember/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/public/500.html -------------------------------------------------------------------------------- /ember/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/public/index.html -------------------------------------------------------------------------------- /ember/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/public/robots.txt -------------------------------------------------------------------------------- /ember/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/script/rails -------------------------------------------------------------------------------- /ember/test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember/test/fixtures/todos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/test/fixtures/todos.yml -------------------------------------------------------------------------------- /ember/test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember/test/functional/todos_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/test/functional/todos_controller_test.rb -------------------------------------------------------------------------------- /ember/test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember/test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /ember/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/test/test_helper.rb -------------------------------------------------------------------------------- /ember/test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember/test/unit/helpers/todos_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/test/unit/helpers/todos_helper_test.rb -------------------------------------------------------------------------------- /ember/test/unit/todo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/ember/test/unit/todo_test.rb -------------------------------------------------------------------------------- /ember/vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember/vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/.gitignore -------------------------------------------------------------------------------- /todo/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/Gemfile -------------------------------------------------------------------------------- /todo/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/Gemfile.lock -------------------------------------------------------------------------------- /todo/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/Guardfile -------------------------------------------------------------------------------- /todo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/README -------------------------------------------------------------------------------- /todo/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/Rakefile -------------------------------------------------------------------------------- /todo/app/assets/images/destroy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/images/destroy.png -------------------------------------------------------------------------------- /todo/app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/images/rails.png -------------------------------------------------------------------------------- /todo/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/collections/items_collection.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/javascripts/backbone/collections/items_collection.js.coffee -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/models/item.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/javascripts/backbone/models/item.js.coffee -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/routers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/templates/item.jst.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/javascripts/backbone/templates/item.jst.ejs -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/templates/stats.jst.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/javascripts/backbone/templates/stats.jst.ejs -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/todo.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/javascripts/backbone/todo.js.coffee -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/vendor/backbone-localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/javascripts/backbone/vendor/backbone-localstorage.js -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/views/app_view.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/javascripts/backbone/views/app_view.js.coffee -------------------------------------------------------------------------------- /todo/app/assets/javascripts/backbone/views/item_view.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/javascripts/backbone/views/item_view.js.coffee -------------------------------------------------------------------------------- /todo/app/assets/javascripts/items.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/javascripts/items.js.coffee -------------------------------------------------------------------------------- /todo/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /todo/app/assets/stylesheets/items.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/stylesheets/items.css.scss -------------------------------------------------------------------------------- /todo/app/assets/stylesheets/scaffolds.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/assets/stylesheets/scaffolds.css.scss -------------------------------------------------------------------------------- /todo/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /todo/app/controllers/items_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/controllers/items_controller.rb -------------------------------------------------------------------------------- /todo/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /todo/app/helpers/items_helper.rb: -------------------------------------------------------------------------------- 1 | module ItemsHelper 2 | end 3 | -------------------------------------------------------------------------------- /todo/app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/app/models/item.rb: -------------------------------------------------------------------------------- 1 | class Item < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /todo/app/views/items/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/views/items/_form.html.erb -------------------------------------------------------------------------------- /todo/app/views/items/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/views/items/edit.html.erb -------------------------------------------------------------------------------- /todo/app/views/items/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/views/items/index.html.erb -------------------------------------------------------------------------------- /todo/app/views/items/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/views/items/new.html.erb -------------------------------------------------------------------------------- /todo/app/views/items/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/views/items/show.html.erb -------------------------------------------------------------------------------- /todo/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /todo/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config.ru -------------------------------------------------------------------------------- /todo/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/application.rb -------------------------------------------------------------------------------- /todo/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/boot.rb -------------------------------------------------------------------------------- /todo/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/database.yml -------------------------------------------------------------------------------- /todo/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/environment.rb -------------------------------------------------------------------------------- /todo/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/environments/development.rb -------------------------------------------------------------------------------- /todo/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/environments/production.rb -------------------------------------------------------------------------------- /todo/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/environments/test.rb -------------------------------------------------------------------------------- /todo/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /todo/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/initializers/inflections.rb -------------------------------------------------------------------------------- /todo/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /todo/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /todo/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/initializers/session_store.rb -------------------------------------------------------------------------------- /todo/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /todo/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/locales/en.yml -------------------------------------------------------------------------------- /todo/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/config/routes.rb -------------------------------------------------------------------------------- /todo/db/migrate/20111112203339_create_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/db/migrate/20111112203339_create_items.rb -------------------------------------------------------------------------------- /todo/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/db/schema.rb -------------------------------------------------------------------------------- /todo/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/db/seeds.rb -------------------------------------------------------------------------------- /todo/doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/doc/README_FOR_APP -------------------------------------------------------------------------------- /todo/lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/public/404.html -------------------------------------------------------------------------------- /todo/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/public/422.html -------------------------------------------------------------------------------- /todo/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/public/500.html -------------------------------------------------------------------------------- /todo/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/public/index.html -------------------------------------------------------------------------------- /todo/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/public/robots.txt -------------------------------------------------------------------------------- /todo/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/script/rails -------------------------------------------------------------------------------- /todo/spec/controllers/items_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/controllers/items_controller_spec.rb -------------------------------------------------------------------------------- /todo/spec/helpers/items_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/helpers/items_helper_spec.rb -------------------------------------------------------------------------------- /todo/spec/javascripts/backbone/collections/items_collection_spec.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/javascripts/backbone/collections/items_collection_spec.js.coffee -------------------------------------------------------------------------------- /todo/spec/javascripts/backbone/models/item_spec.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/javascripts/backbone/models/item_spec.js.coffee -------------------------------------------------------------------------------- /todo/spec/javascripts/backbone/views/app_view_spec.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/javascripts/backbone/views/app_view_spec.js.coffee -------------------------------------------------------------------------------- /todo/spec/javascripts/backbone/views/item_view_spec.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/javascripts/backbone/views/item_view_spec.js.coffee -------------------------------------------------------------------------------- /todo/spec/javascripts/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/javascripts/spec.js -------------------------------------------------------------------------------- /todo/spec/javascripts/support/jasmine-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/javascripts/support/jasmine-jquery.js -------------------------------------------------------------------------------- /todo/spec/javascripts/support/jasmine-sinon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/javascripts/support/jasmine-sinon.js -------------------------------------------------------------------------------- /todo/spec/javascripts/support/sinon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/javascripts/support/sinon.js -------------------------------------------------------------------------------- /todo/spec/models/item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/models/item_spec.rb -------------------------------------------------------------------------------- /todo/spec/requests/items_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/requests/items_spec.rb -------------------------------------------------------------------------------- /todo/spec/routing/items_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/routing/items_routing_spec.rb -------------------------------------------------------------------------------- /todo/spec/views/items/edit.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/views/items/edit.html.erb_spec.rb -------------------------------------------------------------------------------- /todo/spec/views/items/index.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/views/items/index.html.erb_spec.rb -------------------------------------------------------------------------------- /todo/spec/views/items/new.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/views/items/new.html.erb_spec.rb -------------------------------------------------------------------------------- /todo/spec/views/items/show.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/spec/views/items/show.html.erb_spec.rb -------------------------------------------------------------------------------- /todo/test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /todo/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arailsdemo/screencasts/HEAD/todo/test/test_helper.rb -------------------------------------------------------------------------------- /todo/test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------