├── .dockerignore ├── .gitignore ├── .gitmodules ├── .rspec ├── .travis.yml ├── Bowerfile ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── Vagrantfile.TEMPLATE ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── clothing │ │ │ ├── large │ │ │ └── missing.jpg │ │ │ ├── medium │ │ │ └── missing.jpg │ │ │ └── small │ │ │ └── missing.jpg │ ├── javascripts │ │ ├── admin.js.coffee │ │ ├── application.js │ │ ├── bootstrap.js.coffee │ │ ├── cal-heatmap.min.js │ │ ├── clothing.coffee │ │ ├── grocery_list_items.coffee │ │ ├── grocery_lists.coffee │ │ ├── jquery.sparkline.min.js │ │ ├── quantified.js │ │ ├── services.js.coffee │ │ ├── signups.js.coffee │ │ └── timeline_events.js.coffee │ └── stylesheets │ │ ├── _forms.sass │ │ ├── _mixins.sass │ │ ├── _patterns.sass │ │ ├── _reset.sass │ │ ├── _scaffolding.sass │ │ ├── _tables.sass │ │ ├── _type.sass │ │ ├── _variables.sass │ │ ├── admin.css.scss │ │ ├── application.css.scss │ │ ├── bootstrap_and_overrides.css │ │ ├── cal-heatmap.css │ │ ├── compass_bootstrap.sass │ │ ├── grocery_list_items.css.scss │ │ ├── grocery_lists.css.scss │ │ ├── ie.sass │ │ ├── mobile.sass │ │ ├── offline.sass │ │ ├── print.sass │ │ ├── scaffolds.css.scss │ │ ├── scaffolds.scss │ │ ├── screen.sass │ │ ├── style.sass │ │ └── timeline_events.css.scss ├── controllers │ ├── admin_controller.rb │ ├── api │ │ └── v1 │ │ │ ├── records_controller.rb │ │ │ └── tokens_controller.rb │ ├── application_controller.rb │ ├── clothing_controller.rb │ ├── clothing_logs_controller.rb │ ├── contexts_controller.rb │ ├── csa_foods_controller.rb │ ├── decision_logs_controller.rb │ ├── decisions_controller.rb │ ├── foods_controller.rb │ ├── goals_controller.rb │ ├── grocery_list_items_controller.rb │ ├── grocery_lists_controller.rb │ ├── home_controller.rb │ ├── library_items_controller.rb │ ├── location_histories_controller.rb │ ├── measurement_logs_controller.rb │ ├── measurements_controller.rb │ ├── memories_controller.rb │ ├── receipt_item_categories_controller.rb │ ├── receipt_item_types_controller.rb │ ├── receipt_items_controller.rb │ ├── record_categories_controller.rb │ ├── records_controller.rb │ ├── registrations_controller.rb │ ├── services_controller.rb │ ├── sessions_controller.rb │ ├── stuff_controller.rb │ ├── tap_log_records_controller.rb │ ├── time_controller.rb │ ├── timeline_events_controller.rb │ ├── toronto_libraries_controller.rb │ └── users_controller.rb ├── helpers │ ├── application_helper.rb │ ├── clothing_helper.rb │ ├── grocery_list_items_helper.rb │ ├── grocery_lists_helper.rb │ └── stuff_helper.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── ability.rb │ ├── application_record.rb │ ├── clothing.rb │ ├── clothing_log.rb │ ├── clothing_match.rb │ ├── context.rb │ ├── context_rule.rb │ ├── csa_food.rb │ ├── day.rb │ ├── decision.rb │ ├── decision_log.rb │ ├── food.rb │ ├── goal.rb │ ├── grocery_list.rb │ ├── grocery_list_item.rb │ ├── grocery_list_user.rb │ ├── library_item.rb │ ├── location_history.rb │ ├── measurement.rb │ ├── measurement_log.rb │ ├── memory.rb │ ├── receipt_item.rb │ ├── receipt_item_category.rb │ ├── receipt_item_type.rb │ ├── record.rb │ ├── record_category.rb │ ├── service.rb │ ├── signup.rb │ ├── stuff.rb │ ├── stuff_observer.rb │ ├── tap_log_record.rb │ ├── time_record.rb │ ├── timeline_event.rb │ ├── toronto_library.rb │ └── user.rb └── views │ ├── admin │ ├── activity.html.haml │ ├── index.html.haml │ └── signups.html.haml │ ├── api │ └── offline │ │ └── v1 │ │ └── offline │ │ ├── bulk_track.html.haml │ │ └── track.html.haml │ ├── application │ ├── _clothing_log_entry.html.haml │ ├── _clothing_thumbnails.html.erb │ ├── _colors.html.haml │ ├── _current_activity.html.haml │ ├── _filters.html.haml │ ├── _footer.html.haml │ ├── _hierarchical_graph.html.haml │ ├── _login.html.haml │ ├── _main_nav.html.haml │ ├── _mobile_nav.html.haml │ ├── _quick_record.html.haml │ ├── _sidebar.html.haml │ └── _time_sparklines.html.erb │ ├── application_mailer │ ├── feedback.text.erb │ └── welcome.text.erb │ ├── clothing │ ├── _clothing_thumbnails.html.erb │ ├── _form.html.haml │ ├── _nav.html.haml │ ├── analyze.html.haml │ ├── bulk.html.haml │ ├── edit.html.haml │ ├── graph.html.erb │ ├── index.html.haml │ ├── missing_info.html.haml │ ├── missing_pictures.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── clothing_logs │ ├── _by_date.html.haml │ ├── _form.html.haml │ ├── by_date.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── matches.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── contexts │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ ├── show.html.haml │ └── start.html.haml │ ├── csa_foods │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── decision_logs │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── decisions │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── devise │ ├── confirmations │ │ └── new.html.haml │ ├── invitations │ │ ├── edit.html.haml │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── invitation_instructions.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.haml │ │ └── new.html.haml │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ └── _links.erb │ └── unlocks │ │ └── new.html.erb │ ├── foods │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── goals │ ├── _explain_goal.html.haml │ ├── _form.html.haml │ ├── _summary.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── grocery_list_items │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── grocery_lists │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── home │ ├── feedback.html.haml │ ├── index.html.haml │ ├── menu.html.haml │ ├── mobile_index.html.haml │ ├── show.html.haml │ ├── summary.html.haml │ ├── terms_privacy.html.haml │ └── thanks_for_signing_up.html.haml │ ├── layouts │ ├── application.html.haml │ └── sign.html.haml │ ├── library_items │ ├── _form.html.haml │ ├── _nav.html.haml │ ├── current.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── location_histories │ ├── _list.html.haml │ ├── index.html.haml │ └── show.html.haml │ ├── measurement_logs │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── measurements │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── memories │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── receipt_item_categories │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── receipt_item_types │ ├── _form.html.haml │ ├── _nav.html.haml │ ├── batch_entry.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── receipt_items │ ├── _form.html.haml │ ├── _nav.html.haml │ ├── batch_entry.html.haml │ ├── edit.html.haml │ ├── graph.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── record_categories │ ├── _activity_summary.html.haml │ ├── _form.html.haml │ ├── _list.html.haml │ ├── disambiguate.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ ├── show.html.haml │ └── tree.html.haml │ ├── records │ ├── _form.html.haml │ ├── _summary.html.haml │ ├── batch.html.haml │ ├── edit.html.haml │ ├── help.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── registrations │ ├── _form.html.haml │ ├── edit.html.erb │ └── new.html.haml │ ├── sessions │ └── new.html.haml │ ├── stuff │ ├── _form.html.haml │ ├── _list.html.haml │ ├── _nav.html.haml │ ├── _quicklog.html.haml │ ├── bulk.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── tap_log_records │ ├── _form.html.haml │ ├── _summary.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── time │ ├── _activity_summary.html.haml │ ├── _activity_summary_daily.html.haml │ ├── _activity_summary_monthly.html.haml │ ├── _activity_summary_weekly.html.haml │ ├── _activity_summary_yearly.html.haml │ ├── _by_day_summary.html.haml │ ├── _nav.html.haml │ ├── _start_end_form.html.erb │ ├── circle.html.erb │ ├── clock.html.erb │ ├── dashboard.html.haml │ ├── graph.html.haml │ ├── index.html.haml │ ├── index_org.html.haml │ ├── refresh.html.haml │ └── review.html.haml │ ├── timeline_events │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── toronto_libraries │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ └── users │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml ├── config.ru ├── config ├── application.bundler.rb ├── application.rb ├── application.yml ├── boot.rb ├── compass.rb ├── cucumber.yml ├── database.yml ├── database.yml.sample ├── environment.rb ├── environments │ ├── api.rb │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── ancestry.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── extensions.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── logger.rb │ ├── mime_types.rb │ ├── new_framework_defaults.rb │ ├── sass.rb │ ├── secret_token.rb.sample │ ├── session_store.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ ├── unbreak_string.rb │ ├── will_paginate.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── devise_invitable.en.yml │ ├── en.yml │ ├── formats.en.yml │ ├── formats.yml │ └── simple_form.en.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20110820144418_create_books.rb │ ├── 20110826215427_create_clothing.rb │ ├── 20110826220208_create_clothing_logs.rb │ ├── 20110826225445_acts_as_taggable_on_migration.rb │ ├── 20110826232012_rename_clothing_label_to_clothing_title.rb │ ├── 20110827030504_change_date_format_for_clothing_log.rb │ ├── 20110828024228_create_time_records.rb │ ├── 20110829035737_create_decisions.rb │ ├── 20110829035756_create_decision_logs.rb │ ├── 20110829041327_add_decision_id_to_decision_logs.rb │ ├── 20110829042946_add_rating_to_decisions.rb │ ├── 20110906235351_devise_create_users.rb │ ├── 20110918021046_add_status_to_clothing.rb │ ├── 20110924142745_create_library_items.rb │ ├── 20110925214514_add_hsl_to_clothing.rb │ ├── 20110926003856_add_status_to_library_items.rb │ ├── 20110928030551_add_cost_to_clothing.rb │ ├── 20111014095310_add_outfit_id_to_clothing_logs.rb │ ├── 20111018005353_create_clothing_matches.rb │ ├── 20111018014029_add_default_outfit_id.rb │ ├── 20111020103009_add_last_worn_and_count_to_clothing.rb │ ├── 20111020205637_create_foods.rb │ ├── 20111020205727_create_csa_foods.rb │ ├── 20111020222103_add_dates_to_library_item.rb │ ├── 20111020224001_add_info_to_toronto_library.rb │ ├── 20111020233817_add_toronto_library_id_to_toronto_libraries.rb │ ├── 20111021005528_add_memento_mori_to_user.rb │ ├── 20111021012013_create_days.rb │ ├── 20111021195343_add_isbn_to_library_items.rb │ ├── 20111021200036_add_private_to_library_items.rb │ ├── 20111021203839_change_private_to_public.rb │ ├── 20111022134352_drop_number_from_clothing.rb │ ├── 20111022144608_create_measurements.rb │ ├── 20111022144646_create_measurement_logs.rb │ ├── 20111023010644_add_notes_to_library_items.rb │ ├── 20111023120347_add_price_to_library_items.rb │ ├── 20111023120630_add_pages_to_library_items.rb │ ├── 20111031235324_create_stuff.rb │ ├── 20111101101955_add_sum_to_measurements.rb │ ├── 20111102232850_change_location_to_association.rb │ ├── 20111102233224_create_location_histories.rb │ ├── 20111102233253_create_locations.rb │ ├── 20111103003628_add_home_location_to_stuff.rb │ ├── 20111103013724_add_location_status_to_stuff.rb │ ├── 20111104102959_change_date_received_to_date.rb │ ├── 20111107111930_add_user_ids_to_everything.rb │ ├── 20111107113903_add_role_to_users.rb │ ├── 20111107114455_create_settings.rb │ ├── 20111107120811_add_username_to_user.rb │ ├── 20111110021956_create_contexts.rb │ ├── 20111129024218_create_memories.rb │ ├── 20111203151502_create_tap_log_records.rb │ ├── 20111203171307_add_status_to_tap_log_record.rb │ ├── 20111207003824_add_info_to_tap_log_records.rb │ ├── 20111207015304_add_duration_to_tap_log_records.rb │ ├── 20111212000102_add_devise_columns_to_user.rb │ ├── 20111212005705_add_source_to_tap_log_records.rb │ ├── 20111214024204_add_time_and_rating_to_memories.rb │ ├── 20111214041042_create_signups.rb │ ├── 20111223144028_create_record_categories.rb │ ├── 20111223154542_create_records.rb │ ├── 20111223191834_add_nolink_to_record_category.rb │ ├── 20111224130846_add_date_to_record.rb │ ├── 20111224174240_move_old_time_records.rb │ ├── 20111225133526_add_color_to_record_category.rb │ ├── 20111226164500_create_services.rb │ ├── 20120102200456_add_data_to_users.rb │ ├── 20120102201030_add_file_to_clothing.rb │ ├── 20120102211431_rename_colour_to_color.rb │ ├── 20120111014846_create_goals.rb │ ├── 20120112174036_devise_invitable_add_to_users.rb │ ├── 20120113173919_add_confirmable.rb │ ├── 20120113184040_add_approved_to_user.rb │ ├── 20120113184311_upgrade_devise.rb │ ├── 20120115051056_add_stuff_type_and_merge_locations.rb │ ├── 20120115171633_drop_polymorphic_from_stuff.rb │ ├── 20120115184226_change_location_histories.rb │ ├── 20120115193034_create_context_rules.rb │ ├── 20120115215056_change_context_to_serialize.rb │ ├── 20120124203841_convert_record_data.rb │ ├── 20120127231840_add_manual_to_records.rb │ ├── 20120715160943_create_timeline_events.rb │ ├── 20120728132009_add_date_to_memories.rb │ ├── 20120810150517_add_clothing_log_date_to_clothing_matches.rb │ ├── 20121226135854_add_details_to_library_items.rb │ ├── 20130102150645_add_active_to_record_categories.rb │ ├── 20130604162414_change_source_to_source_name_in_record.rb │ ├── 20130617200651_add_id_to_clothing_matches.rb │ ├── 20130706235901_create_receipt_items.rb │ ├── 20130707030405_create_receipt_item_categories.rb │ ├── 20130707030513_create_receipt_item_types.rb │ ├── 20130707030854_add_receipt_item_type_id_to_receipt_items.rb │ ├── 20130708210423_add_receipt_item_category_id_to_receipt_item_type.rb │ ├── 20130812181255_add_status_to_goals.rb │ ├── 20141023160739_add_missing_unique_indices.acts_as_taggable_on_engine.rb │ ├── 20141023160740_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb │ ├── 20141023160741_add_missing_taggable_index.acts_as_taggable_on_engine.rb │ ├── 20141025183126_create_grocery_lists.rb │ ├── 20141025183259_create_grocery_list_items.rb │ ├── 20141025194910_add_receipt_item_category_id_to_grocery_list_items.rb │ ├── 20141103162500_create_grocery_list_users.rb │ └── 20241002161025_add_ancestry_to_record_categories.rb ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── features ├── clothing.feature ├── clothing_logs.feature ├── framework.feature ├── goals.feature ├── kitchen.feature ├── life.feature ├── memories.feature ├── record_categories.feature ├── step_definitions │ ├── clothing_logs_steps.rb │ ├── clothing_steps.rb │ ├── context_steps.rb │ ├── email_steps.rb │ ├── factory_steps.rb │ ├── goals_steps.rb │ ├── kitchen_steps.rb │ ├── life_steps.rb │ ├── omniauth_steps.rb │ ├── record_categories_steps.rb │ └── user_steps.rb ├── stuff.feature ├── support │ └── env.rb └── user.feature ├── lib ├── core_extensions │ └── object.rb ├── exceptions.rb ├── old_records.rb └── tasks │ ├── .gitkeep │ ├── awesome.rake │ ├── cron.rake │ ├── cucumber.rake │ └── library.rake ├── lisp └── quantified.el ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── images │ ├── clothing │ │ ├── large │ │ │ └── missing.jpg │ │ ├── medium │ │ │ └── missing.jpg │ │ └── small │ │ │ └── missing.jpg │ ├── grid.png │ └── rails.png ├── robots.txt └── stylesheets │ ├── admin.css.css │ ├── compass_bootstrap.css │ ├── ie.css │ ├── mobile.css │ ├── offline.css │ ├── print.css │ ├── scaffolds.css │ ├── scaffolds.css.css │ ├── screen.css │ ├── style.css.css │ └── timeline_events.css.css ├── script ├── cucumber └── rails ├── spec ├── controllers │ ├── admin_controller_spec.rb │ ├── api_v1_records_controller_spec.rb │ ├── api_v1_tokens_controller_spec.rb │ ├── application_controller_spec.rb │ ├── contexts_controller_spec.rb │ ├── csa_foods_controller_spec.rb │ ├── decision_logs_controller_spec.rb │ ├── decisions_controller_spec.rb │ ├── foods_controller_spec.rb │ ├── goals_controller_spec.rb │ ├── grocery_list_items_controller_spec.rb │ ├── grocery_lists_controller_spec.rb │ ├── home_controller_spec.rb │ ├── library_items_controller_spec.rb │ ├── location_histories_controller_spec.rb │ ├── measurement_logs_controller_spec.rb │ ├── measurements_controller_spec.rb │ ├── memories_controller_spec.rb │ ├── receipt_item_categories_controller_spec.rb │ ├── receipt_item_types_controller_spec.rb │ ├── receipt_items_controller_spec.rb │ ├── record_categories_controller_spec.rb │ ├── records_controller_spec.rb │ ├── registrations_controller_spec.rb │ ├── services_controller_spec.rb │ ├── sessions_controller_spec.rb │ ├── stuff_controller_spec.rb │ ├── tap_log_records_controller_spec.rb │ ├── time_controller_spec.rb │ ├── timeline_events_controller_spec.rb │ ├── toronto_libraries_controller_spec.rb │ └── users_controller_spec.rb ├── factories │ ├── clothing_match.rb │ ├── context_rules.rb │ ├── factory_clothing.rb │ ├── factory_clothing_log.rb │ ├── factory_csa_food.rb │ ├── factory_decision.rb │ ├── factory_decision_log.rb │ ├── factory_food.rb │ ├── factory_goal.rb │ ├── factory_library_item.rb │ ├── factory_measurement.rb │ ├── factory_measurement_log.rb │ ├── factory_time_record.rb │ ├── factory_toronto_library.rb │ ├── factory_user.rb │ ├── grocery_list_users.rb │ ├── grocery_lists.rb │ ├── memories.rb │ ├── receipt_item_categories.rb │ ├── receipt_item_types.rb │ ├── receipt_items.rb │ ├── record_categories.rb │ ├── records.rb │ ├── services.rb │ ├── signups.rb │ ├── tap_log_records.rb │ └── timeline_events.rb ├── fixtures │ └── files │ │ ├── account.html │ │ ├── hold.html │ │ ├── hold_failed.html │ │ ├── hold_placed.html │ │ ├── login.html │ │ ├── sample-color-ff0000.png │ │ └── sample-tap-log.csv ├── helpers │ ├── application_helper_spec.rb │ ├── clothing_helper_spec.rb │ ├── grocery_list_items_helper_spec.rb │ ├── grocery_lists_helper_spec.rb │ └── stuff_helper_spec.rb ├── models │ ├── ability_spec.rb │ ├── clothing_log_spec.rb │ ├── clothing_match_spec.rb │ ├── clothing_spec.rb │ ├── context_rule_spec.rb │ ├── context_spec.rb │ ├── csa_food_spec.rb │ ├── day_spec.rb │ ├── food_spec.rb │ ├── goal_spec.rb │ ├── grocery_list_item_spec.rb │ ├── grocery_list_spec.rb │ ├── grocery_list_user_spec.rb │ ├── library_item_spec.rb │ ├── location_history_spec.rb │ ├── measurement_log_spec.rb │ ├── memory_spec.rb │ ├── receipt_item_category_spec.rb │ ├── receipt_item_spec.rb │ ├── receipt_item_type_spec.rb │ ├── record_category_spec.rb │ ├── record_spec.rb │ ├── stuff_observer_spec.rb │ ├── stuff_spec.rb │ ├── tap_log_record_spec.rb │ ├── time_record_spec.rb │ ├── toronto_library_spec.rb │ └── user_spec.rb ├── requests │ ├── application_spec.rb │ ├── grocery_list_items_spec.rb │ ├── grocery_lists_spec.rb │ ├── record_categories_spec.rb │ ├── registrations_spec.rb │ ├── time_spec.rb │ └── timeline_events_spec.rb ├── routing │ ├── contexts_routing_spec.rb │ ├── grocery_list_items_routing_spec.rb │ ├── grocery_lists_routing_spec.rb │ ├── memories_routing_spec.rb │ ├── record_categories_routing_spec.rb │ ├── records_routing_spec.rb │ ├── tap_log_records_routing_spec.rb │ └── timeline_events_routing_spec.rb ├── support │ ├── awesome.rb │ └── controller_macros.rb └── views │ └── timeline_events │ ├── edit.html.haml_spec.rb │ ├── index.html.haml_spec.rb │ ├── new.html.haml_spec.rb │ └── show.html.haml_spec.rb └── vendor └── assets ├── .bowerrc ├── bower.json ├── bower_components └── angular │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ └── package.json ├── images ├── edit.png ├── facebook_32.png ├── facebook_64.png ├── google_32.png ├── google_64.png ├── trash.png ├── twitter_32.png └── twitter_64.png ├── javascripts ├── bootstrap-alerts.js ├── bootstrap-dropdown.js ├── bootstrap-modal.js ├── bootstrap-popover.js ├── bootstrap-scrollspy.js ├── bootstrap-tabs.js ├── bootstrap-twipsy.js ├── g.pie-min.js ├── g.raphael-min.js ├── jit-yc.js ├── jit.js ├── jquery-ui.min.js ├── jquery.min.js ├── jquery.offline.js ├── jquery.qtip.min.js ├── jquery.sparkline.min.js ├── jquery.timeago.js ├── jquery.tmpl.min.js ├── json.js ├── protovis.min.js └── raphael-min.js └── stylesheets ├── jquery.qtip.min.css └── vendor.css /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/.travis.yml -------------------------------------------------------------------------------- /Bowerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/Bowerfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/Vagrantfile.TEMPLATE -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/clothing/large/missing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/images/clothing/large/missing.jpg -------------------------------------------------------------------------------- /app/assets/images/clothing/medium/missing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/images/clothing/medium/missing.jpg -------------------------------------------------------------------------------- /app/assets/images/clothing/small/missing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/images/clothing/small/missing.jpg -------------------------------------------------------------------------------- /app/assets/javascripts/admin.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/admin.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/bootstrap.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/cal-heatmap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/cal-heatmap.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/clothing.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/clothing.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/grocery_list_items.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/grocery_list_items.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/grocery_lists.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/grocery_lists.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.sparkline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/jquery.sparkline.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/quantified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/quantified.js -------------------------------------------------------------------------------- /app/assets/javascripts/services.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/services.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/signups.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/signups.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/timeline_events.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/javascripts/timeline_events.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/_forms.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/_forms.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_mixins.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/_mixins.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_patterns.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/_patterns.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_reset.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/_reset.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_scaffolding.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/_scaffolding.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_tables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/_tables.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_type.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/_type.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/_variables.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/admin.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/admin.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_and_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/bootstrap_and_overrides.css -------------------------------------------------------------------------------- /app/assets/stylesheets/cal-heatmap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/cal-heatmap.css -------------------------------------------------------------------------------- /app/assets/stylesheets/compass_bootstrap.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/compass_bootstrap.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/grocery_list_items.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/grocery_list_items.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/grocery_lists.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/grocery_lists.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/ie.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/ie.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/mobile.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/mobile.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/offline.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/offline.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/print.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/print.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/scaffolds.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/scaffolds.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/scaffolds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/scaffolds.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/screen.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/screen.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/style.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/style.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/timeline_events.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/assets/stylesheets/timeline_events.css.scss -------------------------------------------------------------------------------- /app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/records_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/api/v1/records_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/tokens_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/api/v1/tokens_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/clothing_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/clothing_controller.rb -------------------------------------------------------------------------------- /app/controllers/clothing_logs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/clothing_logs_controller.rb -------------------------------------------------------------------------------- /app/controllers/contexts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/contexts_controller.rb -------------------------------------------------------------------------------- /app/controllers/csa_foods_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/csa_foods_controller.rb -------------------------------------------------------------------------------- /app/controllers/decision_logs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/decision_logs_controller.rb -------------------------------------------------------------------------------- /app/controllers/decisions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/decisions_controller.rb -------------------------------------------------------------------------------- /app/controllers/foods_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/foods_controller.rb -------------------------------------------------------------------------------- /app/controllers/goals_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/goals_controller.rb -------------------------------------------------------------------------------- /app/controllers/grocery_list_items_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/grocery_list_items_controller.rb -------------------------------------------------------------------------------- /app/controllers/grocery_lists_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/grocery_lists_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/library_items_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/library_items_controller.rb -------------------------------------------------------------------------------- /app/controllers/location_histories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/location_histories_controller.rb -------------------------------------------------------------------------------- /app/controllers/measurement_logs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/measurement_logs_controller.rb -------------------------------------------------------------------------------- /app/controllers/measurements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/measurements_controller.rb -------------------------------------------------------------------------------- /app/controllers/memories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/memories_controller.rb -------------------------------------------------------------------------------- /app/controllers/receipt_item_categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/receipt_item_categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/receipt_item_types_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/receipt_item_types_controller.rb -------------------------------------------------------------------------------- /app/controllers/receipt_items_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/receipt_items_controller.rb -------------------------------------------------------------------------------- /app/controllers/record_categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/record_categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/records_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/records_controller.rb -------------------------------------------------------------------------------- /app/controllers/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/services_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/services_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/stuff_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/stuff_controller.rb -------------------------------------------------------------------------------- /app/controllers/tap_log_records_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/tap_log_records_controller.rb -------------------------------------------------------------------------------- /app/controllers/time_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/time_controller.rb -------------------------------------------------------------------------------- /app/controllers/timeline_events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/timeline_events_controller.rb -------------------------------------------------------------------------------- /app/controllers/toronto_libraries_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/toronto_libraries_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/clothing_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/helpers/clothing_helper.rb -------------------------------------------------------------------------------- /app/helpers/grocery_list_items_helper.rb: -------------------------------------------------------------------------------- 1 | module GroceryListItemsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/grocery_lists_helper.rb: -------------------------------------------------------------------------------- 1 | module GroceryListsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/stuff_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/helpers/stuff_helper.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/clothing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/clothing.rb -------------------------------------------------------------------------------- /app/models/clothing_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/clothing_log.rb -------------------------------------------------------------------------------- /app/models/clothing_match.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/clothing_match.rb -------------------------------------------------------------------------------- /app/models/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/context.rb -------------------------------------------------------------------------------- /app/models/context_rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/context_rule.rb -------------------------------------------------------------------------------- /app/models/csa_food.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/csa_food.rb -------------------------------------------------------------------------------- /app/models/day.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/day.rb -------------------------------------------------------------------------------- /app/models/decision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/decision.rb -------------------------------------------------------------------------------- /app/models/decision_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/decision_log.rb -------------------------------------------------------------------------------- /app/models/food.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/food.rb -------------------------------------------------------------------------------- /app/models/goal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/goal.rb -------------------------------------------------------------------------------- /app/models/grocery_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/grocery_list.rb -------------------------------------------------------------------------------- /app/models/grocery_list_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/grocery_list_item.rb -------------------------------------------------------------------------------- /app/models/grocery_list_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/grocery_list_user.rb -------------------------------------------------------------------------------- /app/models/library_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/library_item.rb -------------------------------------------------------------------------------- /app/models/location_history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/location_history.rb -------------------------------------------------------------------------------- /app/models/measurement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/measurement.rb -------------------------------------------------------------------------------- /app/models/measurement_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/measurement_log.rb -------------------------------------------------------------------------------- /app/models/memory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/memory.rb -------------------------------------------------------------------------------- /app/models/receipt_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/receipt_item.rb -------------------------------------------------------------------------------- /app/models/receipt_item_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/receipt_item_category.rb -------------------------------------------------------------------------------- /app/models/receipt_item_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/receipt_item_type.rb -------------------------------------------------------------------------------- /app/models/record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/record.rb -------------------------------------------------------------------------------- /app/models/record_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/record_category.rb -------------------------------------------------------------------------------- /app/models/service.rb: -------------------------------------------------------------------------------- 1 | class Service < ApplicationRecord 2 | belongs_to :user 3 | end 4 | -------------------------------------------------------------------------------- /app/models/signup.rb: -------------------------------------------------------------------------------- 1 | class Signup < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /app/models/stuff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/stuff.rb -------------------------------------------------------------------------------- /app/models/stuff_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/stuff_observer.rb -------------------------------------------------------------------------------- /app/models/tap_log_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/tap_log_record.rb -------------------------------------------------------------------------------- /app/models/time_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/time_record.rb -------------------------------------------------------------------------------- /app/models/timeline_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/timeline_event.rb -------------------------------------------------------------------------------- /app/models/toronto_library.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/toronto_library.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/admin/activity.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/admin/activity.html.haml -------------------------------------------------------------------------------- /app/views/admin/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/admin/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/signups.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/admin/signups.html.haml -------------------------------------------------------------------------------- /app/views/api/offline/v1/offline/bulk_track.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/api/offline/v1/offline/bulk_track.html.haml -------------------------------------------------------------------------------- /app/views/api/offline/v1/offline/track.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/api/offline/v1/offline/track.html.haml -------------------------------------------------------------------------------- /app/views/application/_clothing_log_entry.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_clothing_log_entry.html.haml -------------------------------------------------------------------------------- /app/views/application/_clothing_thumbnails.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_clothing_thumbnails.html.erb -------------------------------------------------------------------------------- /app/views/application/_colors.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_colors.html.haml -------------------------------------------------------------------------------- /app/views/application/_current_activity.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_current_activity.html.haml -------------------------------------------------------------------------------- /app/views/application/_filters.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_filters.html.haml -------------------------------------------------------------------------------- /app/views/application/_footer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_footer.html.haml -------------------------------------------------------------------------------- /app/views/application/_hierarchical_graph.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_hierarchical_graph.html.haml -------------------------------------------------------------------------------- /app/views/application/_login.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_login.html.haml -------------------------------------------------------------------------------- /app/views/application/_main_nav.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_main_nav.html.haml -------------------------------------------------------------------------------- /app/views/application/_mobile_nav.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_mobile_nav.html.haml -------------------------------------------------------------------------------- /app/views/application/_quick_record.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_quick_record.html.haml -------------------------------------------------------------------------------- /app/views/application/_sidebar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_sidebar.html.haml -------------------------------------------------------------------------------- /app/views/application/_time_sparklines.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application/_time_sparklines.html.erb -------------------------------------------------------------------------------- /app/views/application_mailer/feedback.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application_mailer/feedback.text.erb -------------------------------------------------------------------------------- /app/views/application_mailer/welcome.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/application_mailer/welcome.text.erb -------------------------------------------------------------------------------- /app/views/clothing/_clothing_thumbnails.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/_clothing_thumbnails.html.erb -------------------------------------------------------------------------------- /app/views/clothing/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/_form.html.haml -------------------------------------------------------------------------------- /app/views/clothing/_nav.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/_nav.html.haml -------------------------------------------------------------------------------- /app/views/clothing/analyze.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/analyze.html.haml -------------------------------------------------------------------------------- /app/views/clothing/bulk.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/bulk.html.haml -------------------------------------------------------------------------------- /app/views/clothing/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/edit.html.haml -------------------------------------------------------------------------------- /app/views/clothing/graph.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/graph.html.erb -------------------------------------------------------------------------------- /app/views/clothing/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/index.html.haml -------------------------------------------------------------------------------- /app/views/clothing/missing_info.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/missing_info.html.haml -------------------------------------------------------------------------------- /app/views/clothing/missing_pictures.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/missing_pictures.html.haml -------------------------------------------------------------------------------- /app/views/clothing/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/new.html.haml -------------------------------------------------------------------------------- /app/views/clothing/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing/show.html.haml -------------------------------------------------------------------------------- /app/views/clothing_logs/_by_date.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing_logs/_by_date.html.haml -------------------------------------------------------------------------------- /app/views/clothing_logs/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing_logs/_form.html.haml -------------------------------------------------------------------------------- /app/views/clothing_logs/by_date.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing_logs/by_date.html.haml -------------------------------------------------------------------------------- /app/views/clothing_logs/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing_logs/edit.html.haml -------------------------------------------------------------------------------- /app/views/clothing_logs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing_logs/index.html.haml -------------------------------------------------------------------------------- /app/views/clothing_logs/matches.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing_logs/matches.html.haml -------------------------------------------------------------------------------- /app/views/clothing_logs/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing_logs/new.html.haml -------------------------------------------------------------------------------- /app/views/clothing_logs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/clothing_logs/show.html.haml -------------------------------------------------------------------------------- /app/views/contexts/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/contexts/_form.html.haml -------------------------------------------------------------------------------- /app/views/contexts/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/contexts/edit.html.haml -------------------------------------------------------------------------------- /app/views/contexts/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/contexts/index.html.haml -------------------------------------------------------------------------------- /app/views/contexts/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/contexts/new.html.haml -------------------------------------------------------------------------------- /app/views/contexts/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/contexts/show.html.haml -------------------------------------------------------------------------------- /app/views/contexts/start.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/contexts/start.html.haml -------------------------------------------------------------------------------- /app/views/csa_foods/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/csa_foods/_form.html.haml -------------------------------------------------------------------------------- /app/views/csa_foods/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/csa_foods/edit.html.haml -------------------------------------------------------------------------------- /app/views/csa_foods/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/csa_foods/index.html.haml -------------------------------------------------------------------------------- /app/views/csa_foods/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/csa_foods/new.html.haml -------------------------------------------------------------------------------- /app/views/csa_foods/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/csa_foods/show.html.haml -------------------------------------------------------------------------------- /app/views/decision_logs/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/decision_logs/_form.html.haml -------------------------------------------------------------------------------- /app/views/decision_logs/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/decision_logs/edit.html.haml -------------------------------------------------------------------------------- /app/views/decision_logs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/decision_logs/index.html.haml -------------------------------------------------------------------------------- /app/views/decision_logs/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/decision_logs/new.html.haml -------------------------------------------------------------------------------- /app/views/decision_logs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/decision_logs/show.html.haml -------------------------------------------------------------------------------- /app/views/decisions/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/decisions/_form.html.haml -------------------------------------------------------------------------------- /app/views/decisions/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/decisions/edit.html.haml -------------------------------------------------------------------------------- /app/views/decisions/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/decisions/index.html.haml -------------------------------------------------------------------------------- /app/views/decisions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/decisions/new.html.haml -------------------------------------------------------------------------------- /app/views/decisions/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/decisions/show.html.haml -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/confirmations/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/invitations/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/invitations/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/invitations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/invitations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/invitation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/mailer/invitation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/passwords/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/passwords/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/shared/_links.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/foods/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/foods/_form.html.haml -------------------------------------------------------------------------------- /app/views/foods/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/foods/edit.html.haml -------------------------------------------------------------------------------- /app/views/foods/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/foods/index.html.haml -------------------------------------------------------------------------------- /app/views/foods/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/foods/new.html.haml -------------------------------------------------------------------------------- /app/views/foods/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/foods/show.html.haml -------------------------------------------------------------------------------- /app/views/goals/_explain_goal.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/goals/_explain_goal.html.haml -------------------------------------------------------------------------------- /app/views/goals/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/goals/_form.html.haml -------------------------------------------------------------------------------- /app/views/goals/_summary.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/goals/_summary.html.haml -------------------------------------------------------------------------------- /app/views/goals/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/goals/edit.html.haml -------------------------------------------------------------------------------- /app/views/goals/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/goals/index.html.haml -------------------------------------------------------------------------------- /app/views/goals/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/goals/new.html.haml -------------------------------------------------------------------------------- /app/views/goals/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/goals/show.html.haml -------------------------------------------------------------------------------- /app/views/grocery_list_items/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/grocery_list_items/_form.html.haml -------------------------------------------------------------------------------- /app/views/grocery_list_items/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/grocery_list_items/edit.html.haml -------------------------------------------------------------------------------- /app/views/grocery_list_items/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/grocery_list_items/index.html.haml -------------------------------------------------------------------------------- /app/views/grocery_list_items/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/grocery_list_items/new.html.haml -------------------------------------------------------------------------------- /app/views/grocery_list_items/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/grocery_list_items/show.html.haml -------------------------------------------------------------------------------- /app/views/grocery_lists/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/grocery_lists/_form.html.haml -------------------------------------------------------------------------------- /app/views/grocery_lists/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/grocery_lists/edit.html.haml -------------------------------------------------------------------------------- /app/views/grocery_lists/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/grocery_lists/index.html.haml -------------------------------------------------------------------------------- /app/views/grocery_lists/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/grocery_lists/new.html.haml -------------------------------------------------------------------------------- /app/views/grocery_lists/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/grocery_lists/show.html.haml -------------------------------------------------------------------------------- /app/views/home/feedback.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/home/feedback.html.haml -------------------------------------------------------------------------------- /app/views/home/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/home/index.html.haml -------------------------------------------------------------------------------- /app/views/home/menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/home/menu.html.haml -------------------------------------------------------------------------------- /app/views/home/mobile_index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/home/mobile_index.html.haml -------------------------------------------------------------------------------- /app/views/home/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/home/show.html.haml -------------------------------------------------------------------------------- /app/views/home/summary.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/home/summary.html.haml -------------------------------------------------------------------------------- /app/views/home/terms_privacy.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/home/terms_privacy.html.haml -------------------------------------------------------------------------------- /app/views/home/thanks_for_signing_up.html.haml: -------------------------------------------------------------------------------- 1 | - title "Thanks for signing up!" 2 | -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/layouts/sign.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/layouts/sign.html.haml -------------------------------------------------------------------------------- /app/views/library_items/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/library_items/_form.html.haml -------------------------------------------------------------------------------- /app/views/library_items/_nav.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/library_items/_nav.html.haml -------------------------------------------------------------------------------- /app/views/library_items/current.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/library_items/current.html.haml -------------------------------------------------------------------------------- /app/views/library_items/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/library_items/edit.html.haml -------------------------------------------------------------------------------- /app/views/library_items/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/library_items/index.html.haml -------------------------------------------------------------------------------- /app/views/library_items/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/library_items/new.html.haml -------------------------------------------------------------------------------- /app/views/library_items/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/library_items/show.html.haml -------------------------------------------------------------------------------- /app/views/location_histories/_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/location_histories/_list.html.haml -------------------------------------------------------------------------------- /app/views/location_histories/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/location_histories/index.html.haml -------------------------------------------------------------------------------- /app/views/location_histories/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/location_histories/show.html.haml -------------------------------------------------------------------------------- /app/views/measurement_logs/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/measurement_logs/_form.html.haml -------------------------------------------------------------------------------- /app/views/measurement_logs/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/measurement_logs/edit.html.haml -------------------------------------------------------------------------------- /app/views/measurement_logs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/measurement_logs/index.html.haml -------------------------------------------------------------------------------- /app/views/measurement_logs/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/measurement_logs/new.html.haml -------------------------------------------------------------------------------- /app/views/measurement_logs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/measurement_logs/show.html.haml -------------------------------------------------------------------------------- /app/views/measurements/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/measurements/_form.html.haml -------------------------------------------------------------------------------- /app/views/measurements/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/measurements/edit.html.haml -------------------------------------------------------------------------------- /app/views/measurements/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/measurements/index.html.haml -------------------------------------------------------------------------------- /app/views/measurements/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/measurements/new.html.haml -------------------------------------------------------------------------------- /app/views/measurements/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/measurements/show.html.haml -------------------------------------------------------------------------------- /app/views/memories/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/memories/_form.html.haml -------------------------------------------------------------------------------- /app/views/memories/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/memories/edit.html.haml -------------------------------------------------------------------------------- /app/views/memories/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/memories/index.html.haml -------------------------------------------------------------------------------- /app/views/memories/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/memories/new.html.haml -------------------------------------------------------------------------------- /app/views/memories/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/memories/show.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_categories/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_categories/_form.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_categories/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_categories/edit.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_categories/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_categories/index.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_categories/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_categories/new.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_categories/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_categories/show.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_types/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_types/_form.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_types/_nav.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_types/_nav.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_types/batch_entry.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_types/batch_entry.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_types/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_types/edit.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_types/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_types/index.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_types/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_types/new.html.haml -------------------------------------------------------------------------------- /app/views/receipt_item_types/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_item_types/show.html.haml -------------------------------------------------------------------------------- /app/views/receipt_items/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_items/_form.html.haml -------------------------------------------------------------------------------- /app/views/receipt_items/_nav.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_items/_nav.html.haml -------------------------------------------------------------------------------- /app/views/receipt_items/batch_entry.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_items/batch_entry.html.haml -------------------------------------------------------------------------------- /app/views/receipt_items/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_items/edit.html.haml -------------------------------------------------------------------------------- /app/views/receipt_items/graph.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_items/graph.html.haml -------------------------------------------------------------------------------- /app/views/receipt_items/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_items/index.html.haml -------------------------------------------------------------------------------- /app/views/receipt_items/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_items/new.html.haml -------------------------------------------------------------------------------- /app/views/receipt_items/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/receipt_items/show.html.haml -------------------------------------------------------------------------------- /app/views/record_categories/_activity_summary.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/record_categories/_activity_summary.html.haml -------------------------------------------------------------------------------- /app/views/record_categories/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/record_categories/_form.html.haml -------------------------------------------------------------------------------- /app/views/record_categories/_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/record_categories/_list.html.haml -------------------------------------------------------------------------------- /app/views/record_categories/disambiguate.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/record_categories/disambiguate.html.haml -------------------------------------------------------------------------------- /app/views/record_categories/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/record_categories/edit.html.haml -------------------------------------------------------------------------------- /app/views/record_categories/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/record_categories/index.html.haml -------------------------------------------------------------------------------- /app/views/record_categories/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/record_categories/new.html.haml -------------------------------------------------------------------------------- /app/views/record_categories/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/record_categories/show.html.haml -------------------------------------------------------------------------------- /app/views/record_categories/tree.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/record_categories/tree.html.haml -------------------------------------------------------------------------------- /app/views/records/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/records/_form.html.haml -------------------------------------------------------------------------------- /app/views/records/_summary.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/records/_summary.html.haml -------------------------------------------------------------------------------- /app/views/records/batch.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/records/batch.html.haml -------------------------------------------------------------------------------- /app/views/records/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/records/edit.html.haml -------------------------------------------------------------------------------- /app/views/records/help.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/records/help.html.haml -------------------------------------------------------------------------------- /app/views/records/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/records/index.html.haml -------------------------------------------------------------------------------- /app/views/records/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/records/new.html.haml -------------------------------------------------------------------------------- /app/views/records/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/records/show.html.haml -------------------------------------------------------------------------------- /app/views/registrations/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/registrations/_form.html.haml -------------------------------------------------------------------------------- /app/views/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/registrations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/registrations/new.html.haml -------------------------------------------------------------------------------- /app/views/sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/sessions/new.html.haml -------------------------------------------------------------------------------- /app/views/stuff/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/stuff/_form.html.haml -------------------------------------------------------------------------------- /app/views/stuff/_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/stuff/_list.html.haml -------------------------------------------------------------------------------- /app/views/stuff/_nav.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/stuff/_nav.html.haml -------------------------------------------------------------------------------- /app/views/stuff/_quicklog.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/stuff/_quicklog.html.haml -------------------------------------------------------------------------------- /app/views/stuff/bulk.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/stuff/bulk.html.haml -------------------------------------------------------------------------------- /app/views/stuff/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/stuff/edit.html.haml -------------------------------------------------------------------------------- /app/views/stuff/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/stuff/index.html.haml -------------------------------------------------------------------------------- /app/views/stuff/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/stuff/new.html.haml -------------------------------------------------------------------------------- /app/views/stuff/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/stuff/show.html.haml -------------------------------------------------------------------------------- /app/views/tap_log_records/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/tap_log_records/_form.html.haml -------------------------------------------------------------------------------- /app/views/tap_log_records/_summary.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/tap_log_records/_summary.html.haml -------------------------------------------------------------------------------- /app/views/tap_log_records/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/tap_log_records/edit.html.haml -------------------------------------------------------------------------------- /app/views/tap_log_records/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/tap_log_records/index.html.haml -------------------------------------------------------------------------------- /app/views/tap_log_records/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/tap_log_records/new.html.haml -------------------------------------------------------------------------------- /app/views/tap_log_records/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/tap_log_records/show.html.haml -------------------------------------------------------------------------------- /app/views/time/_activity_summary.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/_activity_summary.html.haml -------------------------------------------------------------------------------- /app/views/time/_activity_summary_daily.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/_activity_summary_daily.html.haml -------------------------------------------------------------------------------- /app/views/time/_activity_summary_monthly.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/_activity_summary_monthly.html.haml -------------------------------------------------------------------------------- /app/views/time/_activity_summary_weekly.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/_activity_summary_weekly.html.haml -------------------------------------------------------------------------------- /app/views/time/_activity_summary_yearly.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/_activity_summary_yearly.html.haml -------------------------------------------------------------------------------- /app/views/time/_by_day_summary.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/_by_day_summary.html.haml -------------------------------------------------------------------------------- /app/views/time/_nav.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/_nav.html.haml -------------------------------------------------------------------------------- /app/views/time/_start_end_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/_start_end_form.html.erb -------------------------------------------------------------------------------- /app/views/time/circle.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/circle.html.erb -------------------------------------------------------------------------------- /app/views/time/clock.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/clock.html.erb -------------------------------------------------------------------------------- /app/views/time/dashboard.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/dashboard.html.haml -------------------------------------------------------------------------------- /app/views/time/graph.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/graph.html.haml -------------------------------------------------------------------------------- /app/views/time/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/index.html.haml -------------------------------------------------------------------------------- /app/views/time/index_org.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/index_org.html.haml -------------------------------------------------------------------------------- /app/views/time/refresh.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/refresh.html.haml -------------------------------------------------------------------------------- /app/views/time/review.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/time/review.html.haml -------------------------------------------------------------------------------- /app/views/timeline_events/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/timeline_events/_form.html.haml -------------------------------------------------------------------------------- /app/views/timeline_events/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/timeline_events/edit.html.haml -------------------------------------------------------------------------------- /app/views/timeline_events/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/timeline_events/index.html.haml -------------------------------------------------------------------------------- /app/views/timeline_events/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/timeline_events/new.html.haml -------------------------------------------------------------------------------- /app/views/timeline_events/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/timeline_events/show.html.haml -------------------------------------------------------------------------------- /app/views/toronto_libraries/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/toronto_libraries/_form.html.haml -------------------------------------------------------------------------------- /app/views/toronto_libraries/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/toronto_libraries/edit.html.haml -------------------------------------------------------------------------------- /app/views/toronto_libraries/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/toronto_libraries/index.html.haml -------------------------------------------------------------------------------- /app/views/toronto_libraries/new.html.haml: -------------------------------------------------------------------------------- 1 | %h1 Add Toronto Library card 2 | 3 | = render 'form' 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/views/toronto_libraries/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/toronto_libraries/show.html.haml -------------------------------------------------------------------------------- /app/views/users/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/users/_form.html.haml -------------------------------------------------------------------------------- /app/views/users/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/users/edit.html.haml -------------------------------------------------------------------------------- /app/views/users/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/users/index.html.haml -------------------------------------------------------------------------------- /app/views/users/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/users/new.html.haml -------------------------------------------------------------------------------- /app/views/users/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/app/views/users/show.html.haml -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.bundler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/application.bundler.rb -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/application.yml -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/compass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/compass.rb -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/database.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/database.yml.sample -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/environments/api.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/ancestry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/ancestry.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/extensions.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/logger.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/new_framework_defaults.rb -------------------------------------------------------------------------------- /config/initializers/sass.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/initializers/secret_token.rb.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/secret_token.rb.sample -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/initializers/unbreak_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/unbreak_string.rb -------------------------------------------------------------------------------- /config/initializers/will_paginate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/will_paginate.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/devise_invitable.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/locales/devise_invitable.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/formats.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/locales/formats.en.yml -------------------------------------------------------------------------------- /config/locales/formats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/locales/formats.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20110820144418_create_books.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110820144418_create_books.rb -------------------------------------------------------------------------------- /db/migrate/20110826215427_create_clothing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110826215427_create_clothing.rb -------------------------------------------------------------------------------- /db/migrate/20110826220208_create_clothing_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110826220208_create_clothing_logs.rb -------------------------------------------------------------------------------- /db/migrate/20110826225445_acts_as_taggable_on_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110826225445_acts_as_taggable_on_migration.rb -------------------------------------------------------------------------------- /db/migrate/20110826232012_rename_clothing_label_to_clothing_title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110826232012_rename_clothing_label_to_clothing_title.rb -------------------------------------------------------------------------------- /db/migrate/20110827030504_change_date_format_for_clothing_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110827030504_change_date_format_for_clothing_log.rb -------------------------------------------------------------------------------- /db/migrate/20110828024228_create_time_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110828024228_create_time_records.rb -------------------------------------------------------------------------------- /db/migrate/20110829035737_create_decisions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110829035737_create_decisions.rb -------------------------------------------------------------------------------- /db/migrate/20110829035756_create_decision_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110829035756_create_decision_logs.rb -------------------------------------------------------------------------------- /db/migrate/20110829041327_add_decision_id_to_decision_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110829041327_add_decision_id_to_decision_logs.rb -------------------------------------------------------------------------------- /db/migrate/20110829042946_add_rating_to_decisions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110829042946_add_rating_to_decisions.rb -------------------------------------------------------------------------------- /db/migrate/20110906235351_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110906235351_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20110918021046_add_status_to_clothing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110918021046_add_status_to_clothing.rb -------------------------------------------------------------------------------- /db/migrate/20110924142745_create_library_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110924142745_create_library_items.rb -------------------------------------------------------------------------------- /db/migrate/20110925214514_add_hsl_to_clothing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110925214514_add_hsl_to_clothing.rb -------------------------------------------------------------------------------- /db/migrate/20110926003856_add_status_to_library_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110926003856_add_status_to_library_items.rb -------------------------------------------------------------------------------- /db/migrate/20110928030551_add_cost_to_clothing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20110928030551_add_cost_to_clothing.rb -------------------------------------------------------------------------------- /db/migrate/20111014095310_add_outfit_id_to_clothing_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111014095310_add_outfit_id_to_clothing_logs.rb -------------------------------------------------------------------------------- /db/migrate/20111018005353_create_clothing_matches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111018005353_create_clothing_matches.rb -------------------------------------------------------------------------------- /db/migrate/20111018014029_add_default_outfit_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111018014029_add_default_outfit_id.rb -------------------------------------------------------------------------------- /db/migrate/20111020103009_add_last_worn_and_count_to_clothing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111020103009_add_last_worn_and_count_to_clothing.rb -------------------------------------------------------------------------------- /db/migrate/20111020205637_create_foods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111020205637_create_foods.rb -------------------------------------------------------------------------------- /db/migrate/20111020205727_create_csa_foods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111020205727_create_csa_foods.rb -------------------------------------------------------------------------------- /db/migrate/20111020222103_add_dates_to_library_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111020222103_add_dates_to_library_item.rb -------------------------------------------------------------------------------- /db/migrate/20111020224001_add_info_to_toronto_library.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111020224001_add_info_to_toronto_library.rb -------------------------------------------------------------------------------- /db/migrate/20111020233817_add_toronto_library_id_to_toronto_libraries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111020233817_add_toronto_library_id_to_toronto_libraries.rb -------------------------------------------------------------------------------- /db/migrate/20111021005528_add_memento_mori_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111021005528_add_memento_mori_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20111021012013_create_days.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111021012013_create_days.rb -------------------------------------------------------------------------------- /db/migrate/20111021195343_add_isbn_to_library_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111021195343_add_isbn_to_library_items.rb -------------------------------------------------------------------------------- /db/migrate/20111021200036_add_private_to_library_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111021200036_add_private_to_library_items.rb -------------------------------------------------------------------------------- /db/migrate/20111021203839_change_private_to_public.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111021203839_change_private_to_public.rb -------------------------------------------------------------------------------- /db/migrate/20111022134352_drop_number_from_clothing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111022134352_drop_number_from_clothing.rb -------------------------------------------------------------------------------- /db/migrate/20111022144608_create_measurements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111022144608_create_measurements.rb -------------------------------------------------------------------------------- /db/migrate/20111022144646_create_measurement_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111022144646_create_measurement_logs.rb -------------------------------------------------------------------------------- /db/migrate/20111023010644_add_notes_to_library_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111023010644_add_notes_to_library_items.rb -------------------------------------------------------------------------------- /db/migrate/20111023120347_add_price_to_library_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111023120347_add_price_to_library_items.rb -------------------------------------------------------------------------------- /db/migrate/20111023120630_add_pages_to_library_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111023120630_add_pages_to_library_items.rb -------------------------------------------------------------------------------- /db/migrate/20111031235324_create_stuff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111031235324_create_stuff.rb -------------------------------------------------------------------------------- /db/migrate/20111101101955_add_sum_to_measurements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111101101955_add_sum_to_measurements.rb -------------------------------------------------------------------------------- /db/migrate/20111102232850_change_location_to_association.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111102232850_change_location_to_association.rb -------------------------------------------------------------------------------- /db/migrate/20111102233224_create_location_histories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111102233224_create_location_histories.rb -------------------------------------------------------------------------------- /db/migrate/20111102233253_create_locations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111102233253_create_locations.rb -------------------------------------------------------------------------------- /db/migrate/20111103003628_add_home_location_to_stuff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111103003628_add_home_location_to_stuff.rb -------------------------------------------------------------------------------- /db/migrate/20111103013724_add_location_status_to_stuff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111103013724_add_location_status_to_stuff.rb -------------------------------------------------------------------------------- /db/migrate/20111104102959_change_date_received_to_date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111104102959_change_date_received_to_date.rb -------------------------------------------------------------------------------- /db/migrate/20111107111930_add_user_ids_to_everything.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111107111930_add_user_ids_to_everything.rb -------------------------------------------------------------------------------- /db/migrate/20111107113903_add_role_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111107113903_add_role_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20111107114455_create_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111107114455_create_settings.rb -------------------------------------------------------------------------------- /db/migrate/20111107120811_add_username_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111107120811_add_username_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20111110021956_create_contexts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111110021956_create_contexts.rb -------------------------------------------------------------------------------- /db/migrate/20111129024218_create_memories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111129024218_create_memories.rb -------------------------------------------------------------------------------- /db/migrate/20111203151502_create_tap_log_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111203151502_create_tap_log_records.rb -------------------------------------------------------------------------------- /db/migrate/20111203171307_add_status_to_tap_log_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111203171307_add_status_to_tap_log_record.rb -------------------------------------------------------------------------------- /db/migrate/20111207003824_add_info_to_tap_log_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111207003824_add_info_to_tap_log_records.rb -------------------------------------------------------------------------------- /db/migrate/20111207015304_add_duration_to_tap_log_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111207015304_add_duration_to_tap_log_records.rb -------------------------------------------------------------------------------- /db/migrate/20111212000102_add_devise_columns_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111212000102_add_devise_columns_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20111212005705_add_source_to_tap_log_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111212005705_add_source_to_tap_log_records.rb -------------------------------------------------------------------------------- /db/migrate/20111214024204_add_time_and_rating_to_memories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111214024204_add_time_and_rating_to_memories.rb -------------------------------------------------------------------------------- /db/migrate/20111214041042_create_signups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111214041042_create_signups.rb -------------------------------------------------------------------------------- /db/migrate/20111223144028_create_record_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111223144028_create_record_categories.rb -------------------------------------------------------------------------------- /db/migrate/20111223154542_create_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111223154542_create_records.rb -------------------------------------------------------------------------------- /db/migrate/20111223191834_add_nolink_to_record_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111223191834_add_nolink_to_record_category.rb -------------------------------------------------------------------------------- /db/migrate/20111224130846_add_date_to_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111224130846_add_date_to_record.rb -------------------------------------------------------------------------------- /db/migrate/20111224174240_move_old_time_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111224174240_move_old_time_records.rb -------------------------------------------------------------------------------- /db/migrate/20111225133526_add_color_to_record_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111225133526_add_color_to_record_category.rb -------------------------------------------------------------------------------- /db/migrate/20111226164500_create_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20111226164500_create_services.rb -------------------------------------------------------------------------------- /db/migrate/20120102200456_add_data_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120102200456_add_data_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20120102201030_add_file_to_clothing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120102201030_add_file_to_clothing.rb -------------------------------------------------------------------------------- /db/migrate/20120102211431_rename_colour_to_color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120102211431_rename_colour_to_color.rb -------------------------------------------------------------------------------- /db/migrate/20120111014846_create_goals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120111014846_create_goals.rb -------------------------------------------------------------------------------- /db/migrate/20120112174036_devise_invitable_add_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120112174036_devise_invitable_add_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20120113173919_add_confirmable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120113173919_add_confirmable.rb -------------------------------------------------------------------------------- /db/migrate/20120113184040_add_approved_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120113184040_add_approved_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20120113184311_upgrade_devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120113184311_upgrade_devise.rb -------------------------------------------------------------------------------- /db/migrate/20120115051056_add_stuff_type_and_merge_locations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120115051056_add_stuff_type_and_merge_locations.rb -------------------------------------------------------------------------------- /db/migrate/20120115171633_drop_polymorphic_from_stuff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120115171633_drop_polymorphic_from_stuff.rb -------------------------------------------------------------------------------- /db/migrate/20120115184226_change_location_histories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120115184226_change_location_histories.rb -------------------------------------------------------------------------------- /db/migrate/20120115193034_create_context_rules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120115193034_create_context_rules.rb -------------------------------------------------------------------------------- /db/migrate/20120115215056_change_context_to_serialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120115215056_change_context_to_serialize.rb -------------------------------------------------------------------------------- /db/migrate/20120124203841_convert_record_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120124203841_convert_record_data.rb -------------------------------------------------------------------------------- /db/migrate/20120127231840_add_manual_to_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120127231840_add_manual_to_records.rb -------------------------------------------------------------------------------- /db/migrate/20120715160943_create_timeline_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120715160943_create_timeline_events.rb -------------------------------------------------------------------------------- /db/migrate/20120728132009_add_date_to_memories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120728132009_add_date_to_memories.rb -------------------------------------------------------------------------------- /db/migrate/20120810150517_add_clothing_log_date_to_clothing_matches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20120810150517_add_clothing_log_date_to_clothing_matches.rb -------------------------------------------------------------------------------- /db/migrate/20121226135854_add_details_to_library_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20121226135854_add_details_to_library_items.rb -------------------------------------------------------------------------------- /db/migrate/20130102150645_add_active_to_record_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20130102150645_add_active_to_record_categories.rb -------------------------------------------------------------------------------- /db/migrate/20130604162414_change_source_to_source_name_in_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20130604162414_change_source_to_source_name_in_record.rb -------------------------------------------------------------------------------- /db/migrate/20130617200651_add_id_to_clothing_matches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20130617200651_add_id_to_clothing_matches.rb -------------------------------------------------------------------------------- /db/migrate/20130706235901_create_receipt_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20130706235901_create_receipt_items.rb -------------------------------------------------------------------------------- /db/migrate/20130707030405_create_receipt_item_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20130707030405_create_receipt_item_categories.rb -------------------------------------------------------------------------------- /db/migrate/20130707030513_create_receipt_item_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20130707030513_create_receipt_item_types.rb -------------------------------------------------------------------------------- /db/migrate/20130707030854_add_receipt_item_type_id_to_receipt_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20130707030854_add_receipt_item_type_id_to_receipt_items.rb -------------------------------------------------------------------------------- /db/migrate/20130708210423_add_receipt_item_category_id_to_receipt_item_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20130708210423_add_receipt_item_category_id_to_receipt_item_type.rb -------------------------------------------------------------------------------- /db/migrate/20130812181255_add_status_to_goals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20130812181255_add_status_to_goals.rb -------------------------------------------------------------------------------- /db/migrate/20141023160739_add_missing_unique_indices.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20141023160739_add_missing_unique_indices.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20141023160740_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20141023160740_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20141023160741_add_missing_taggable_index.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20141023160741_add_missing_taggable_index.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20141025183126_create_grocery_lists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20141025183126_create_grocery_lists.rb -------------------------------------------------------------------------------- /db/migrate/20141025183259_create_grocery_list_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20141025183259_create_grocery_list_items.rb -------------------------------------------------------------------------------- /db/migrate/20141025194910_add_receipt_item_category_id_to_grocery_list_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20141025194910_add_receipt_item_category_id_to_grocery_list_items.rb -------------------------------------------------------------------------------- /db/migrate/20141103162500_create_grocery_list_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20141103162500_create_grocery_list_users.rb -------------------------------------------------------------------------------- /db/migrate/20241002161025_add_ancestry_to_record_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/migrate/20241002161025_add_ancestry_to_record_categories.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /features/clothing.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/clothing.feature -------------------------------------------------------------------------------- /features/clothing_logs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/clothing_logs.feature -------------------------------------------------------------------------------- /features/framework.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/framework.feature -------------------------------------------------------------------------------- /features/goals.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/goals.feature -------------------------------------------------------------------------------- /features/kitchen.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/kitchen.feature -------------------------------------------------------------------------------- /features/life.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/life.feature -------------------------------------------------------------------------------- /features/memories.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/memories.feature -------------------------------------------------------------------------------- /features/record_categories.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/record_categories.feature -------------------------------------------------------------------------------- /features/step_definitions/clothing_logs_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/step_definitions/clothing_logs_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/clothing_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/step_definitions/clothing_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/context_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/step_definitions/context_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/email_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/step_definitions/email_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/factory_steps.rb: -------------------------------------------------------------------------------- 1 | Cucumber::Factory.add_steps(self) 2 | -------------------------------------------------------------------------------- /features/step_definitions/goals_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/step_definitions/goals_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/kitchen_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/step_definitions/kitchen_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/life_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/step_definitions/life_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/omniauth_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/step_definitions/omniauth_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/record_categories_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/step_definitions/record_categories_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/user_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/step_definitions/user_steps.rb -------------------------------------------------------------------------------- /features/stuff.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/stuff.feature -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/user.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/features/user.feature -------------------------------------------------------------------------------- /lib/core_extensions/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/lib/core_extensions/object.rb -------------------------------------------------------------------------------- /lib/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/lib/exceptions.rb -------------------------------------------------------------------------------- /lib/old_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/lib/old_records.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/awesome.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/lib/tasks/awesome.rake -------------------------------------------------------------------------------- /lib/tasks/cron.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/lib/tasks/cron.rake -------------------------------------------------------------------------------- /lib/tasks/cucumber.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/lib/tasks/cucumber.rake -------------------------------------------------------------------------------- /lib/tasks/library.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/lib/tasks/library.rake -------------------------------------------------------------------------------- /lisp/quantified.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/lisp/quantified.el -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/clothing/large/missing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/images/clothing/large/missing.jpg -------------------------------------------------------------------------------- /public/images/clothing/medium/missing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/images/clothing/medium/missing.jpg -------------------------------------------------------------------------------- /public/images/clothing/small/missing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/images/clothing/small/missing.jpg -------------------------------------------------------------------------------- /public/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/images/grid.png -------------------------------------------------------------------------------- /public/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/images/rails.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/stylesheets/admin.css.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/stylesheets/compass_bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/stylesheets/compass_bootstrap.css -------------------------------------------------------------------------------- /public/stylesheets/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/stylesheets/ie.css -------------------------------------------------------------------------------- /public/stylesheets/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/stylesheets/mobile.css -------------------------------------------------------------------------------- /public/stylesheets/offline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/stylesheets/offline.css -------------------------------------------------------------------------------- /public/stylesheets/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/stylesheets/print.css -------------------------------------------------------------------------------- /public/stylesheets/scaffolds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/stylesheets/scaffolds.css -------------------------------------------------------------------------------- /public/stylesheets/scaffolds.css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/stylesheets/scaffolds.css.css -------------------------------------------------------------------------------- /public/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/stylesheets/screen.css -------------------------------------------------------------------------------- /public/stylesheets/style.css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/public/stylesheets/style.css.css -------------------------------------------------------------------------------- /public/stylesheets/timeline_events.css.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /script/cucumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/script/cucumber -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/script/rails -------------------------------------------------------------------------------- /spec/controllers/admin_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/admin_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api_v1_records_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/api_v1_records_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api_v1_tokens_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/api_v1_tokens_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/application_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/application_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/contexts_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/contexts_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/csa_foods_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/csa_foods_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/decision_logs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/decision_logs_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/decisions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/decisions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/foods_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/foods_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/goals_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/goals_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/grocery_list_items_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/grocery_list_items_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/grocery_lists_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/grocery_lists_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/home_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/home_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/library_items_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/library_items_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/location_histories_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/location_histories_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/measurement_logs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/measurement_logs_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/measurements_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/measurements_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/memories_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/memories_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/receipt_item_categories_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/receipt_item_categories_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/receipt_item_types_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/receipt_item_types_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/receipt_items_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/receipt_items_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/record_categories_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/record_categories_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/records_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/records_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/registrations_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/registrations_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/services_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/services_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/sessions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/sessions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/stuff_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/stuff_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/tap_log_records_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/tap_log_records_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/time_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/time_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/timeline_events_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/timeline_events_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/toronto_libraries_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/toronto_libraries_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/controllers/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/clothing_match.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/clothing_match.rb -------------------------------------------------------------------------------- /spec/factories/context_rules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/context_rules.rb -------------------------------------------------------------------------------- /spec/factories/factory_clothing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_clothing.rb -------------------------------------------------------------------------------- /spec/factories/factory_clothing_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_clothing_log.rb -------------------------------------------------------------------------------- /spec/factories/factory_csa_food.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_csa_food.rb -------------------------------------------------------------------------------- /spec/factories/factory_decision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_decision.rb -------------------------------------------------------------------------------- /spec/factories/factory_decision_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_decision_log.rb -------------------------------------------------------------------------------- /spec/factories/factory_food.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_food.rb -------------------------------------------------------------------------------- /spec/factories/factory_goal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_goal.rb -------------------------------------------------------------------------------- /spec/factories/factory_library_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_library_item.rb -------------------------------------------------------------------------------- /spec/factories/factory_measurement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_measurement.rb -------------------------------------------------------------------------------- /spec/factories/factory_measurement_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_measurement_log.rb -------------------------------------------------------------------------------- /spec/factories/factory_time_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_time_record.rb -------------------------------------------------------------------------------- /spec/factories/factory_toronto_library.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_toronto_library.rb -------------------------------------------------------------------------------- /spec/factories/factory_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/factory_user.rb -------------------------------------------------------------------------------- /spec/factories/grocery_list_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/grocery_list_users.rb -------------------------------------------------------------------------------- /spec/factories/grocery_lists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/grocery_lists.rb -------------------------------------------------------------------------------- /spec/factories/memories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/memories.rb -------------------------------------------------------------------------------- /spec/factories/receipt_item_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/receipt_item_categories.rb -------------------------------------------------------------------------------- /spec/factories/receipt_item_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/receipt_item_types.rb -------------------------------------------------------------------------------- /spec/factories/receipt_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/receipt_items.rb -------------------------------------------------------------------------------- /spec/factories/record_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/record_categories.rb -------------------------------------------------------------------------------- /spec/factories/records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/records.rb -------------------------------------------------------------------------------- /spec/factories/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/services.rb -------------------------------------------------------------------------------- /spec/factories/signups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/signups.rb -------------------------------------------------------------------------------- /spec/factories/tap_log_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/tap_log_records.rb -------------------------------------------------------------------------------- /spec/factories/timeline_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/factories/timeline_events.rb -------------------------------------------------------------------------------- /spec/fixtures/files/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/fixtures/files/account.html -------------------------------------------------------------------------------- /spec/fixtures/files/hold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/fixtures/files/hold.html -------------------------------------------------------------------------------- /spec/fixtures/files/hold_failed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/fixtures/files/hold_failed.html -------------------------------------------------------------------------------- /spec/fixtures/files/hold_placed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/fixtures/files/hold_placed.html -------------------------------------------------------------------------------- /spec/fixtures/files/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/fixtures/files/login.html -------------------------------------------------------------------------------- /spec/fixtures/files/sample-color-ff0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/fixtures/files/sample-color-ff0000.png -------------------------------------------------------------------------------- /spec/fixtures/files/sample-tap-log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/fixtures/files/sample-tap-log.csv -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/clothing_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/helpers/clothing_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/grocery_list_items_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/helpers/grocery_list_items_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/grocery_lists_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/helpers/grocery_lists_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/stuff_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/helpers/stuff_helper_spec.rb -------------------------------------------------------------------------------- /spec/models/ability_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/ability_spec.rb -------------------------------------------------------------------------------- /spec/models/clothing_log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/clothing_log_spec.rb -------------------------------------------------------------------------------- /spec/models/clothing_match_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/clothing_match_spec.rb -------------------------------------------------------------------------------- /spec/models/clothing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/clothing_spec.rb -------------------------------------------------------------------------------- /spec/models/context_rule_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/context_rule_spec.rb -------------------------------------------------------------------------------- /spec/models/context_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/context_spec.rb -------------------------------------------------------------------------------- /spec/models/csa_food_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/csa_food_spec.rb -------------------------------------------------------------------------------- /spec/models/day_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/day_spec.rb -------------------------------------------------------------------------------- /spec/models/food_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/food_spec.rb -------------------------------------------------------------------------------- /spec/models/goal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/goal_spec.rb -------------------------------------------------------------------------------- /spec/models/grocery_list_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/grocery_list_item_spec.rb -------------------------------------------------------------------------------- /spec/models/grocery_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/grocery_list_spec.rb -------------------------------------------------------------------------------- /spec/models/grocery_list_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/grocery_list_user_spec.rb -------------------------------------------------------------------------------- /spec/models/library_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/library_item_spec.rb -------------------------------------------------------------------------------- /spec/models/location_history_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/location_history_spec.rb -------------------------------------------------------------------------------- /spec/models/measurement_log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/measurement_log_spec.rb -------------------------------------------------------------------------------- /spec/models/memory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/memory_spec.rb -------------------------------------------------------------------------------- /spec/models/receipt_item_category_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/receipt_item_category_spec.rb -------------------------------------------------------------------------------- /spec/models/receipt_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/receipt_item_spec.rb -------------------------------------------------------------------------------- /spec/models/receipt_item_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/receipt_item_type_spec.rb -------------------------------------------------------------------------------- /spec/models/record_category_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/record_category_spec.rb -------------------------------------------------------------------------------- /spec/models/record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/record_spec.rb -------------------------------------------------------------------------------- /spec/models/stuff_observer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/stuff_observer_spec.rb -------------------------------------------------------------------------------- /spec/models/stuff_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/stuff_spec.rb -------------------------------------------------------------------------------- /spec/models/tap_log_record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/tap_log_record_spec.rb -------------------------------------------------------------------------------- /spec/models/time_record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/time_record_spec.rb -------------------------------------------------------------------------------- /spec/models/toronto_library_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/toronto_library_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/requests/application_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/requests/application_spec.rb -------------------------------------------------------------------------------- /spec/requests/grocery_list_items_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/requests/grocery_list_items_spec.rb -------------------------------------------------------------------------------- /spec/requests/grocery_lists_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/requests/grocery_lists_spec.rb -------------------------------------------------------------------------------- /spec/requests/record_categories_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/requests/record_categories_spec.rb -------------------------------------------------------------------------------- /spec/requests/registrations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/requests/registrations_spec.rb -------------------------------------------------------------------------------- /spec/requests/time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/requests/time_spec.rb -------------------------------------------------------------------------------- /spec/requests/timeline_events_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/requests/timeline_events_spec.rb -------------------------------------------------------------------------------- /spec/routing/contexts_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/routing/contexts_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/grocery_list_items_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/routing/grocery_list_items_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/grocery_lists_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/routing/grocery_lists_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/memories_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/routing/memories_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/record_categories_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/routing/record_categories_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/records_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/routing/records_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/tap_log_records_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/routing/tap_log_records_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/timeline_events_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/routing/timeline_events_routing_spec.rb -------------------------------------------------------------------------------- /spec/support/awesome.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/support/awesome.rb -------------------------------------------------------------------------------- /spec/support/controller_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/support/controller_macros.rb -------------------------------------------------------------------------------- /spec/views/timeline_events/edit.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/views/timeline_events/edit.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/timeline_events/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/views/timeline_events/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/timeline_events/new.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/views/timeline_events/new.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/timeline_events/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/spec/views/timeline_events/show.html.haml_spec.rb -------------------------------------------------------------------------------- /vendor/assets/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } -------------------------------------------------------------------------------- /vendor/assets/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/bower_components/angular/README.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/bower_components/angular/angular.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/bower_components/angular/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/bower_components/angular/package.json -------------------------------------------------------------------------------- /vendor/assets/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/images/edit.png -------------------------------------------------------------------------------- /vendor/assets/images/facebook_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/images/facebook_32.png -------------------------------------------------------------------------------- /vendor/assets/images/facebook_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/images/facebook_64.png -------------------------------------------------------------------------------- /vendor/assets/images/google_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/images/google_32.png -------------------------------------------------------------------------------- /vendor/assets/images/google_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/images/google_64.png -------------------------------------------------------------------------------- /vendor/assets/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/images/trash.png -------------------------------------------------------------------------------- /vendor/assets/images/twitter_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/images/twitter_32.png -------------------------------------------------------------------------------- /vendor/assets/images/twitter_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/images/twitter_64.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap-alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/bootstrap-alerts.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/bootstrap-dropdown.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/bootstrap-modal.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/bootstrap-popover.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/bootstrap-scrollspy.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/bootstrap-tabs.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap-twipsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/bootstrap-twipsy.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/g.pie-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/g.pie-min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/g.raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/g.raphael-min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jit-yc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/jit-yc.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/jit.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/jquery-ui.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/jquery.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.offline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/jquery.offline.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.qtip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/jquery.qtip.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.sparkline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/jquery.sparkline.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/jquery.timeago.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.tmpl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/jquery.tmpl.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/json.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/protovis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/protovis.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/javascripts/raphael-min.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/jquery.qtip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachac/quantified/HEAD/vendor/assets/stylesheets/jquery.qtip.min.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/vendor.css: -------------------------------------------------------------------------------- 1 | //= require_tree . 2 | --------------------------------------------------------------------------------