├── .bowerrc ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .hound.yml ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── images │ │ ├── .keep │ │ ├── bg-1.jpg │ │ ├── bg2.jpg │ │ ├── boy.jpg │ │ ├── service_request.png │ │ ├── star-off.png │ │ └── star-on.png │ ├── javascripts │ │ ├── application.js │ │ ├── artisan_quote.js │ │ ├── artisan_skillsets.js │ │ ├── biddings.js │ │ ├── closeFlash.js │ │ ├── dashboard.js │ │ ├── datePicker.js │ │ ├── endorsements.js │ │ ├── getTaskLocation.js │ │ ├── helpers.js │ │ ├── index.js │ │ ├── live_notify.js │ │ ├── loadScript.js │ │ ├── questionsDb.js │ │ ├── quote_notification.js │ │ ├── references.js │ │ ├── role.js │ │ ├── scrollr.js │ │ ├── search.js │ │ ├── search_result.js │ │ ├── search_with_map.js │ │ ├── services.js │ │ ├── share_contact.coffee │ │ ├── show_information.js │ │ ├── sidebar.js │ │ ├── star-rating.js │ │ ├── task_management_notifications.js │ │ ├── tasks.js │ │ ├── toggle_notifications.js │ │ ├── user_plans.js │ │ ├── users.js │ │ └── users │ │ │ └── responses.js │ └── stylesheets │ │ ├── application.scss │ │ ├── base │ │ ├── _config.scss │ │ ├── _globals.scss │ │ ├── _helpers.scss │ │ └── _mixins.scss │ │ ├── endorsements.scss │ │ ├── styles │ │ ├── _biddings.scss │ │ ├── _choose_role.scss │ │ ├── _dashboard.scss │ │ ├── _index.scss │ │ ├── _references.scss │ │ ├── _search.scss │ │ ├── _sessions.scss │ │ ├── _skillsets.scss │ │ ├── _tasks.scss │ │ ├── _tasks_managements.scss │ │ ├── _user_plans.scss │ │ ├── _users.scss │ │ ├── admin.scss │ │ ├── profile_meter.scss │ │ ├── search_result.scss │ │ └── services.scss │ │ └── users │ │ └── responses.scss ├── controllers │ ├── account_activations_controller.rb │ ├── admin │ │ ├── applicants_controller.rb │ │ └── ratings_controller.rb │ ├── application_controller.rb │ ├── artisan_skillsets_controller.rb │ ├── artisans_controller.rb │ ├── biddings_controller.rb │ ├── charges_controller.rb │ ├── concerns │ │ └── .keep │ ├── dashboard │ │ ├── endorsements_controller.rb │ │ └── references_controller.rb │ ├── dashboard_controller.rb │ ├── map_controller.rb │ ├── notifications_controller.rb │ ├── pages_controller.rb │ ├── quotes_controller.rb │ ├── services_controller.rb │ ├── sessions_controller.rb │ ├── skillsets_controller.rb │ ├── task_managements_controller.rb │ ├── tasks_controller.rb │ ├── test_controller.rb │ ├── user_plans_controller.rb │ ├── user_profile.rb │ ├── users │ │ └── responses_controller.rb │ └── users_controller.rb ├── decorators │ └── user_decorator.rb ├── helpers │ ├── account_activation_helper.rb │ ├── admin_helper.rb │ ├── application_helper.rb │ ├── dashboard_helper.rb │ ├── endorsements_helper.rb │ ├── notifications_helper.rb │ ├── pages_helper.rb │ ├── references_helper.rb │ ├── services_helper.rb │ ├── sessions_helper.rb │ ├── skillsets_helper.rb │ ├── task_managements_helper.rb │ ├── tasks_helper.rb │ ├── user_plans_helper.rb │ ├── users │ │ └── responses_helper.rb │ └── users_helper.rb ├── jobs │ └── service_assignment_job.rb ├── mailers │ ├── .keep │ ├── application_mailer.rb │ ├── contact_mailer.rb │ ├── notification_mailer.rb │ ├── reference_mailer.rb │ └── user_mailer.rb ├── models │ ├── .keep │ ├── admin.rb │ ├── artisan.rb │ ├── artisan_skillset.rb │ ├── bid_management.rb │ ├── bidding.rb │ ├── notification.rb │ ├── question.rb │ ├── quote.rb │ ├── rating.rb │ ├── reference.rb │ ├── response.rb │ ├── review.rb │ ├── service.rb │ ├── service_assignment.rb │ ├── skillset.rb │ ├── task.rb │ ├── task_management.rb │ ├── tasker.rb │ ├── user.rb │ ├── user_plan.rb │ └── vetting_record.rb ├── views │ ├── account_activation │ │ └── confirm_email.html.erb │ ├── admin │ │ ├── applicants │ │ │ ├── _no_applicants_to_review.html.erb │ │ │ ├── edit.html.erb │ │ │ └── index.html.erb │ │ └── ratings │ │ │ ├── certify_artisans.html.erb │ │ │ └── new.html.erb │ ├── artisan_skillsets │ │ ├── _skillset.html.erb │ │ └── index.html.erb │ ├── artisans │ │ └── index.html.erb │ ├── biddings │ │ ├── _bidding.html.erb │ │ ├── _form.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── contact_mailer │ │ └── contact_details.html.erb │ ├── dashboard │ │ ├── admin_home.html.erb │ │ ├── assign_task.html.erb │ │ ├── choose_role.html.erb │ │ ├── endorsements │ │ │ └── new.html.erb │ │ ├── home.html.erb │ │ ├── partials │ │ │ └── _choose_skillset.html.erb │ │ ├── profile_view.html.erb │ │ ├── references │ │ │ ├── _form.html.erb │ │ │ ├── _reference.html.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ ├── search_with_map.html.erb │ │ └── user_profile.html.erb │ ├── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb │ ├── notification_mailer │ │ ├── send_contact_info.html.erb │ │ ├── send_notifications.html.erb │ │ └── send_notifications.text.erb │ ├── notifications │ │ ├── _show_information.html.erb │ │ └── index.html.erb │ ├── pages │ │ ├── about.html.erb │ │ ├── become_a_artisan.html.erb │ │ ├── contact.html.erb │ │ ├── index.html.erb │ │ ├── search_result.html.erb │ │ └── terms.html.erb │ ├── partials │ │ ├── _artisan_guidelines.html.erb │ │ ├── _choose_a_path.html.erb │ │ ├── _error_msg.html.erb │ │ ├── _flash.html.erb │ │ ├── _footer.html.erb │ │ ├── _header.html.erb │ │ ├── _search_for_artisan.html.erb │ │ ├── _sidebar.html.erb │ │ ├── _sidebar_dashboard.html.erb │ │ └── _tasker_guidelines.html.erb │ ├── reference_mailer │ │ ├── reference_email.html.erb │ │ └── reference_email.txt.erb │ ├── services │ │ ├── _form.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── task_managements │ │ ├── _pay.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── tasks │ │ ├── _task.html.erb │ │ ├── new.html.erb │ │ ├── partials │ │ │ ├── _bids_list.html.erb │ │ │ └── _location.html.erb │ │ ├── search.html.erb │ │ └── show.html.erb │ ├── user_mailer │ │ ├── account_activation.html.erb │ │ └── account_activation.text.erb │ ├── user_plans │ │ └── index.html.erb │ └── users │ │ ├── _user.html.erb │ │ ├── new.html.erb │ │ └── responses │ │ ├── new.html.erb │ │ └── show.html.erb └── workers │ └── postman_worker.rb ├── artisan_guidelines.md ├── bin ├── bundle ├── rails ├── rake └── setup ├── bower.json ├── circle.yml ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cloudinary.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── events.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── default_attributes.rb │ ├── faker_avatar.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── omniauth.rb │ ├── session_store.rb │ ├── stripe.rb │ ├── utility.rb │ ├── websocket_rails.rb │ ├── will_paginate_extensions.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20151020161504_create_users.rb │ ├── 20151024080643_add_index_to_users_email.rb │ ├── 20151111160025_create_tasks.rb │ ├── 20151111160258_create_skillsets.rb │ ├── 20151111161135_add_column_location_to_user.rb │ ├── 20151112121257_add_coulmn_user_type_to_user.rb │ ├── 20151112121847_add_coulmn_provider_to_user.rb │ ├── 20151113045643_add_column_oauth_id_to_users.rb │ ├── 20151117111353_add_column_confirmation_fields_to_users.rb │ ├── 20151117120323_add_column_country_to_users.rb │ ├── 20151117151543_remove_column_latitude_from_users.rb │ ├── 20151118023009_remove_column_country_from_users.rb │ ├── 20151118101033_add_column_image_url_to_users.rb │ ├── 20151207153837_add_has_taken_quiz_to_users.rb │ ├── 20160111125229_create_reviews.rb │ ├── 20160111143444_create_task_managements.rb │ ├── 20160112130238_remove_column_from_skillsets.rb │ ├── 20160112130841_add_amount_and_task_time_to_task_management.rb │ ├── 20160113150747_add_columns_to_task_management.rb │ ├── 20160115184332_rename_notified_to_artisan_notified.rb │ ├── 20160115184424_add_tasker_notified_to_task_management.rb │ ├── 20160126112320_add_longitude_and_latitude.rb │ ├── 20160222120205_add_enable_notifications_column.rb │ ├── 20160405092938_add_user_plan_to_users.rb │ ├── 20160408140207_add_expiry_date_to_users.rb │ ├── 20160411125434_create_user_plans.rb │ ├── 20160411161816_remove_columns_from_users.rb │ ├── 20160518082108_create_biddings.rb │ ├── 20160518082354_create_artisan_biddings.rb │ ├── 20160518120126_add_name_to_skillset.rb │ ├── 20160524090547_add_user_id_to_biddings.rb │ ├── 20160524140542_add_name_to_biddings.rb │ ├── 20160528040440_rename_old_table_to_new_table.rb │ ├── 20160620043854_create_notifications.rb │ ├── 20160620070444_add_column_to_notifications.rb │ ├── 20160620143915_remove_unused_columns.rb │ ├── 20160711153320_add_columns_to_tasks.rb │ ├── 20160711165717_add_skillset_ref_to_tasks.rb │ ├── 20160712095326_create_references.rb │ ├── 20160718073817_add_columns_to_reference.rb │ ├── 20160718131827_add_paid_to_task_managements.rb │ ├── 20160718154717_add_default_status.rb │ ├── 20160719072455_add_column_to_references.rb │ ├── 20160719132806_add_lat_lng_to_task.rb │ ├── 20160720093535_add_artisan_id_to_tasks.rb │ ├── 20160720150556_add_price_range_to_task.rb │ ├── 20160721082107_add_done_column_to_references.rb │ ├── 20160721110318_add_broadcasted_to_task.rb │ ├── 20160801081044_create_artisan_skillsets.rb │ ├── 20160801082131_remove_columns_from_skillsets.rb │ ├── 20160801123104_add_shared_to_task_management.rb │ ├── 20160820060921_fix_column_name.rb │ ├── 20160926210149_add_status_to_users.rb │ ├── 20160926220230_add_certified_to_users.rb │ ├── 20160928145755_remove_certified_from_users.rb │ ├── 20160929152526_create_ratings.rb │ ├── 20161003195842_add_user_id_to_ratings.rb │ ├── 20161004102851_create_responses.rb │ ├── 20161005095148_create_questions.rb │ ├── 20161005111334_add_reason_to_user.rb │ ├── 20161007054722_create_vetting_records.rb │ ├── 20161010175558_add_vetted_by_to_vetting_records.rb │ ├── 20161018094828_rename_has_taken_quiz_to_has_taken_questionnaire.rb │ ├── 20161023151201_create_services.rb │ ├── 20161024091925_remove_is_assigned_from_service.rb │ ├── 20161024181157_add_status_to_service.rb │ ├── 20161024182847_alter_service.rb │ ├── 20161026115817_create_service_assignments.rb │ ├── 20161026180933_create_quotes.rb │ ├── 20161031084550_add_expired_to_notification.rb │ └── 20161031130326_specify_default_status_in_quote.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep ├── message.rb └── tasks │ └── .keep ├── logfile ├── public └── favicon.ico ├── spec ├── controllers │ ├── admin │ │ └── applicants_controller_spec.rb │ ├── artisan_skillsets_controller_spec.rb │ ├── artisans_controller_spec.rb │ ├── biddings_controller_spec.rb │ ├── dashboard │ │ ├── endorsements_controller_spec.rb │ │ └── references_controller_spec.rb │ ├── dashboard_controller_spec.rb │ ├── notifications_controller_spec.rb │ ├── ratings_controller_spec.rb │ ├── services_controller_spec.rb │ ├── task_controller_spec.rb │ ├── task_managements_controller_spec.rb │ ├── users │ │ └── responses_controller_spec.rb │ └── users_controller_spec.rb ├── em_helper.rb ├── factories │ ├── artisan_skillsets.rb │ ├── biddings.rb │ ├── notifications.rb │ ├── questions.rb │ ├── quotes.rb │ ├── ratings.rb │ ├── references.rb │ ├── responses.rb │ ├── reviews.rb │ ├── service_assignments.rb │ ├── services.rb │ ├── skillsets.rb │ ├── task_managements.rb │ ├── tasks.rb │ ├── users.rb │ └── vetting_records.rb ├── features │ ├── artisan_logs_spec.rb │ ├── artisan_questionnaire_spec.rb │ ├── certify_artisans_spec.rb │ ├── contact_us_spec.rb │ ├── create_an_endorsement_spec.rb │ ├── create_bid_spec.rb │ ├── create_reference_spec.rb │ ├── get_artisans_by_skillsets_spec.rb │ ├── list_applicants.html.erb_spec.rb │ ├── list_artisans_and_skillsets_spec.rb │ ├── modify_task_spec.rb │ ├── needs_posting_spec.rb │ ├── notification_of_artisans_for_tasks_spec.rb │ ├── oauth_authentication_spec.rb │ ├── omniauth_signins_spec.rb │ ├── payment_gateways_spec.rb │ ├── profile_completion_spec.rb │ ├── profile_settings_spec.rb │ ├── review_applicant.html.erb_spec.rb │ ├── search_of_needs_spec.rb │ ├── share_contact_spec.rb │ ├── submit_service_request_spec.rb │ ├── task_broadcast_spec.rb │ ├── task_managements_spec.rb │ ├── update_artisan_skillset_spec.rb │ ├── user_sign_up_spec.rb │ └── view_pending_requests_spec.rb ├── jobs │ └── service_assignment_job_spec.rb ├── mailers │ ├── contact_mailer_spec.rb │ ├── notification_mailer_spec.rb │ ├── previews │ │ ├── contact_mailer_preview.rb │ │ ├── notification_mailer_preview.rb │ │ ├── reference_mailer_preview.rb │ │ └── user_mailer_preview.rb │ ├── reference_mailer_spec.rb │ └── user_mailer_spec.rb ├── models │ ├── artisan_skillset_spec.rb │ ├── bid_management_spec.rb │ ├── bidding_spec.rb │ ├── notification_spec.rb │ ├── question_spec.rb │ ├── quote_spec.rb │ ├── rating_spec.rb │ ├── reference_spec.rb │ ├── response_spec.rb │ ├── review_spec.rb │ ├── service_assignment_spec.rb │ ├── service_spec.rb │ ├── skillset_spec.rb │ ├── task_management_spec.rb │ ├── task_spec.rb │ ├── user_spec.rb │ └── vetting_record_spec.rb ├── rails_helper.rb ├── spec_helper.rb └── support │ ├── applicaton_controller_spec_helper.rb │ ├── helpers.rb │ └── seed.rb ├── tasker_guidelines.md ├── vendor └── assets │ ├── javascripts │ ├── .keep │ ├── additional-methods.min.js │ ├── jquery.rateyo.min.js │ ├── jquery.validate.min.js │ ├── materialize.clockpicker.js │ └── smooth-scroll.min.js │ └── stylesheets │ ├── .keep │ ├── materialize.clockpicker.css │ ├── pickDate.css │ └── rateyo.css └── workdey_development /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "vendor/assets/javascripts" 3 | } 4 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/.hound.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format documentation 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/images/bg-1.jpg -------------------------------------------------------------------------------- /app/assets/images/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/images/bg2.jpg -------------------------------------------------------------------------------- /app/assets/images/boy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/images/boy.jpg -------------------------------------------------------------------------------- /app/assets/images/service_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/images/service_request.png -------------------------------------------------------------------------------- /app/assets/images/star-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/images/star-off.png -------------------------------------------------------------------------------- /app/assets/images/star-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/images/star-on.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/artisan_quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/artisan_quote.js -------------------------------------------------------------------------------- /app/assets/javascripts/artisan_skillsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/artisan_skillsets.js -------------------------------------------------------------------------------- /app/assets/javascripts/biddings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/biddings.js -------------------------------------------------------------------------------- /app/assets/javascripts/closeFlash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/closeFlash.js -------------------------------------------------------------------------------- /app/assets/javascripts/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/dashboard.js -------------------------------------------------------------------------------- /app/assets/javascripts/datePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/datePicker.js -------------------------------------------------------------------------------- /app/assets/javascripts/endorsements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/endorsements.js -------------------------------------------------------------------------------- /app/assets/javascripts/getTaskLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/getTaskLocation.js -------------------------------------------------------------------------------- /app/assets/javascripts/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/helpers.js -------------------------------------------------------------------------------- /app/assets/javascripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/live_notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/live_notify.js -------------------------------------------------------------------------------- /app/assets/javascripts/loadScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/loadScript.js -------------------------------------------------------------------------------- /app/assets/javascripts/questionsDb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/questionsDb.js -------------------------------------------------------------------------------- /app/assets/javascripts/quote_notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/quote_notification.js -------------------------------------------------------------------------------- /app/assets/javascripts/references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/references.js -------------------------------------------------------------------------------- /app/assets/javascripts/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/role.js -------------------------------------------------------------------------------- /app/assets/javascripts/scrollr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/scrollr.js -------------------------------------------------------------------------------- /app/assets/javascripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/search.js -------------------------------------------------------------------------------- /app/assets/javascripts/search_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/search_result.js -------------------------------------------------------------------------------- /app/assets/javascripts/search_with_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/search_with_map.js -------------------------------------------------------------------------------- /app/assets/javascripts/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/services.js -------------------------------------------------------------------------------- /app/assets/javascripts/share_contact.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/share_contact.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/show_information.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/show_information.js -------------------------------------------------------------------------------- /app/assets/javascripts/sidebar.js: -------------------------------------------------------------------------------- 1 | 2 | $(".button-collapse").sideNav({ 3 | menuWidth: 300 4 | }); 5 | -------------------------------------------------------------------------------- /app/assets/javascripts/star-rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/star-rating.js -------------------------------------------------------------------------------- /app/assets/javascripts/task_management_notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/task_management_notifications.js -------------------------------------------------------------------------------- /app/assets/javascripts/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/toggle_notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/toggle_notifications.js -------------------------------------------------------------------------------- /app/assets/javascripts/user_plans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/user_plans.js -------------------------------------------------------------------------------- /app/assets/javascripts/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/users.js -------------------------------------------------------------------------------- /app/assets/javascripts/users/responses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/javascripts/users/responses.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/base/_config.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/_globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/base/_globals.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/base/_helpers.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/base/_mixins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/endorsements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/endorsements.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_biddings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/_biddings.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_choose_role.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/_choose_role.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/_dashboard.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/_index.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_references.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/_references.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_search.scss: -------------------------------------------------------------------------------- 1 | .map-search { 2 | margin: 10px 0 0 21%; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_sessions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/_sessions.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_skillsets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/_skillsets.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_tasks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/_tasks.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_tasks_managements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/_tasks_managements.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_user_plans.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/_user_plans.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/_users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/_users.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/admin.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/profile_meter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/profile_meter.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/search_result.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/search_result.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styles/services.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/styles/services.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users/responses.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/assets/stylesheets/users/responses.scss -------------------------------------------------------------------------------- /app/controllers/account_activations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/account_activations_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/applicants_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/admin/applicants_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/ratings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/admin/ratings_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/artisan_skillsets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/artisan_skillsets_controller.rb -------------------------------------------------------------------------------- /app/controllers/artisans_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/artisans_controller.rb -------------------------------------------------------------------------------- /app/controllers/biddings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/biddings_controller.rb -------------------------------------------------------------------------------- /app/controllers/charges_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/charges_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/dashboard/endorsements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/dashboard/endorsements_controller.rb -------------------------------------------------------------------------------- /app/controllers/dashboard/references_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/dashboard/references_controller.rb -------------------------------------------------------------------------------- /app/controllers/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/map_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/map_controller.rb -------------------------------------------------------------------------------- /app/controllers/notifications_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/notifications_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/quotes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/quotes_controller.rb -------------------------------------------------------------------------------- /app/controllers/services_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/services_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/skillsets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/skillsets_controller.rb -------------------------------------------------------------------------------- /app/controllers/task_managements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/task_managements_controller.rb -------------------------------------------------------------------------------- /app/controllers/tasks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/tasks_controller.rb -------------------------------------------------------------------------------- /app/controllers/test_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/test_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_plans_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/user_plans_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/user_profile.rb -------------------------------------------------------------------------------- /app/controllers/users/responses_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/users/responses_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/decorators/user_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/decorators/user_decorator.rb -------------------------------------------------------------------------------- /app/helpers/account_activation_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module AccountActivationHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/helpers/admin_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/dashboard_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/helpers/dashboard_helper.rb -------------------------------------------------------------------------------- /app/helpers/endorsements_helper.rb: -------------------------------------------------------------------------------- 1 | module EndorsementsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/notifications_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/helpers/notifications_helper.rb -------------------------------------------------------------------------------- /app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/helpers/pages_helper.rb -------------------------------------------------------------------------------- /app/helpers/references_helper.rb: -------------------------------------------------------------------------------- 1 | module ReferencesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/services_helper.rb: -------------------------------------------------------------------------------- 1 | module ServicesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/sessions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/helpers/sessions_helper.rb -------------------------------------------------------------------------------- /app/helpers/skillsets_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/helpers/skillsets_helper.rb -------------------------------------------------------------------------------- /app/helpers/task_managements_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module TaskManagementsHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/tasks_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/helpers/tasks_helper.rb -------------------------------------------------------------------------------- /app/helpers/user_plans_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module UserPlansHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/users/responses_helper.rb: -------------------------------------------------------------------------------- 1 | module Users::ResponsesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module UsersHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/jobs/service_assignment_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/jobs/service_assignment_job.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/contact_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/mailers/contact_mailer.rb -------------------------------------------------------------------------------- /app/mailers/notification_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/mailers/notification_mailer.rb -------------------------------------------------------------------------------- /app/mailers/reference_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/mailers/reference_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/admin.rb -------------------------------------------------------------------------------- /app/models/artisan.rb: -------------------------------------------------------------------------------- 1 | class Artisan < User 2 | end 3 | -------------------------------------------------------------------------------- /app/models/artisan_skillset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/artisan_skillset.rb -------------------------------------------------------------------------------- /app/models/bid_management.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/bid_management.rb -------------------------------------------------------------------------------- /app/models/bidding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/bidding.rb -------------------------------------------------------------------------------- /app/models/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/notification.rb -------------------------------------------------------------------------------- /app/models/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/question.rb -------------------------------------------------------------------------------- /app/models/quote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/quote.rb -------------------------------------------------------------------------------- /app/models/rating.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/rating.rb -------------------------------------------------------------------------------- /app/models/reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/reference.rb -------------------------------------------------------------------------------- /app/models/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/response.rb -------------------------------------------------------------------------------- /app/models/review.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/review.rb -------------------------------------------------------------------------------- /app/models/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/service.rb -------------------------------------------------------------------------------- /app/models/service_assignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/service_assignment.rb -------------------------------------------------------------------------------- /app/models/skillset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/skillset.rb -------------------------------------------------------------------------------- /app/models/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/task.rb -------------------------------------------------------------------------------- /app/models/task_management.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/task_management.rb -------------------------------------------------------------------------------- /app/models/tasker.rb: -------------------------------------------------------------------------------- 1 | class Tasker < User 2 | end 3 | -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/user_plan.rb -------------------------------------------------------------------------------- /app/models/vetting_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/models/vetting_record.rb -------------------------------------------------------------------------------- /app/views/account_activation/confirm_email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/account_activation/confirm_email.html.erb -------------------------------------------------------------------------------- /app/views/admin/applicants/_no_applicants_to_review.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/admin/applicants/_no_applicants_to_review.html.erb -------------------------------------------------------------------------------- /app/views/admin/applicants/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/admin/applicants/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/applicants/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/admin/applicants/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/ratings/certify_artisans.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/admin/ratings/certify_artisans.html.erb -------------------------------------------------------------------------------- /app/views/admin/ratings/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/admin/ratings/new.html.erb -------------------------------------------------------------------------------- /app/views/artisan_skillsets/_skillset.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/artisan_skillsets/_skillset.html.erb -------------------------------------------------------------------------------- /app/views/artisan_skillsets/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/artisan_skillsets/index.html.erb -------------------------------------------------------------------------------- /app/views/artisans/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/artisans/index.html.erb -------------------------------------------------------------------------------- /app/views/biddings/_bidding.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/biddings/_bidding.html.erb -------------------------------------------------------------------------------- /app/views/biddings/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/biddings/_form.html.erb -------------------------------------------------------------------------------- /app/views/biddings/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/biddings/index.html.erb -------------------------------------------------------------------------------- /app/views/biddings/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/biddings/new.html.erb -------------------------------------------------------------------------------- /app/views/contact_mailer/contact_details.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/contact_mailer/contact_details.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/admin_home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/admin_home.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/assign_task.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/assign_task.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/choose_role.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/choose_role.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/endorsements/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/endorsements/new.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/home.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/partials/_choose_skillset.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/partials/_choose_skillset.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/profile_view.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/profile_view.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/references/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/references/_form.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/references/_reference.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/references/_reference.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/references/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/references/index.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/references/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/references/new.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/search_with_map.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/search_with_map.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/user_profile.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/dashboard/user_profile.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/notification_mailer/send_contact_info.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/notification_mailer/send_contact_info.html.erb -------------------------------------------------------------------------------- /app/views/notification_mailer/send_notifications.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/notification_mailer/send_notifications.html.erb -------------------------------------------------------------------------------- /app/views/notification_mailer/send_notifications.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/notification_mailer/send_notifications.text.erb -------------------------------------------------------------------------------- /app/views/notifications/_show_information.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/notifications/_show_information.html.erb -------------------------------------------------------------------------------- /app/views/notifications/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/notifications/index.html.erb -------------------------------------------------------------------------------- /app/views/pages/about.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/pages/about.html.erb -------------------------------------------------------------------------------- /app/views/pages/become_a_artisan.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/pages/become_a_artisan.html.erb -------------------------------------------------------------------------------- /app/views/pages/contact.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/pages/contact.html.erb -------------------------------------------------------------------------------- /app/views/pages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/pages/index.html.erb -------------------------------------------------------------------------------- /app/views/pages/search_result.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/pages/search_result.html.erb -------------------------------------------------------------------------------- /app/views/pages/terms.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/pages/terms.html.erb -------------------------------------------------------------------------------- /app/views/partials/_artisan_guidelines.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/partials/_artisan_guidelines.html.erb -------------------------------------------------------------------------------- /app/views/partials/_choose_a_path.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/partials/_error_msg.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/partials/_error_msg.html.erb -------------------------------------------------------------------------------- /app/views/partials/_flash.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/partials/_flash.html.erb -------------------------------------------------------------------------------- /app/views/partials/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/partials/_footer.html.erb -------------------------------------------------------------------------------- /app/views/partials/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/partials/_header.html.erb -------------------------------------------------------------------------------- /app/views/partials/_search_for_artisan.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/partials/_search_for_artisan.html.erb -------------------------------------------------------------------------------- /app/views/partials/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/partials/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/partials/_sidebar_dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/partials/_sidebar_dashboard.html.erb -------------------------------------------------------------------------------- /app/views/partials/_tasker_guidelines.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/partials/_tasker_guidelines.html.erb -------------------------------------------------------------------------------- /app/views/reference_mailer/reference_email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/reference_mailer/reference_email.html.erb -------------------------------------------------------------------------------- /app/views/reference_mailer/reference_email.txt.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/reference_mailer/reference_email.txt.erb -------------------------------------------------------------------------------- /app/views/services/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/services/_form.html.erb -------------------------------------------------------------------------------- /app/views/services/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/services/index.html.erb -------------------------------------------------------------------------------- /app/views/services/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/services/new.html.erb -------------------------------------------------------------------------------- /app/views/services/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/services/show.html.erb -------------------------------------------------------------------------------- /app/views/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/task_managements/_pay.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/task_managements/_pay.html.erb -------------------------------------------------------------------------------- /app/views/task_managements/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/task_managements/index.html.erb -------------------------------------------------------------------------------- /app/views/task_managements/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/task_managements/new.html.erb -------------------------------------------------------------------------------- /app/views/task_managements/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/task_managements/show.html.erb -------------------------------------------------------------------------------- /app/views/tasks/_task.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/tasks/_task.html.erb -------------------------------------------------------------------------------- /app/views/tasks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/tasks/new.html.erb -------------------------------------------------------------------------------- /app/views/tasks/partials/_bids_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/tasks/partials/_bids_list.html.erb -------------------------------------------------------------------------------- /app/views/tasks/partials/_location.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/tasks/partials/_location.html.erb -------------------------------------------------------------------------------- /app/views/tasks/search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/tasks/search.html.erb -------------------------------------------------------------------------------- /app/views/tasks/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/tasks/show.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/account_activation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/user_mailer/account_activation.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/account_activation.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/user_mailer/account_activation.text.erb -------------------------------------------------------------------------------- /app/views/user_plans/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/user_plans/index.html.erb -------------------------------------------------------------------------------- /app/views/users/_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/users/_user.html.erb -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /app/views/users/responses/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/users/responses/new.html.erb -------------------------------------------------------------------------------- /app/views/users/responses/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/views/users/responses/show.html.erb -------------------------------------------------------------------------------- /app/workers/postman_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/app/workers/postman_worker.rb -------------------------------------------------------------------------------- /artisan_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/artisan_guidelines.md -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/bin/setup -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/bower.json -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/circle.yml -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cloudinary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/cloudinary.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/events.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/default_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/default_attributes.rb -------------------------------------------------------------------------------- /config/initializers/faker_avatar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/faker_avatar.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/stripe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/stripe.rb -------------------------------------------------------------------------------- /config/initializers/utility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/utility.rb -------------------------------------------------------------------------------- /config/initializers/websocket_rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/websocket_rails.rb -------------------------------------------------------------------------------- /config/initializers/will_paginate_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/will_paginate_extensions.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20151020161504_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151020161504_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20151024080643_add_index_to_users_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151024080643_add_index_to_users_email.rb -------------------------------------------------------------------------------- /db/migrate/20151111160025_create_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151111160025_create_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20151111160258_create_skillsets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151111160258_create_skillsets.rb -------------------------------------------------------------------------------- /db/migrate/20151111161135_add_column_location_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151111161135_add_column_location_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20151112121257_add_coulmn_user_type_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151112121257_add_coulmn_user_type_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20151112121847_add_coulmn_provider_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151112121847_add_coulmn_provider_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20151113045643_add_column_oauth_id_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151113045643_add_column_oauth_id_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20151117111353_add_column_confirmation_fields_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151117111353_add_column_confirmation_fields_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20151117120323_add_column_country_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151117120323_add_column_country_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20151117151543_remove_column_latitude_from_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151117151543_remove_column_latitude_from_users.rb -------------------------------------------------------------------------------- /db/migrate/20151118023009_remove_column_country_from_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151118023009_remove_column_country_from_users.rb -------------------------------------------------------------------------------- /db/migrate/20151118101033_add_column_image_url_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151118101033_add_column_image_url_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20151207153837_add_has_taken_quiz_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20151207153837_add_has_taken_quiz_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20160111125229_create_reviews.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160111125229_create_reviews.rb -------------------------------------------------------------------------------- /db/migrate/20160111143444_create_task_managements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160111143444_create_task_managements.rb -------------------------------------------------------------------------------- /db/migrate/20160112130238_remove_column_from_skillsets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160112130238_remove_column_from_skillsets.rb -------------------------------------------------------------------------------- /db/migrate/20160112130841_add_amount_and_task_time_to_task_management.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160112130841_add_amount_and_task_time_to_task_management.rb -------------------------------------------------------------------------------- /db/migrate/20160113150747_add_columns_to_task_management.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160113150747_add_columns_to_task_management.rb -------------------------------------------------------------------------------- /db/migrate/20160115184332_rename_notified_to_artisan_notified.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160115184332_rename_notified_to_artisan_notified.rb -------------------------------------------------------------------------------- /db/migrate/20160115184424_add_tasker_notified_to_task_management.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160115184424_add_tasker_notified_to_task_management.rb -------------------------------------------------------------------------------- /db/migrate/20160126112320_add_longitude_and_latitude.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160126112320_add_longitude_and_latitude.rb -------------------------------------------------------------------------------- /db/migrate/20160222120205_add_enable_notifications_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160222120205_add_enable_notifications_column.rb -------------------------------------------------------------------------------- /db/migrate/20160405092938_add_user_plan_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160405092938_add_user_plan_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20160408140207_add_expiry_date_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160408140207_add_expiry_date_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20160411125434_create_user_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160411125434_create_user_plans.rb -------------------------------------------------------------------------------- /db/migrate/20160411161816_remove_columns_from_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160411161816_remove_columns_from_users.rb -------------------------------------------------------------------------------- /db/migrate/20160518082108_create_biddings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160518082108_create_biddings.rb -------------------------------------------------------------------------------- /db/migrate/20160518082354_create_artisan_biddings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160518082354_create_artisan_biddings.rb -------------------------------------------------------------------------------- /db/migrate/20160518120126_add_name_to_skillset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160518120126_add_name_to_skillset.rb -------------------------------------------------------------------------------- /db/migrate/20160524090547_add_user_id_to_biddings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160524090547_add_user_id_to_biddings.rb -------------------------------------------------------------------------------- /db/migrate/20160524140542_add_name_to_biddings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160524140542_add_name_to_biddings.rb -------------------------------------------------------------------------------- /db/migrate/20160528040440_rename_old_table_to_new_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160528040440_rename_old_table_to_new_table.rb -------------------------------------------------------------------------------- /db/migrate/20160620043854_create_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160620043854_create_notifications.rb -------------------------------------------------------------------------------- /db/migrate/20160620070444_add_column_to_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160620070444_add_column_to_notifications.rb -------------------------------------------------------------------------------- /db/migrate/20160620143915_remove_unused_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160620143915_remove_unused_columns.rb -------------------------------------------------------------------------------- /db/migrate/20160711153320_add_columns_to_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160711153320_add_columns_to_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20160711165717_add_skillset_ref_to_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160711165717_add_skillset_ref_to_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20160712095326_create_references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160712095326_create_references.rb -------------------------------------------------------------------------------- /db/migrate/20160718073817_add_columns_to_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160718073817_add_columns_to_reference.rb -------------------------------------------------------------------------------- /db/migrate/20160718131827_add_paid_to_task_managements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160718131827_add_paid_to_task_managements.rb -------------------------------------------------------------------------------- /db/migrate/20160718154717_add_default_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160718154717_add_default_status.rb -------------------------------------------------------------------------------- /db/migrate/20160719072455_add_column_to_references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160719072455_add_column_to_references.rb -------------------------------------------------------------------------------- /db/migrate/20160719132806_add_lat_lng_to_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160719132806_add_lat_lng_to_task.rb -------------------------------------------------------------------------------- /db/migrate/20160720093535_add_artisan_id_to_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160720093535_add_artisan_id_to_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20160720150556_add_price_range_to_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160720150556_add_price_range_to_task.rb -------------------------------------------------------------------------------- /db/migrate/20160721082107_add_done_column_to_references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160721082107_add_done_column_to_references.rb -------------------------------------------------------------------------------- /db/migrate/20160721110318_add_broadcasted_to_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160721110318_add_broadcasted_to_task.rb -------------------------------------------------------------------------------- /db/migrate/20160801081044_create_artisan_skillsets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160801081044_create_artisan_skillsets.rb -------------------------------------------------------------------------------- /db/migrate/20160801082131_remove_columns_from_skillsets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160801082131_remove_columns_from_skillsets.rb -------------------------------------------------------------------------------- /db/migrate/20160801123104_add_shared_to_task_management.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160801123104_add_shared_to_task_management.rb -------------------------------------------------------------------------------- /db/migrate/20160820060921_fix_column_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160820060921_fix_column_name.rb -------------------------------------------------------------------------------- /db/migrate/20160926210149_add_status_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160926210149_add_status_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20160926220230_add_certified_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160926220230_add_certified_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20160928145755_remove_certified_from_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160928145755_remove_certified_from_users.rb -------------------------------------------------------------------------------- /db/migrate/20160929152526_create_ratings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20160929152526_create_ratings.rb -------------------------------------------------------------------------------- /db/migrate/20161003195842_add_user_id_to_ratings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161003195842_add_user_id_to_ratings.rb -------------------------------------------------------------------------------- /db/migrate/20161004102851_create_responses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161004102851_create_responses.rb -------------------------------------------------------------------------------- /db/migrate/20161005095148_create_questions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161005095148_create_questions.rb -------------------------------------------------------------------------------- /db/migrate/20161005111334_add_reason_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161005111334_add_reason_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20161007054722_create_vetting_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161007054722_create_vetting_records.rb -------------------------------------------------------------------------------- /db/migrate/20161010175558_add_vetted_by_to_vetting_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161010175558_add_vetted_by_to_vetting_records.rb -------------------------------------------------------------------------------- /db/migrate/20161018094828_rename_has_taken_quiz_to_has_taken_questionnaire.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161018094828_rename_has_taken_quiz_to_has_taken_questionnaire.rb -------------------------------------------------------------------------------- /db/migrate/20161023151201_create_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161023151201_create_services.rb -------------------------------------------------------------------------------- /db/migrate/20161024091925_remove_is_assigned_from_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161024091925_remove_is_assigned_from_service.rb -------------------------------------------------------------------------------- /db/migrate/20161024181157_add_status_to_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161024181157_add_status_to_service.rb -------------------------------------------------------------------------------- /db/migrate/20161024182847_alter_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161024182847_alter_service.rb -------------------------------------------------------------------------------- /db/migrate/20161026115817_create_service_assignments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161026115817_create_service_assignments.rb -------------------------------------------------------------------------------- /db/migrate/20161026180933_create_quotes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161026180933_create_quotes.rb -------------------------------------------------------------------------------- /db/migrate/20161031084550_add_expired_to_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161031084550_add_expired_to_notification.rb -------------------------------------------------------------------------------- /db/migrate/20161031130326_specify_default_status_in_quote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/migrate/20161031130326_specify_default_status_in_quote.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/lib/message.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/logfile -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/controllers/admin/applicants_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/admin/applicants_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/artisan_skillsets_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/artisan_skillsets_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/artisans_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/artisans_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/biddings_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/biddings_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/dashboard/endorsements_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/dashboard/endorsements_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/dashboard/references_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/dashboard/references_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/dashboard_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/dashboard_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/notifications_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/notifications_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/ratings_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/ratings_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/services_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/services_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/task_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/task_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/task_managements_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/task_managements_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users/responses_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/users/responses_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/controllers/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/em_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/em_helper.rb -------------------------------------------------------------------------------- /spec/factories/artisan_skillsets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/artisan_skillsets.rb -------------------------------------------------------------------------------- /spec/factories/biddings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/biddings.rb -------------------------------------------------------------------------------- /spec/factories/notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/notifications.rb -------------------------------------------------------------------------------- /spec/factories/questions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/questions.rb -------------------------------------------------------------------------------- /spec/factories/quotes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/quotes.rb -------------------------------------------------------------------------------- /spec/factories/ratings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/ratings.rb -------------------------------------------------------------------------------- /spec/factories/references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/references.rb -------------------------------------------------------------------------------- /spec/factories/responses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/responses.rb -------------------------------------------------------------------------------- /spec/factories/reviews.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/reviews.rb -------------------------------------------------------------------------------- /spec/factories/service_assignments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/service_assignments.rb -------------------------------------------------------------------------------- /spec/factories/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/services.rb -------------------------------------------------------------------------------- /spec/factories/skillsets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/skillsets.rb -------------------------------------------------------------------------------- /spec/factories/task_managements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/task_managements.rb -------------------------------------------------------------------------------- /spec/factories/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/tasks.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/factories/vetting_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/factories/vetting_records.rb -------------------------------------------------------------------------------- /spec/features/artisan_logs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/artisan_logs_spec.rb -------------------------------------------------------------------------------- /spec/features/artisan_questionnaire_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/artisan_questionnaire_spec.rb -------------------------------------------------------------------------------- /spec/features/certify_artisans_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/certify_artisans_spec.rb -------------------------------------------------------------------------------- /spec/features/contact_us_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/contact_us_spec.rb -------------------------------------------------------------------------------- /spec/features/create_an_endorsement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/create_an_endorsement_spec.rb -------------------------------------------------------------------------------- /spec/features/create_bid_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/create_bid_spec.rb -------------------------------------------------------------------------------- /spec/features/create_reference_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/create_reference_spec.rb -------------------------------------------------------------------------------- /spec/features/get_artisans_by_skillsets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/get_artisans_by_skillsets_spec.rb -------------------------------------------------------------------------------- /spec/features/list_applicants.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/list_applicants.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/features/list_artisans_and_skillsets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/list_artisans_and_skillsets_spec.rb -------------------------------------------------------------------------------- /spec/features/modify_task_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/modify_task_spec.rb -------------------------------------------------------------------------------- /spec/features/needs_posting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/needs_posting_spec.rb -------------------------------------------------------------------------------- /spec/features/notification_of_artisans_for_tasks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/notification_of_artisans_for_tasks_spec.rb -------------------------------------------------------------------------------- /spec/features/oauth_authentication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/oauth_authentication_spec.rb -------------------------------------------------------------------------------- /spec/features/omniauth_signins_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/omniauth_signins_spec.rb -------------------------------------------------------------------------------- /spec/features/payment_gateways_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/payment_gateways_spec.rb -------------------------------------------------------------------------------- /spec/features/profile_completion_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/profile_completion_spec.rb -------------------------------------------------------------------------------- /spec/features/profile_settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/profile_settings_spec.rb -------------------------------------------------------------------------------- /spec/features/review_applicant.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/review_applicant.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/features/search_of_needs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/search_of_needs_spec.rb -------------------------------------------------------------------------------- /spec/features/share_contact_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/share_contact_spec.rb -------------------------------------------------------------------------------- /spec/features/submit_service_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/submit_service_request_spec.rb -------------------------------------------------------------------------------- /spec/features/task_broadcast_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/task_broadcast_spec.rb -------------------------------------------------------------------------------- /spec/features/task_managements_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/task_managements_spec.rb -------------------------------------------------------------------------------- /spec/features/update_artisan_skillset_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/update_artisan_skillset_spec.rb -------------------------------------------------------------------------------- /spec/features/user_sign_up_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/user_sign_up_spec.rb -------------------------------------------------------------------------------- /spec/features/view_pending_requests_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/features/view_pending_requests_spec.rb -------------------------------------------------------------------------------- /spec/jobs/service_assignment_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/jobs/service_assignment_job_spec.rb -------------------------------------------------------------------------------- /spec/mailers/contact_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/mailers/contact_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/notification_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/mailers/notification_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/previews/contact_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/mailers/previews/contact_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/notification_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/mailers/previews/notification_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/reference_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/mailers/previews/reference_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/user_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/mailers/previews/user_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/reference_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/mailers/reference_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/user_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/mailers/user_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/artisan_skillset_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/artisan_skillset_spec.rb -------------------------------------------------------------------------------- /spec/models/bid_management_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/bid_management_spec.rb -------------------------------------------------------------------------------- /spec/models/bidding_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/bidding_spec.rb -------------------------------------------------------------------------------- /spec/models/notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/notification_spec.rb -------------------------------------------------------------------------------- /spec/models/question_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/question_spec.rb -------------------------------------------------------------------------------- /spec/models/quote_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/quote_spec.rb -------------------------------------------------------------------------------- /spec/models/rating_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/rating_spec.rb -------------------------------------------------------------------------------- /spec/models/reference_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/reference_spec.rb -------------------------------------------------------------------------------- /spec/models/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/response_spec.rb -------------------------------------------------------------------------------- /spec/models/review_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/review_spec.rb -------------------------------------------------------------------------------- /spec/models/service_assignment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/service_assignment_spec.rb -------------------------------------------------------------------------------- /spec/models/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/service_spec.rb -------------------------------------------------------------------------------- /spec/models/skillset_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/skillset_spec.rb -------------------------------------------------------------------------------- /spec/models/task_management_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/task_management_spec.rb -------------------------------------------------------------------------------- /spec/models/task_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/task_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/vetting_record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/models/vetting_record_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/applicaton_controller_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/support/applicaton_controller_spec_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/support/helpers.rb -------------------------------------------------------------------------------- /spec/support/seed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/spec/support/seed.rb -------------------------------------------------------------------------------- /tasker_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/tasker_guidelines.md -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/vendor/assets/javascripts/additional-methods.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.rateyo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/vendor/assets/javascripts/jquery.rateyo.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/vendor/assets/javascripts/jquery.validate.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/materialize.clockpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/vendor/assets/javascripts/materialize.clockpicker.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/smooth-scroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/vendor/assets/javascripts/smooth-scroll.min.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/materialize.clockpicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/vendor/assets/stylesheets/materialize.clockpicker.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/pickDate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/vendor/assets/stylesheets/pickDate.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/rateyo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/vendor/assets/stylesheets/rateyo.css -------------------------------------------------------------------------------- /workdey_development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andela/workdey/HEAD/workdey_development --------------------------------------------------------------------------------