├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── blacky.png │ │ └── rails.png │ ├── javascripts │ │ ├── app │ │ │ ├── controllers │ │ │ │ ├── .gitkeep │ │ │ │ └── dashboards.js.coffee │ │ │ ├── index.js.coffee │ │ │ ├── lib │ │ │ │ ├── .gitkeep │ │ │ │ ├── date.js │ │ │ │ ├── gfx.coffee │ │ │ │ ├── gfx.effects.coffee │ │ │ │ ├── spin.js │ │ │ │ └── view.js.coffee │ │ │ ├── models │ │ │ │ ├── .gitkeep │ │ │ │ ├── calendar_event.js.coffee │ │ │ │ ├── email.js.coffee │ │ │ │ └── user.js.coffee │ │ │ └── views │ │ │ │ ├── .gitkeep │ │ │ │ ├── dashboard.jst.eco │ │ │ │ └── dashboard │ │ │ │ ├── calendar.jst.eco │ │ │ │ └── email.jst.eco │ │ └── application.js │ └── stylesheets │ │ ├── app │ │ └── dashboard.css.styl │ │ ├── application.css.styl │ │ ├── mixins.styl │ │ └── theme.css.styl ├── controllers │ ├── app_controller.rb │ ├── application_controller.rb │ ├── authorize_controller.rb │ └── users_controller.rb ├── helpers │ ├── app_helper.rb │ ├── application_helper.rb │ ├── authorize_helper.rb │ └── users_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ └── user.rb └── views │ ├── app │ └── index.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 │ ├── omniauth.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml └── routes.rb ├── db ├── migrate │ └── 20120128032530_create_users.rb ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── lib ├── assets │ └── .gitkeep ├── google.rb └── tasks │ ├── .gitkeep │ └── macgap.rake ├── log └── .gitkeep ├── macgap ├── application.icns ├── application.png └── index.html ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── script └── rails ├── test ├── fixtures │ ├── .gitkeep │ ├── notes.yml │ └── users.yml ├── functional │ ├── .gitkeep │ ├── app_controller_test.rb │ ├── authorize_controller_test.rb │ └── users_controller_test.rb ├── integration │ └── .gitkeep ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ ├── .gitkeep │ ├── helpers │ ├── app_helper_test.rb │ ├── authorize_helper_test.rb │ └── users_helper_test.rb │ ├── note_test.rb │ └── user_test.rb └── vendor ├── assets ├── javascripts │ └── .gitkeep └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec thin -R config.ru start -p $PORT -e ${RACK_ENV:-development} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/blacky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/images/blacky.png -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/javascripts/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/app/controllers/dashboards.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/controllers/dashboards.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/index.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/index.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/app/lib/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/lib/date.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/lib/gfx.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/lib/gfx.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/lib/gfx.effects.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/lib/gfx.effects.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/lib/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/lib/spin.js -------------------------------------------------------------------------------- /app/assets/javascripts/app/lib/view.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/lib/view.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/app/models/calendar_event.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/models/calendar_event.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/models/email.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/models/email.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/models/user.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/models/user.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/app/views/dashboard.jst.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/views/dashboard.jst.eco -------------------------------------------------------------------------------- /app/assets/javascripts/app/views/dashboard/calendar.jst.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/views/dashboard/calendar.jst.eco -------------------------------------------------------------------------------- /app/assets/javascripts/app/views/dashboard/email.jst.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/app/views/dashboard/email.jst.eco -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/app/dashboard.css.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/stylesheets/app/dashboard.css.styl -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/stylesheets/application.css.styl -------------------------------------------------------------------------------- /app/assets/stylesheets/mixins.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/stylesheets/mixins.styl -------------------------------------------------------------------------------- /app/assets/stylesheets/theme.css.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/assets/stylesheets/theme.css.styl -------------------------------------------------------------------------------- /app/controllers/app_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/controllers/app_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/authorize_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/controllers/authorize_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/app_helper.rb: -------------------------------------------------------------------------------- 1 | module AppHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/authorize_helper.rb: -------------------------------------------------------------------------------- 1 | module AuthorizeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/app/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/views/app/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20120128032530_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/db/migrate/20120128032530_create_users.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/google.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/lib/google.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/macgap.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/lib/tasks/macgap.rake -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macgap/application.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/macgap/application.icns -------------------------------------------------------------------------------- /macgap/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/macgap/application.png -------------------------------------------------------------------------------- /macgap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/macgap/index.html -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/script/rails -------------------------------------------------------------------------------- /test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/fixtures/notes.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/functional/app_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/functional/app_controller_test.rb -------------------------------------------------------------------------------- /test/functional/authorize_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/functional/authorize_controller_test.rb -------------------------------------------------------------------------------- /test/functional/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/functional/users_controller_test.rb -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/helpers/app_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/unit/helpers/app_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/authorize_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/unit/helpers/authorize_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/users_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/unit/helpers/users_helper_test.rb -------------------------------------------------------------------------------- /test/unit/note_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/unit/note_test.rb -------------------------------------------------------------------------------- /test/unit/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maccman/headsup/HEAD/test/unit/user_test.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------