stay_commerce 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +53 -0
- data/Rakefile +8 -0
- data/app/assets/config/stay_manifest.js +1 -0
- data/app/assets/fonts/bootstrap-icons.woff +0 -0
- data/app/assets/fonts/bootstrap-icons.woff2 +0 -0
- data/app/assets/images/chevron-down.svg +3 -0
- data/app/assets/images/circle-fill.svg +3 -0
- data/app/assets/images/circle.svg +3 -0
- data/app/assets/images/plus-circle.svg +4 -0
- data/app/assets/images/save.svg +3 -0
- data/app/assets/images/store.svg +3 -0
- data/app/assets/javascripts/stay/admin/address.js +165 -0
- data/app/assets/javascripts/stay/admin/ckeditor.min.js +7 -0
- data/app/assets/javascripts/stay/admin/flatpickr.min.js +2 -0
- data/app/assets/javascripts/stay/admin/index.js +28 -0
- data/app/assets/javascripts/stay/admin/property.js +37 -0
- data/app/assets/javascripts/stay/admin/select2.min.js +2 -0
- data/app/assets/javascripts/stay/application.js +14 -0
- data/app/assets/javascripts/stay/bootstrap.bundle.min.js +7 -0
- data/app/assets/javascripts/stay/ckeditor.js +11 -0
- data/app/assets/javascripts/stay/custom.js +56 -0
- data/app/assets/javascripts/stay/jquery-ui.min.js +13 -0
- data/app/assets/javascripts/stay/jquery.min.js +2 -0
- data/app/assets/stylesheets/stay/admin/flatpickr.min.css +13 -0
- data/app/assets/stylesheets/stay/admin/index.css +100 -0
- data/app/assets/stylesheets/stay/admin/select2.min.css +1 -0
- data/app/assets/stylesheets/stay/application.css +24 -0
- data/app/assets/stylesheets/stay/badges.css +72 -0
- data/app/assets/stylesheets/stay/bootstrap-icons.min.css +5 -0
- data/app/assets/stylesheets/stay/bootstrap-icons_fix.css +5 -0
- data/app/assets/stylesheets/stay/common.css +283 -0
- data/app/assets/stylesheets/stay/jquery-ui.css +1311 -0
- data/app/assets/stylesheets/stay/webpixels.css +7 -0
- data/app/channels/chat_channel.rb +13 -0
- data/app/controllers/concerns/stay/booking_validations.rb +86 -0
- data/app/controllers/concerns/stay/stripe_concern.rb +72 -0
- data/app/controllers/stay/admin/addresses_controller.rb +76 -0
- data/app/controllers/stay/admin/amenities_controller.rb +52 -0
- data/app/controllers/stay/admin/amenity_categories_controller.rb +52 -0
- data/app/controllers/stay/admin/base_controller.rb +38 -0
- data/app/controllers/stay/admin/bed_types_controller.rb +51 -0
- data/app/controllers/stay/admin/bookings_controller.rb +54 -0
- data/app/controllers/stay/admin/cancellation_policies_controller.rb +51 -0
- data/app/controllers/stay/admin/chats_controller.rb +53 -0
- data/app/controllers/stay/admin/cities_controller.rb +66 -0
- data/app/controllers/stay/admin/confirmations_controller.rb +30 -0
- data/app/controllers/stay/admin/countries_controller.rb +53 -0
- data/app/controllers/stay/admin/dashboard_controller.rb +8 -0
- data/app/controllers/stay/admin/features_controller.rb +54 -0
- data/app/controllers/stay/admin/home_controller.rb +15 -0
- data/app/controllers/stay/admin/house_rules_controller.rb +51 -0
- data/app/controllers/stay/admin/messages_controller.rb +53 -0
- data/app/controllers/stay/admin/passwords_controller.rb +32 -0
- data/app/controllers/stay/admin/payment_methods_controller.rb +53 -0
- data/app/controllers/stay/admin/payments_controller.rb +63 -0
- data/app/controllers/stay/admin/properties_controller.rb +118 -0
- data/app/controllers/stay/admin/property_categories_controller.rb +51 -0
- data/app/controllers/stay/admin/property_types_controller.rb +51 -0
- data/app/controllers/stay/admin/registrations_controller.rb +19 -0
- data/app/controllers/stay/admin/reviews_Controller.rb +63 -0
- data/app/controllers/stay/admin/roles_controller.rb +54 -0
- data/app/controllers/stay/admin/room_amenities_controller.rb +43 -0
- data/app/controllers/stay/admin/room_types_controller.rb +58 -0
- data/app/controllers/stay/admin/rooms_controller.rb +62 -0
- data/app/controllers/stay/admin/sessions_controller.rb +29 -0
- data/app/controllers/stay/admin/states_controller.rb +68 -0
- data/app/controllers/stay/admin/stores_controller.rb +132 -0
- data/app/controllers/stay/admin/taxes_controller.rb +51 -0
- data/app/controllers/stay/admin/users_controller.rb +85 -0
- data/app/controllers/stay/api/v1/amenities_controller.rb +13 -0
- data/app/controllers/stay/api/v1/amenity_categories_controller.rb +13 -0
- data/app/controllers/stay/api/v1/bed_types_controller.rb +9 -0
- data/app/controllers/stay/api/v1/booking_queries_controller.rb +205 -0
- data/app/controllers/stay/api/v1/bookings_controller.rb +299 -0
- data/app/controllers/stay/api/v1/cancellation_policies_controller.rb +10 -0
- data/app/controllers/stay/api/v1/chats_controller.rb +116 -0
- data/app/controllers/stay/api/v1/credit_cards_controller.rb +62 -0
- data/app/controllers/stay/api/v1/features_controller.rb +21 -0
- data/app/controllers/stay/api/v1/house_rules_controller.rb +9 -0
- data/app/controllers/stay/api/v1/invoices_controller.rb +47 -0
- data/app/controllers/stay/api/v1/messages_controller.rb +144 -0
- data/app/controllers/stay/api/v1/payments_controller.rb +61 -0
- data/app/controllers/stay/api/v1/profiles_controller.rb +23 -0
- data/app/controllers/stay/api/v1/properties_controller.rb +233 -0
- data/app/controllers/stay/api/v1/property_categories_controller.rb +14 -0
- data/app/controllers/stay/api/v1/property_types_controller.rb +14 -0
- data/app/controllers/stay/api/v1/room_types_controller.rb +14 -0
- data/app/controllers/stay/api/v1/rooms_controller.rb +23 -0
- data/app/controllers/stay/api/v1/user_paypal_controller.rb +53 -0
- data/app/controllers/stay/api/v1/users_controller.rb +17 -0
- data/app/controllers/stay/application_controller.rb +44 -0
- data/app/controllers/stay/base_api_controller.rb +14 -0
- data/app/controllers/stay/bookings_controller.rb +29 -0
- data/app/controllers/stay/payments_controller.rb +50 -0
- data/app/controllers/stay/profiles_controller.rb +26 -0
- data/app/controllers/stay/properties_controller.rb +15 -0
- data/app/controllers/stay/rooms_controller.rb +22 -0
- data/app/controllers/stay/users/confirmations_controller.rb +30 -0
- data/app/controllers/stay/users/omniauth_callbacks_controller.rb +30 -0
- data/app/controllers/stay/users/passwords_controller.rb +51 -0
- data/app/controllers/stay/users/registrations_controller.rb +62 -0
- data/app/controllers/stay/users/sessions_controller.rb +27 -0
- data/app/controllers/stay/users/unlocks_controller.rb +30 -0
- data/app/helpers/stay/admin/cities_helper.rb +4 -0
- data/app/helpers/stay/admin/countries_helper.rb +4 -0
- data/app/helpers/stay/admin/states_helper.rb +4 -0
- data/app/helpers/stay/admin/stores_helper.rb +25 -0
- data/app/helpers/stay/application_helper.rb +63 -0
- data/app/helpers/stay/currency_helper.rb +34 -0
- data/app/helpers/stay/locale_helper.rb +107 -0
- data/app/jobs/stay/application_job.rb +4 -0
- data/app/mailers/stay/application_mailer.rb +6 -0
- data/app/mailers/stay/user_mailer.rb +13 -0
- data/app/models/concerns/stay/translatable_resource.rb +25 -0
- data/app/models/stay/additional_rule.rb +5 -0
- data/app/models/stay/address.rb +40 -0
- data/app/models/stay/amenity.rb +13 -0
- data/app/models/stay/amenity_category.rb +6 -0
- data/app/models/stay/application_record.rb +5 -0
- data/app/models/stay/bed_type.rb +7 -0
- data/app/models/stay/booking.rb +199 -0
- data/app/models/stay/booking_query.rb +23 -0
- data/app/models/stay/cancellation_policy.rb +6 -0
- data/app/models/stay/chat.rb +23 -0
- data/app/models/stay/city.rb +9 -0
- data/app/models/stay/country.rb +23 -0
- data/app/models/stay/credit_card.rb +6 -0
- data/app/models/stay/discount.rb +4 -0
- data/app/models/stay/expense.rb +4 -0
- data/app/models/stay/feature.rb +11 -0
- data/app/models/stay/house_rule.rb +4 -0
- data/app/models/stay/invoice.rb +23 -0
- data/app/models/stay/line_item.rb +7 -0
- data/app/models/stay/message.rb +30 -0
- data/app/models/stay/payment.rb +54 -0
- data/app/models/stay/payment_method.rb +13 -0
- data/app/models/stay/price.rb +18 -0
- data/app/models/stay/property.rb +243 -0
- data/app/models/stay/property_amenity.rb +6 -0
- data/app/models/stay/property_category.rb +6 -0
- data/app/models/stay/property_feature.rb +6 -0
- data/app/models/stay/property_house_rule.rb +6 -0
- data/app/models/stay/property_tax.rb +6 -0
- data/app/models/stay/property_type.rb +15 -0
- data/app/models/stay/review.rb +5 -0
- data/app/models/stay/role.rb +11 -0
- data/app/models/stay/role_user.rb +6 -0
- data/app/models/stay/room.rb +93 -0
- data/app/models/stay/room_amenity.rb +6 -0
- data/app/models/stay/room_feature.rb +6 -0
- data/app/models/stay/room_type.rb +7 -0
- data/app/models/stay/state.rb +13 -0
- data/app/models/stay/store.rb +139 -0
- data/app/models/stay/store_property.rb +9 -0
- data/app/models/stay/tax.rb +8 -0
- data/app/models/stay/user.rb +111 -0
- data/app/models/stay/user_paypal.rb +5 -0
- data/app/serializers/amenity_category_serializer.rb +13 -0
- data/app/serializers/amenity_serializer.rb +3 -0
- data/app/serializers/bed_type_serializer.rb +5 -0
- data/app/serializers/booking_query_serializer.rb +6 -0
- data/app/serializers/booking_serializer.rb +68 -0
- data/app/serializers/cancellation_policy_serializer.rb +3 -0
- data/app/serializers/chat_serializer.rb +63 -0
- data/app/serializers/credit_card_serializer.rb +7 -0
- data/app/serializers/house_rules_serializer.rb +3 -0
- data/app/serializers/invoice_serializer.rb +41 -0
- data/app/serializers/last_5_messages_serializer.rb +7 -0
- data/app/serializers/line_item_serializer.rb +6 -0
- data/app/serializers/message_serializer.rb +44 -0
- data/app/serializers/property_category_serializer.rb +7 -0
- data/app/serializers/property_feature_serializer.rb +5 -0
- data/app/serializers/property_listing_serializer.rb +13 -0
- data/app/serializers/property_serializer.rb +77 -0
- data/app/serializers/property_type_serializer.rb +7 -0
- data/app/serializers/room_serializer.rb +36 -0
- data/app/serializers/room_type_serializer.rb +5 -0
- data/app/serializers/user_listing_serializer.rb +23 -0
- data/app/serializers/user_serializer.rb +41 -0
- data/app/services/stay/bookings/create_booking_service.rb +49 -0
- data/app/services/stay/bookings/create_line_item_service.rb +15 -0
- data/app/services/stay/bookings/existing_booking_service.rb +50 -0
- data/app/services/stay/chat/chat_messaging_service.rb +82 -0
- data/app/services/stay/chat/query_messaging_service.rb +56 -0
- data/app/services/stay/seeds/all.rb +27 -0
- data/app/services/stay/seeds/cancellation_policy.rb +21 -0
- data/app/services/stay/seeds/countries.rb +33 -0
- data/app/services/stay/seeds/roles.rb +9 -0
- data/app/services/stay/seeds/states.rb +63 -0
- data/app/services/stay/seeds/stores.rb +34 -0
- data/app/views/devise/mailer/reset_password_instructions.html.rb +10 -0
- data/app/views/kaminari/_first_page.html.erb +3 -0
- data/app/views/kaminari/_gap.html.erb +3 -0
- data/app/views/kaminari/_last_page.html.erb +3 -0
- data/app/views/kaminari/_next_page.html.erb +3 -0
- data/app/views/kaminari/_page.html.erb +9 -0
- data/app/views/kaminari/_paginator.html.erb +17 -0
- data/app/views/kaminari/_prev_page.html.erb +3 -0
- data/app/views/layouts/stay/admin.html.erb +45 -0
- data/app/views/layouts/stay/application.html.erb +34 -0
- data/app/views/stay/admin/addresses/_form.html.erb +49 -0
- data/app/views/stay/admin/addresses/edit.html.erb +5 -0
- data/app/views/stay/admin/addresses/index.html.erb +68 -0
- data/app/views/stay/admin/addresses/new.html.erb +5 -0
- data/app/views/stay/admin/addresses/show.html.erb +40 -0
- data/app/views/stay/admin/amenities/_form.html.erb +38 -0
- data/app/views/stay/admin/amenities/edit.html.erb +14 -0
- data/app/views/stay/admin/amenities/index.html.erb +58 -0
- data/app/views/stay/admin/amenities/new.html.erb +14 -0
- data/app/views/stay/admin/amenities/show.html.erb +19 -0
- data/app/views/stay/admin/amenity_categories/_form.html.erb +29 -0
- data/app/views/stay/admin/amenity_categories/edit.html.erb +14 -0
- data/app/views/stay/admin/amenity_categories/index.html.erb +53 -0
- data/app/views/stay/admin/amenity_categories/new.html.erb +14 -0
- data/app/views/stay/admin/amenity_categories/show.html.erb +18 -0
- data/app/views/stay/admin/bed_types/_form.html.erb +29 -0
- data/app/views/stay/admin/bed_types/edit.html.erb +14 -0
- data/app/views/stay/admin/bed_types/index.html.erb +56 -0
- data/app/views/stay/admin/bed_types/new.html.erb +14 -0
- data/app/views/stay/admin/bed_types/show.html.erb +0 -0
- data/app/views/stay/admin/bookings/_booking_invoice.html.erb +37 -0
- data/app/views/stay/admin/bookings/_booking_summary.html.erb +61 -0
- data/app/views/stay/admin/bookings/_form.html.erb +59 -0
- data/app/views/stay/admin/bookings/edit.html.erb +14 -0
- data/app/views/stay/admin/bookings/index.html.erb +74 -0
- data/app/views/stay/admin/bookings/new.html.erb +14 -0
- data/app/views/stay/admin/bookings/show.html.erb +80 -0
- data/app/views/stay/admin/cancellation_policies/_form.html.erb +38 -0
- data/app/views/stay/admin/cancellation_policies/edit.html.erb +14 -0
- data/app/views/stay/admin/cancellation_policies/index.html.erb +58 -0
- data/app/views/stay/admin/cancellation_policies/new.html.erb +14 -0
- data/app/views/stay/admin/cancellation_policies/show.html.erb +0 -0
- data/app/views/stay/admin/chats/_form.html.erb +31 -0
- data/app/views/stay/admin/chats/edit.html.erb +5 -0
- data/app/views/stay/admin/chats/index.html.erb +58 -0
- data/app/views/stay/admin/chats/new.html.erb +5 -0
- data/app/views/stay/admin/chats/show.html.erb +19 -0
- data/app/views/stay/admin/cities/_form.html.erb +30 -0
- data/app/views/stay/admin/cities/edit.html.erb +14 -0
- data/app/views/stay/admin/cities/index.html.erb +62 -0
- data/app/views/stay/admin/cities/new.html.erb +14 -0
- data/app/views/stay/admin/countries/_form.html.erb +64 -0
- data/app/views/stay/admin/countries/edit.html.erb +14 -0
- data/app/views/stay/admin/countries/index.html.erb +62 -0
- data/app/views/stay/admin/countries/new.html.erb +14 -0
- data/app/views/stay/admin/countries/show.html.erb +23 -0
- data/app/views/stay/admin/dashboard/index.html.erb +1 -0
- data/app/views/stay/admin/features/_form.html.erb +38 -0
- data/app/views/stay/admin/features/edit.html.erb +14 -0
- data/app/views/stay/admin/features/index.html.erb +58 -0
- data/app/views/stay/admin/features/new.html.erb +14 -0
- data/app/views/stay/admin/features/show.html.erb +19 -0
- data/app/views/stay/admin/house_rules/_form.html.erb +29 -0
- data/app/views/stay/admin/house_rules/edit.html.erb +14 -0
- data/app/views/stay/admin/house_rules/index.html.erb +54 -0
- data/app/views/stay/admin/house_rules/new.html.erb +14 -0
- data/app/views/stay/admin/house_rules/show.html.erb +18 -0
- data/app/views/stay/admin/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/stay/admin/mailer/email_changed.html.erb +7 -0
- data/app/views/stay/admin/mailer/password_change.html.erb +3 -0
- data/app/views/stay/admin/mailer/reset_password_instructions.html.erb +7 -0
- data/app/views/stay/admin/messages/_form.html.erb +36 -0
- data/app/views/stay/admin/messages/edit.html.erb +5 -0
- data/app/views/stay/admin/messages/index.html.erb +60 -0
- data/app/views/stay/admin/messages/new.html.erb +5 -0
- data/app/views/stay/admin/messages/show.html.erb +24 -0
- data/app/views/stay/admin/passwords/edit.html.erb +37 -0
- data/app/views/stay/admin/passwords/new.html.erb +28 -0
- data/app/views/stay/admin/payment_methods/_form.html.erb +22 -0
- data/app/views/stay/admin/payment_methods/edit.html.erb +14 -0
- data/app/views/stay/admin/payment_methods/index.html.erb +54 -0
- data/app/views/stay/admin/payment_methods/new.html.erb +14 -0
- data/app/views/stay/admin/payment_methods/show.html.erb +18 -0
- data/app/views/stay/admin/payments/_form.html.erb +36 -0
- data/app/views/stay/admin/payments/edit.html.erb +5 -0
- data/app/views/stay/admin/payments/index.html.erb +60 -0
- data/app/views/stay/admin/payments/new.html.erb +5 -0
- data/app/views/stay/admin/payments/show.html.erb +24 -0
- data/app/views/stay/admin/properties/_amenities.html.erb +38 -0
- data/app/views/stay/admin/properties/_calendar.html.erb +37 -0
- data/app/views/stay/admin/properties/_description.html.erb +126 -0
- data/app/views/stay/admin/properties/_details.html.erb +75 -0
- data/app/views/stay/admin/properties/_features.html.erb +39 -0
- data/app/views/stay/admin/properties/_form.html.erb +118 -0
- data/app/views/stay/admin/properties/_images.html.erb +48 -0
- data/app/views/stay/admin/properties/_location.html.erb +55 -0
- data/app/views/stay/admin/properties/_price.html.erb +88 -0
- data/app/views/stay/admin/properties/_sidebar.html.erb +47 -0
- data/app/views/stay/admin/properties/edit.html.erb +17 -0
- data/app/views/stay/admin/properties/index.html.erb +82 -0
- data/app/views/stay/admin/properties/new.html.erb +14 -0
- data/app/views/stay/admin/properties/show.html.erb +149 -0
- data/app/views/stay/admin/property_categories/_form.html.erb +29 -0
- data/app/views/stay/admin/property_categories/edit.html.erb +14 -0
- data/app/views/stay/admin/property_categories/index.html.erb +57 -0
- data/app/views/stay/admin/property_categories/new.html.erb +14 -0
- data/app/views/stay/admin/property_categories/show.html.erb +18 -0
- data/app/views/stay/admin/property_types/_form.html.erb +29 -0
- data/app/views/stay/admin/property_types/edit.html.erb +14 -0
- data/app/views/stay/admin/property_types/index.html.erb +56 -0
- data/app/views/stay/admin/property_types/new.html.erb +14 -0
- data/app/views/stay/admin/property_types/show.html.erb +18 -0
- data/app/views/stay/admin/registrations/edit.html.erb +43 -0
- data/app/views/stay/admin/registrations/new.html.erb +35 -0
- data/app/views/stay/admin/reviews/_form.html.erb +37 -0
- data/app/views/stay/admin/reviews/edit.html.erb +14 -0
- data/app/views/stay/admin/reviews/index.html.erb +58 -0
- data/app/views/stay/admin/reviews/new.html.erb +14 -0
- data/app/views/stay/admin/reviews/show.html.erb +20 -0
- data/app/views/stay/admin/roles/_form.html.erb +24 -0
- data/app/views/stay/admin/roles/edit.html.erb +14 -0
- data/app/views/stay/admin/roles/index.html.erb +55 -0
- data/app/views/stay/admin/roles/new.html.erb +14 -0
- data/app/views/stay/admin/roles/show.html.erb +18 -0
- data/app/views/stay/admin/room_types/_form.html.erb +37 -0
- data/app/views/stay/admin/room_types/edit.html.erb +14 -0
- data/app/views/stay/admin/room_types/index.html.erb +58 -0
- data/app/views/stay/admin/room_types/new.html.erb +14 -0
- data/app/views/stay/admin/room_types/show.html.erb +19 -0
- data/app/views/stay/admin/rooms/_form.html.erb +136 -0
- data/app/views/stay/admin/rooms/edit.html.erb +14 -0
- data/app/views/stay/admin/rooms/index.html.erb +69 -0
- data/app/views/stay/admin/rooms/new.html.erb +14 -0
- data/app/views/stay/admin/rooms/show.html.erb +25 -0
- data/app/views/stay/admin/sessions/new.html.erb +36 -0
- data/app/views/stay/admin/shared/_common-table.html.erb +334 -0
- data/app/views/stay/admin/shared/_error_messages.html.erb +15 -0
- data/app/views/stay/admin/shared/_header.html.erb +55 -0
- data/app/views/stay/admin/shared/_links.html.erb +15 -0
- data/app/views/stay/admin/shared/_sidebar.html.erb +154 -0
- data/app/views/stay/admin/shared/_store_switcher.html.erb +30 -0
- data/app/views/stay/admin/states/_form.html.erb +39 -0
- data/app/views/stay/admin/states/edit.html.erb +14 -0
- data/app/views/stay/admin/states/index.html.erb +61 -0
- data/app/views/stay/admin/states/new.html.erb +14 -0
- data/app/views/stay/admin/states/show.html.erb +0 -0
- data/app/views/stay/admin/stores/_form.html.erb +30 -0
- data/app/views/stay/admin/stores/_tabs.html.erb +17 -0
- data/app/views/stay/admin/stores/edit.html.erb +14 -0
- data/app/views/stay/admin/stores/form/_basic.html.erb +35 -0
- data/app/views/stay/admin/stores/form/_emails.html.erb +34 -0
- data/app/views/stay/admin/stores/form/_footer.html.erb +28 -0
- data/app/views/stay/admin/stores/form/_internationalization.html.erb +52 -0
- data/app/views/stay/admin/stores/form/_seo.html.erb +42 -0
- data/app/views/stay/admin/stores/form/_social.html.erb +34 -0
- data/app/views/stay/admin/stores/index.html.erb +66 -0
- data/app/views/stay/admin/stores/new.html.erb +14 -0
- data/app/views/stay/admin/stores/translations.html.erb +8 -0
- data/app/views/stay/admin/taxes/_form.html.erb +29 -0
- data/app/views/stay/admin/taxes/edit.html.erb +14 -0
- data/app/views/stay/admin/taxes/index.html.erb +56 -0
- data/app/views/stay/admin/taxes/new.html.erb +14 -0
- data/app/views/stay/admin/taxes/show.html.erb +18 -0
- data/app/views/stay/admin/users/_address.html.erb +57 -0
- data/app/views/stay/admin/users/_address_form.html.erb +29 -0
- data/app/views/stay/admin/users/_form.html.erb +73 -0
- data/app/views/stay/admin/users/_sidebar.html.erb +12 -0
- data/app/views/stay/admin/users/addresses.html.erb +17 -0
- data/app/views/stay/admin/users/edit.html.erb +17 -0
- data/app/views/stay/admin/users/index.html.erb +74 -0
- data/app/views/stay/admin/users/new.html.erb +14 -0
- data/app/views/stay/admin/users/show.html.erb +23 -0
- data/app/views/stay/bookings/new.html.erb +92 -0
- data/app/views/stay/payments/_payment.js.erb +127 -0
- data/app/views/stay/payments/new.html.erb +187 -0
- data/app/views/stay/properties/index.html.erb +56 -0
- data/app/views/stay/properties/show.html.erb +137 -0
- data/app/views/stay/shared/_navbar.html.erb +35 -0
- data/app/views/stay/user_mailer/new_host_signup.html.erb +12 -0
- data/app/views/stay/user_mailer/welcome_email.html.erb +9 -0
- data/app/views/stay/users/confirmations/new.html.erb +16 -0
- data/app/views/stay/users/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/stay/users/mailer/email_changed.html.erb +7 -0
- data/app/views/stay/users/mailer/password_change.html.erb +3 -0
- data/app/views/stay/users/mailer/reset_password_instructions.html.erb +7 -0
- data/app/views/stay/users/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/stay/users/passwords/edit.html.erb +37 -0
- data/app/views/stay/users/passwords/new.html.erb +28 -0
- data/app/views/stay/users/registrations/edit.html.erb +43 -0
- data/app/views/stay/users/registrations/new.html.erb +42 -0
- data/app/views/stay/users/sessions/new.html.erb +43 -0
- data/app/views/stay/users/shared/_error_messages.html.erb +15 -0
- data/app/views/stay/users/shared/_links.html.erb +25 -0
- data/app/views/stay/users/unlocks/new.html.erb +16 -0
- data/config/initializers/devise.rb +358 -0
- data/config/initializers/friendly_id.rb +107 -0
- data/config/initializers/geocoder.rb +4 -0
- data/config/initializers/kaminari_config.rb +14 -0
- data/config/initializers/mobility.rb +17 -0
- data/config/initializers/stripe.rb +8 -0
- data/config/locales/devise.en.yml +65 -0
- data/config/locales/devise_api.en.yml +23 -0
- data/config/locales/en.yml +38 -0
- data/config/routes.rb +187 -0
- data/db/migrate/20240912073149_devise_create_stay_users.rb +50 -0
- data/db/migrate/20240912073248_create_devise_api_tables.rb +29 -0
- data/db/migrate/20240912092842_create_stay_roles.rb +9 -0
- data/db/migrate/20240912093003_create_stay_role_users.rb +10 -0
- data/db/migrate/20240912093151_create_stay_properties.rb +16 -0
- data/db/migrate/20240912093213_create_stay_rooms.rb +12 -0
- data/db/migrate/20240912093240_create_stay_bookings.rb +15 -0
- data/db/migrate/20240912093346_create_stay_payment_methods.rb +9 -0
- data/db/migrate/20240912093408_create_stay_payments.rb +12 -0
- data/db/migrate/20240912093603_create_stay_reviews.rb +11 -0
- data/db/migrate/20240912093644_create_stay_chats.rb +11 -0
- data/db/migrate/20240912093717_create_stay_messages.rb +12 -0
- data/db/migrate/20240912093759_create_stay_countries.rb +14 -0
- data/db/migrate/20240912093824_create_stay_states.rb +11 -0
- data/db/migrate/20240912093903_create_stay_cities.rb +10 -0
- data/db/migrate/20240912094149_create_stay_addresses.rb +19 -0
- data/db/migrate/20240916071141_create_active_storage_tables.rb +57 -0
- data/db/migrate/20240918080551_add_columns_to_stay_bookings.rb +12 -0
- data/db/migrate/20240918101502_add_columns_to_stay_payments.rb +16 -0
- data/db/migrate/20240918110958_create_stay_prices.rb +13 -0
- data/db/migrate/20240918112045_add_columns_to_stay_rooms.rb +5 -0
- data/db/migrate/20240918114609_add_payment_intent_in_bookings.rb +6 -0
- data/db/migrate/20240919045205_add_user_to_stay_addresses.rb +5 -0
- data/db/migrate/20240919063400_create_stay_room_types.rb +10 -0
- data/db/migrate/20240919070423_rename_room_type_to_room_type_id_in_stay_rooms.rb +5 -0
- data/db/migrate/20240919071642_rename_status_to_state_in_stay_payments.rb +5 -0
- data/db/migrate/20240919100508_remove_room_id_from_stay_properties.rb +5 -0
- data/db/migrate/20240919111801_create_stay_line_items.rb +16 -0
- data/db/migrate/20240919124704_remove_room_id_from_stay_bookings.rb +5 -0
- data/db/migrate/20240924053658_add_is_master_in_stay_rooms.rb +5 -0
- data/db/migrate/20240925063733_add_zipcode_required_in_countries.rb +5 -0
- data/db/migrate/20240926055951_remove_city_reference_from_stay_addresses.rb +5 -0
- data/db/migrate/20240927055935_change_price_per_night_to_decimal_in_stay_rooms.rb +5 -0
- data/db/migrate/20240927063023_add_first_name_to_stay_addresses.rb +8 -0
- data/db/migrate/20240927070538_change_description_to_text_in_stay_properties.rb +6 -0
- data/db/migrate/20240927111110_create_stay_stores.rb +33 -0
- data/db/migrate/20240930095921_create_stay_cancellation_policies.rb +9 -0
- data/db/migrate/20240930100157_add_cancellation_id_to_stay_properties.rb +5 -0
- data/db/migrate/20240930152331_create_stay_store_translations.rb +22 -0
- data/db/migrate/20240930162337_create_stay_store_properties.rb +10 -0
- data/db/migrate/20241001101816_create_stay_property_categories.rb +8 -0
- data/db/migrate/20241001102646_add_property_category_id_to_property.rb +5 -0
- data/db/migrate/20241001103758_create_stay_property_types.rb +9 -0
- data/db/migrate/20241001111306_add_store_id_to_stay_bookings.rb +5 -0
- data/db/migrate/20241001160330_add_deleted_at_to_stay_store_translations.rb +5 -0
- data/db/migrate/20241004061647_add_field_to_stay_properties.rb +20 -0
- data/db/migrate/20241004062057_create_stay_bed_types.rb +9 -0
- data/db/migrate/20241004062251_add_details_to_stay_rooms.rb +9 -0
- data/db/migrate/20241004070456_add_property_type_id_to_stay_property_categories.rb +6 -0
- data/db/migrate/20241004105821_create_stay_amenity_categories.rb +8 -0
- data/db/migrate/20241004112600_create_stay_amenities.rb +9 -0
- data/db/migrate/20241004115207_create_stay_house_rules.rb +8 -0
- data/db/migrate/20241004115317_create_stay_additional_rules.rb +9 -0
- data/db/migrate/20241004115608_create_stay_property_amenities.rb +9 -0
- data/db/migrate/20241004115615_create_stay_room_amenities.rb +9 -0
- data/db/migrate/20241007051646_add_preferences_to_stay_users.rb +5 -0
- data/db/migrate/20241007165530_create_stay_creates.rb +10 -0
- data/db/migrate/20241008111346_add_deleted_at_to_stay_users.rb +7 -0
- data/db/migrate/20241008151958_add_price_per_night_in_stay_properties.rb +5 -0
- data/db/migrate/20241010071855_add_zipcode_to_stay_property.rb +8 -0
- data/db/migrate/20241014085441_add_amenity_type_in_amenities.rb +5 -0
- data/db/migrate/20241015055940_create_stay_features.rb +10 -0
- data/db/migrate/20241015060804_create_stay_property_features.rb +9 -0
- data/db/migrate/20241015060854_create_stay_room_features.rb +9 -0
- data/db/migrate/20241016055948_create_stay_tax.rb +9 -0
- data/db/migrate/20241016060354_create_stay_property_tax.rb +11 -0
- data/db/migrate/20241016091120_remove_column_from_stay_properties_categories.rb +6 -0
- data/db/migrate/20241016091829_add_column_to_stay_property.rb +5 -0
- data/db/migrate/20241016112707_add_country_to_stay_properties.rb +6 -0
- data/db/migrate/20241016153847_add_state_to_properties.rb +7 -0
- data/db/migrate/20241016170528_up_date_price_column_in_stay_property.rb +5 -0
- data/db/migrate/20241017031520_add_new_field_to_stay_properties.rb +8 -0
- data/db/migrate/20241017051450_add_column_to_stay_chat.rb +7 -0
- data/db/migrate/20241018090158_create_stay_stay_credit_cards.rb +16 -0
- data/db/migrate/20241021090444_create_stay_stay_user_paypals.rb +9 -0
- data/db/migrate/20241024065949_add_stay_property_to_stay_b0okings.rb +5 -0
- data/db/migrate/20241027062126_add_events_to_stay_messages.rb +8 -0
- data/db/migrate/20241028105007_create_stay_invoices.rb +15 -0
- data/db/migrate/20241028105323_create_stay_expenses.rb +10 -0
- data/db/migrate/20241028105331_create_stay_discounts.rb +10 -0
- data/db/migrate/20241101044618_create_stay_booking_queries.rb +17 -0
- data/db/migrate/20241101093057_add_read_at_to_stay_messages.rb +5 -0
- data/db/migrate/20241113061248_modify_cancellation_policy_on_properties.rb +7 -0
- data/db/migrate/20241118064033_rename_columns_in_stay_properties.rb +7 -0
- data/db/migrate/20241127060541_add_new_fields_to_property.rb +11 -0
- data/db/migrate/20241128111832_add_name_to_stay_rooms.rb +5 -0
- data/db/migrate/20241129063922_change_amenity_category_null_on_stay_amenities.rb +5 -0
- data/db/migrate/20241205092935_add_slug_to_stay_properties.rb +6 -0
- data/db/migrate/20241205092943_create_friendly_id_slugs.rb +21 -0
- data/db/migrate/20241217044817_add_deleted_atto_stay_property.rb +6 -0
- data/db/migrate/20241230064432_modify_property_category_on_properties.rb +7 -0
- data/db/seeds.rb +1 -0
- data/lib/stay/controller_helpers/currency.rb +54 -0
- data/lib/stay/controller_helpers/store.rb +37 -0
- data/lib/stay/engine.rb +16 -0
- data/lib/stay/money.rb +77 -0
- data/lib/stay/version.rb +3 -0
- data/lib/stay.rb +16 -0
- data/lib/tasks/stay_tasks.rake +4 -0
- metadata +967 -0
metadata
ADDED
@@ -0,0 +1,967 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: stay_commerce
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- w3villa-vikaspal
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-02-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 7.2.1
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '9.0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 7.2.1
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '9.0'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: devise
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '4.9'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '4.9'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: devise-api
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0.1'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0.1'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: mysql2
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0.5'
|
68
|
+
type: :runtime
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0.5'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: sassc-rails
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '2.1'
|
82
|
+
type: :runtime
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '2.1'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: bootstrap
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '5.3'
|
96
|
+
type: :runtime
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '5.3'
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: ransack
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
type: :runtime
|
111
|
+
prerelease: false
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
- !ruby/object:Gem::Dependency
|
118
|
+
name: activestorage
|
119
|
+
requirement: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - ">="
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: '0'
|
124
|
+
type: :runtime
|
125
|
+
prerelease: false
|
126
|
+
version_requirements: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - ">="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0'
|
131
|
+
- !ruby/object:Gem::Dependency
|
132
|
+
name: pry
|
133
|
+
requirement: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - ">="
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '0'
|
138
|
+
type: :development
|
139
|
+
prerelease: false
|
140
|
+
version_requirements: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - ">="
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '0'
|
145
|
+
- !ruby/object:Gem::Dependency
|
146
|
+
name: state_machines-activerecord
|
147
|
+
requirement: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - "~>"
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0.9'
|
152
|
+
type: :runtime
|
153
|
+
prerelease: false
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
155
|
+
requirements:
|
156
|
+
- - "~>"
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '0.9'
|
159
|
+
- !ruby/object:Gem::Dependency
|
160
|
+
name: kaminari
|
161
|
+
requirement: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - "~>"
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '1.2'
|
166
|
+
type: :runtime
|
167
|
+
prerelease: false
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
169
|
+
requirements:
|
170
|
+
- - "~>"
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: '1.2'
|
173
|
+
- !ruby/object:Gem::Dependency
|
174
|
+
name: stripe
|
175
|
+
requirement: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - "~>"
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: 5.32.0
|
180
|
+
type: :runtime
|
181
|
+
prerelease: false
|
182
|
+
version_requirements: !ruby/object:Gem::Requirement
|
183
|
+
requirements:
|
184
|
+
- - "~>"
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
version: 5.32.0
|
187
|
+
- !ruby/object:Gem::Dependency
|
188
|
+
name: geocoder
|
189
|
+
requirement: !ruby/object:Gem::Requirement
|
190
|
+
requirements:
|
191
|
+
- - "~>"
|
192
|
+
- !ruby/object:Gem::Version
|
193
|
+
version: '1.8'
|
194
|
+
type: :runtime
|
195
|
+
prerelease: false
|
196
|
+
version_requirements: !ruby/object:Gem::Requirement
|
197
|
+
requirements:
|
198
|
+
- - "~>"
|
199
|
+
- !ruby/object:Gem::Version
|
200
|
+
version: '1.8'
|
201
|
+
- !ruby/object:Gem::Dependency
|
202
|
+
name: carmen
|
203
|
+
requirement: !ruby/object:Gem::Requirement
|
204
|
+
requirements:
|
205
|
+
- - "~>"
|
206
|
+
- !ruby/object:Gem::Version
|
207
|
+
version: '1.1'
|
208
|
+
type: :runtime
|
209
|
+
prerelease: false
|
210
|
+
version_requirements: !ruby/object:Gem::Requirement
|
211
|
+
requirements:
|
212
|
+
- - "~>"
|
213
|
+
- !ruby/object:Gem::Version
|
214
|
+
version: '1.1'
|
215
|
+
- !ruby/object:Gem::Dependency
|
216
|
+
name: active_model_serializers
|
217
|
+
requirement: !ruby/object:Gem::Requirement
|
218
|
+
requirements:
|
219
|
+
- - ">="
|
220
|
+
- !ruby/object:Gem::Version
|
221
|
+
version: '0'
|
222
|
+
type: :runtime
|
223
|
+
prerelease: false
|
224
|
+
version_requirements: !ruby/object:Gem::Requirement
|
225
|
+
requirements:
|
226
|
+
- - ">="
|
227
|
+
- !ruby/object:Gem::Version
|
228
|
+
version: '0'
|
229
|
+
- !ruby/object:Gem::Dependency
|
230
|
+
name: rack-cors
|
231
|
+
requirement: !ruby/object:Gem::Requirement
|
232
|
+
requirements:
|
233
|
+
- - "~>"
|
234
|
+
- !ruby/object:Gem::Version
|
235
|
+
version: '2.0'
|
236
|
+
type: :runtime
|
237
|
+
prerelease: false
|
238
|
+
version_requirements: !ruby/object:Gem::Requirement
|
239
|
+
requirements:
|
240
|
+
- - "~>"
|
241
|
+
- !ruby/object:Gem::Version
|
242
|
+
version: '2.0'
|
243
|
+
- !ruby/object:Gem::Dependency
|
244
|
+
name: paranoia
|
245
|
+
requirement: !ruby/object:Gem::Requirement
|
246
|
+
requirements:
|
247
|
+
- - "~>"
|
248
|
+
- !ruby/object:Gem::Version
|
249
|
+
version: '3.0'
|
250
|
+
type: :runtime
|
251
|
+
prerelease: false
|
252
|
+
version_requirements: !ruby/object:Gem::Requirement
|
253
|
+
requirements:
|
254
|
+
- - "~>"
|
255
|
+
- !ruby/object:Gem::Version
|
256
|
+
version: '3.0'
|
257
|
+
- !ruby/object:Gem::Dependency
|
258
|
+
name: money
|
259
|
+
requirement: !ruby/object:Gem::Requirement
|
260
|
+
requirements:
|
261
|
+
- - "~>"
|
262
|
+
- !ruby/object:Gem::Version
|
263
|
+
version: '6.12'
|
264
|
+
type: :runtime
|
265
|
+
prerelease: false
|
266
|
+
version_requirements: !ruby/object:Gem::Requirement
|
267
|
+
requirements:
|
268
|
+
- - "~>"
|
269
|
+
- !ruby/object:Gem::Version
|
270
|
+
version: '6.12'
|
271
|
+
- !ruby/object:Gem::Dependency
|
272
|
+
name: monetize
|
273
|
+
requirement: !ruby/object:Gem::Requirement
|
274
|
+
requirements:
|
275
|
+
- - "~>"
|
276
|
+
- !ruby/object:Gem::Version
|
277
|
+
version: '1.13'
|
278
|
+
type: :runtime
|
279
|
+
prerelease: false
|
280
|
+
version_requirements: !ruby/object:Gem::Requirement
|
281
|
+
requirements:
|
282
|
+
- - "~>"
|
283
|
+
- !ruby/object:Gem::Version
|
284
|
+
version: '1.13'
|
285
|
+
- !ruby/object:Gem::Dependency
|
286
|
+
name: mobility
|
287
|
+
requirement: !ruby/object:Gem::Requirement
|
288
|
+
requirements:
|
289
|
+
- - "~>"
|
290
|
+
- !ruby/object:Gem::Version
|
291
|
+
version: '1.2'
|
292
|
+
type: :runtime
|
293
|
+
prerelease: false
|
294
|
+
version_requirements: !ruby/object:Gem::Requirement
|
295
|
+
requirements:
|
296
|
+
- - "~>"
|
297
|
+
- !ruby/object:Gem::Version
|
298
|
+
version: '1.2'
|
299
|
+
- !ruby/object:Gem::Dependency
|
300
|
+
name: mobility-ransack
|
301
|
+
requirement: !ruby/object:Gem::Requirement
|
302
|
+
requirements:
|
303
|
+
- - "~>"
|
304
|
+
- !ruby/object:Gem::Version
|
305
|
+
version: '1.2'
|
306
|
+
type: :runtime
|
307
|
+
prerelease: false
|
308
|
+
version_requirements: !ruby/object:Gem::Requirement
|
309
|
+
requirements:
|
310
|
+
- - "~>"
|
311
|
+
- !ruby/object:Gem::Version
|
312
|
+
version: '1.2'
|
313
|
+
- !ruby/object:Gem::Dependency
|
314
|
+
name: inline_svg
|
315
|
+
requirement: !ruby/object:Gem::Requirement
|
316
|
+
requirements:
|
317
|
+
- - "~>"
|
318
|
+
- !ruby/object:Gem::Version
|
319
|
+
version: '1.10'
|
320
|
+
type: :runtime
|
321
|
+
prerelease: false
|
322
|
+
version_requirements: !ruby/object:Gem::Requirement
|
323
|
+
requirements:
|
324
|
+
- - "~>"
|
325
|
+
- !ruby/object:Gem::Version
|
326
|
+
version: '1.10'
|
327
|
+
- !ruby/object:Gem::Dependency
|
328
|
+
name: hotwire-rails
|
329
|
+
requirement: !ruby/object:Gem::Requirement
|
330
|
+
requirements:
|
331
|
+
- - "~>"
|
332
|
+
- !ruby/object:Gem::Version
|
333
|
+
version: '0.1'
|
334
|
+
type: :runtime
|
335
|
+
prerelease: false
|
336
|
+
version_requirements: !ruby/object:Gem::Requirement
|
337
|
+
requirements:
|
338
|
+
- - "~>"
|
339
|
+
- !ruby/object:Gem::Version
|
340
|
+
version: '0.1'
|
341
|
+
- !ruby/object:Gem::Dependency
|
342
|
+
name: jquery-rails
|
343
|
+
requirement: !ruby/object:Gem::Requirement
|
344
|
+
requirements:
|
345
|
+
- - "~>"
|
346
|
+
- !ruby/object:Gem::Version
|
347
|
+
version: '4.6'
|
348
|
+
type: :runtime
|
349
|
+
prerelease: false
|
350
|
+
version_requirements: !ruby/object:Gem::Requirement
|
351
|
+
requirements:
|
352
|
+
- - "~>"
|
353
|
+
- !ruby/object:Gem::Version
|
354
|
+
version: '4.6'
|
355
|
+
- !ruby/object:Gem::Dependency
|
356
|
+
name: jquery-ui-rails
|
357
|
+
requirement: !ruby/object:Gem::Requirement
|
358
|
+
requirements:
|
359
|
+
- - "~>"
|
360
|
+
- !ruby/object:Gem::Version
|
361
|
+
version: '7.0'
|
362
|
+
type: :runtime
|
363
|
+
prerelease: false
|
364
|
+
version_requirements: !ruby/object:Gem::Requirement
|
365
|
+
requirements:
|
366
|
+
- - "~>"
|
367
|
+
- !ruby/object:Gem::Version
|
368
|
+
version: '7.0'
|
369
|
+
- !ruby/object:Gem::Dependency
|
370
|
+
name: jsbundling-rails
|
371
|
+
requirement: !ruby/object:Gem::Requirement
|
372
|
+
requirements:
|
373
|
+
- - "~>"
|
374
|
+
- !ruby/object:Gem::Version
|
375
|
+
version: 1.3.1
|
376
|
+
type: :runtime
|
377
|
+
prerelease: false
|
378
|
+
version_requirements: !ruby/object:Gem::Requirement
|
379
|
+
requirements:
|
380
|
+
- - "~>"
|
381
|
+
- !ruby/object:Gem::Version
|
382
|
+
version: 1.3.1
|
383
|
+
- !ruby/object:Gem::Dependency
|
384
|
+
name: sass-rails
|
385
|
+
requirement: !ruby/object:Gem::Requirement
|
386
|
+
requirements:
|
387
|
+
- - "~>"
|
388
|
+
- !ruby/object:Gem::Version
|
389
|
+
version: '6.0'
|
390
|
+
type: :runtime
|
391
|
+
prerelease: false
|
392
|
+
version_requirements: !ruby/object:Gem::Requirement
|
393
|
+
requirements:
|
394
|
+
- - "~>"
|
395
|
+
- !ruby/object:Gem::Version
|
396
|
+
version: '6.0'
|
397
|
+
- !ruby/object:Gem::Dependency
|
398
|
+
name: sprockets
|
399
|
+
requirement: !ruby/object:Gem::Requirement
|
400
|
+
requirements:
|
401
|
+
- - ">="
|
402
|
+
- !ruby/object:Gem::Version
|
403
|
+
version: '0'
|
404
|
+
type: :runtime
|
405
|
+
prerelease: false
|
406
|
+
version_requirements: !ruby/object:Gem::Requirement
|
407
|
+
requirements:
|
408
|
+
- - ">="
|
409
|
+
- !ruby/object:Gem::Version
|
410
|
+
version: '0'
|
411
|
+
- !ruby/object:Gem::Dependency
|
412
|
+
name: friendly_id
|
413
|
+
requirement: !ruby/object:Gem::Requirement
|
414
|
+
requirements:
|
415
|
+
- - "~>"
|
416
|
+
- !ruby/object:Gem::Version
|
417
|
+
version: '5.5'
|
418
|
+
type: :runtime
|
419
|
+
prerelease: false
|
420
|
+
version_requirements: !ruby/object:Gem::Requirement
|
421
|
+
requirements:
|
422
|
+
- - "~>"
|
423
|
+
- !ruby/object:Gem::Version
|
424
|
+
version: '5.5'
|
425
|
+
- !ruby/object:Gem::Dependency
|
426
|
+
name: letter_opener
|
427
|
+
requirement: !ruby/object:Gem::Requirement
|
428
|
+
requirements:
|
429
|
+
- - "~>"
|
430
|
+
- !ruby/object:Gem::Version
|
431
|
+
version: '1.10'
|
432
|
+
type: :development
|
433
|
+
prerelease: false
|
434
|
+
version_requirements: !ruby/object:Gem::Requirement
|
435
|
+
requirements:
|
436
|
+
- - "~>"
|
437
|
+
- !ruby/object:Gem::Version
|
438
|
+
version: '1.10'
|
439
|
+
description: Description of Stay.
|
440
|
+
email:
|
441
|
+
- vikas.pal@w3villa.com
|
442
|
+
executables: []
|
443
|
+
extensions: []
|
444
|
+
extra_rdoc_files: []
|
445
|
+
files:
|
446
|
+
- MIT-LICENSE
|
447
|
+
- README.md
|
448
|
+
- Rakefile
|
449
|
+
- app/assets/config/stay_manifest.js
|
450
|
+
- app/assets/fonts/bootstrap-icons.woff
|
451
|
+
- app/assets/fonts/bootstrap-icons.woff2
|
452
|
+
- app/assets/images/chevron-down.svg
|
453
|
+
- app/assets/images/circle-fill.svg
|
454
|
+
- app/assets/images/circle.svg
|
455
|
+
- app/assets/images/plus-circle.svg
|
456
|
+
- app/assets/images/save.svg
|
457
|
+
- app/assets/images/store.svg
|
458
|
+
- app/assets/javascripts/stay/admin/address.js
|
459
|
+
- app/assets/javascripts/stay/admin/ckeditor.min.js
|
460
|
+
- app/assets/javascripts/stay/admin/flatpickr.min.js
|
461
|
+
- app/assets/javascripts/stay/admin/index.js
|
462
|
+
- app/assets/javascripts/stay/admin/property.js
|
463
|
+
- app/assets/javascripts/stay/admin/select2.min.js
|
464
|
+
- app/assets/javascripts/stay/application.js
|
465
|
+
- app/assets/javascripts/stay/bootstrap.bundle.min.js
|
466
|
+
- app/assets/javascripts/stay/ckeditor.js
|
467
|
+
- app/assets/javascripts/stay/custom.js
|
468
|
+
- app/assets/javascripts/stay/jquery-ui.min.js
|
469
|
+
- app/assets/javascripts/stay/jquery.min.js
|
470
|
+
- app/assets/stylesheets/stay/admin/flatpickr.min.css
|
471
|
+
- app/assets/stylesheets/stay/admin/index.css
|
472
|
+
- app/assets/stylesheets/stay/admin/select2.min.css
|
473
|
+
- app/assets/stylesheets/stay/application.css
|
474
|
+
- app/assets/stylesheets/stay/badges.css
|
475
|
+
- app/assets/stylesheets/stay/bootstrap-icons.min.css
|
476
|
+
- app/assets/stylesheets/stay/bootstrap-icons_fix.css
|
477
|
+
- app/assets/stylesheets/stay/common.css
|
478
|
+
- app/assets/stylesheets/stay/jquery-ui.css
|
479
|
+
- app/assets/stylesheets/stay/webpixels.css
|
480
|
+
- app/channels/chat_channel.rb
|
481
|
+
- app/controllers/concerns/stay/booking_validations.rb
|
482
|
+
- app/controllers/concerns/stay/stripe_concern.rb
|
483
|
+
- app/controllers/stay/admin/addresses_controller.rb
|
484
|
+
- app/controllers/stay/admin/amenities_controller.rb
|
485
|
+
- app/controllers/stay/admin/amenity_categories_controller.rb
|
486
|
+
- app/controllers/stay/admin/base_controller.rb
|
487
|
+
- app/controllers/stay/admin/bed_types_controller.rb
|
488
|
+
- app/controllers/stay/admin/bookings_controller.rb
|
489
|
+
- app/controllers/stay/admin/cancellation_policies_controller.rb
|
490
|
+
- app/controllers/stay/admin/chats_controller.rb
|
491
|
+
- app/controllers/stay/admin/cities_controller.rb
|
492
|
+
- app/controllers/stay/admin/confirmations_controller.rb
|
493
|
+
- app/controllers/stay/admin/countries_controller.rb
|
494
|
+
- app/controllers/stay/admin/dashboard_controller.rb
|
495
|
+
- app/controllers/stay/admin/features_controller.rb
|
496
|
+
- app/controllers/stay/admin/home_controller.rb
|
497
|
+
- app/controllers/stay/admin/house_rules_controller.rb
|
498
|
+
- app/controllers/stay/admin/messages_controller.rb
|
499
|
+
- app/controllers/stay/admin/passwords_controller.rb
|
500
|
+
- app/controllers/stay/admin/payment_methods_controller.rb
|
501
|
+
- app/controllers/stay/admin/payments_controller.rb
|
502
|
+
- app/controllers/stay/admin/properties_controller.rb
|
503
|
+
- app/controllers/stay/admin/property_categories_controller.rb
|
504
|
+
- app/controllers/stay/admin/property_types_controller.rb
|
505
|
+
- app/controllers/stay/admin/registrations_controller.rb
|
506
|
+
- app/controllers/stay/admin/reviews_Controller.rb
|
507
|
+
- app/controllers/stay/admin/roles_controller.rb
|
508
|
+
- app/controllers/stay/admin/room_amenities_controller.rb
|
509
|
+
- app/controllers/stay/admin/room_types_controller.rb
|
510
|
+
- app/controllers/stay/admin/rooms_controller.rb
|
511
|
+
- app/controllers/stay/admin/sessions_controller.rb
|
512
|
+
- app/controllers/stay/admin/states_controller.rb
|
513
|
+
- app/controllers/stay/admin/stores_controller.rb
|
514
|
+
- app/controllers/stay/admin/taxes_controller.rb
|
515
|
+
- app/controllers/stay/admin/users_controller.rb
|
516
|
+
- app/controllers/stay/api/v1/amenities_controller.rb
|
517
|
+
- app/controllers/stay/api/v1/amenity_categories_controller.rb
|
518
|
+
- app/controllers/stay/api/v1/bed_types_controller.rb
|
519
|
+
- app/controllers/stay/api/v1/booking_queries_controller.rb
|
520
|
+
- app/controllers/stay/api/v1/bookings_controller.rb
|
521
|
+
- app/controllers/stay/api/v1/cancellation_policies_controller.rb
|
522
|
+
- app/controllers/stay/api/v1/chats_controller.rb
|
523
|
+
- app/controllers/stay/api/v1/credit_cards_controller.rb
|
524
|
+
- app/controllers/stay/api/v1/features_controller.rb
|
525
|
+
- app/controllers/stay/api/v1/house_rules_controller.rb
|
526
|
+
- app/controllers/stay/api/v1/invoices_controller.rb
|
527
|
+
- app/controllers/stay/api/v1/messages_controller.rb
|
528
|
+
- app/controllers/stay/api/v1/payments_controller.rb
|
529
|
+
- app/controllers/stay/api/v1/profiles_controller.rb
|
530
|
+
- app/controllers/stay/api/v1/properties_controller.rb
|
531
|
+
- app/controllers/stay/api/v1/property_categories_controller.rb
|
532
|
+
- app/controllers/stay/api/v1/property_types_controller.rb
|
533
|
+
- app/controllers/stay/api/v1/room_types_controller.rb
|
534
|
+
- app/controllers/stay/api/v1/rooms_controller.rb
|
535
|
+
- app/controllers/stay/api/v1/user_paypal_controller.rb
|
536
|
+
- app/controllers/stay/api/v1/users_controller.rb
|
537
|
+
- app/controllers/stay/application_controller.rb
|
538
|
+
- app/controllers/stay/base_api_controller.rb
|
539
|
+
- app/controllers/stay/bookings_controller.rb
|
540
|
+
- app/controllers/stay/payments_controller.rb
|
541
|
+
- app/controllers/stay/profiles_controller.rb
|
542
|
+
- app/controllers/stay/properties_controller.rb
|
543
|
+
- app/controllers/stay/rooms_controller.rb
|
544
|
+
- app/controllers/stay/users/confirmations_controller.rb
|
545
|
+
- app/controllers/stay/users/omniauth_callbacks_controller.rb
|
546
|
+
- app/controllers/stay/users/passwords_controller.rb
|
547
|
+
- app/controllers/stay/users/registrations_controller.rb
|
548
|
+
- app/controllers/stay/users/sessions_controller.rb
|
549
|
+
- app/controllers/stay/users/unlocks_controller.rb
|
550
|
+
- app/helpers/stay/admin/cities_helper.rb
|
551
|
+
- app/helpers/stay/admin/countries_helper.rb
|
552
|
+
- app/helpers/stay/admin/states_helper.rb
|
553
|
+
- app/helpers/stay/admin/stores_helper.rb
|
554
|
+
- app/helpers/stay/application_helper.rb
|
555
|
+
- app/helpers/stay/currency_helper.rb
|
556
|
+
- app/helpers/stay/locale_helper.rb
|
557
|
+
- app/jobs/stay/application_job.rb
|
558
|
+
- app/mailers/stay/application_mailer.rb
|
559
|
+
- app/mailers/stay/user_mailer.rb
|
560
|
+
- app/models/concerns/stay/translatable_resource.rb
|
561
|
+
- app/models/stay/additional_rule.rb
|
562
|
+
- app/models/stay/address.rb
|
563
|
+
- app/models/stay/amenity.rb
|
564
|
+
- app/models/stay/amenity_category.rb
|
565
|
+
- app/models/stay/application_record.rb
|
566
|
+
- app/models/stay/bed_type.rb
|
567
|
+
- app/models/stay/booking.rb
|
568
|
+
- app/models/stay/booking_query.rb
|
569
|
+
- app/models/stay/cancellation_policy.rb
|
570
|
+
- app/models/stay/chat.rb
|
571
|
+
- app/models/stay/city.rb
|
572
|
+
- app/models/stay/country.rb
|
573
|
+
- app/models/stay/credit_card.rb
|
574
|
+
- app/models/stay/discount.rb
|
575
|
+
- app/models/stay/expense.rb
|
576
|
+
- app/models/stay/feature.rb
|
577
|
+
- app/models/stay/house_rule.rb
|
578
|
+
- app/models/stay/invoice.rb
|
579
|
+
- app/models/stay/line_item.rb
|
580
|
+
- app/models/stay/message.rb
|
581
|
+
- app/models/stay/payment.rb
|
582
|
+
- app/models/stay/payment_method.rb
|
583
|
+
- app/models/stay/price.rb
|
584
|
+
- app/models/stay/property.rb
|
585
|
+
- app/models/stay/property_amenity.rb
|
586
|
+
- app/models/stay/property_category.rb
|
587
|
+
- app/models/stay/property_feature.rb
|
588
|
+
- app/models/stay/property_house_rule.rb
|
589
|
+
- app/models/stay/property_tax.rb
|
590
|
+
- app/models/stay/property_type.rb
|
591
|
+
- app/models/stay/review.rb
|
592
|
+
- app/models/stay/role.rb
|
593
|
+
- app/models/stay/role_user.rb
|
594
|
+
- app/models/stay/room.rb
|
595
|
+
- app/models/stay/room_amenity.rb
|
596
|
+
- app/models/stay/room_feature.rb
|
597
|
+
- app/models/stay/room_type.rb
|
598
|
+
- app/models/stay/state.rb
|
599
|
+
- app/models/stay/store.rb
|
600
|
+
- app/models/stay/store_property.rb
|
601
|
+
- app/models/stay/tax.rb
|
602
|
+
- app/models/stay/user.rb
|
603
|
+
- app/models/stay/user_paypal.rb
|
604
|
+
- app/serializers/amenity_category_serializer.rb
|
605
|
+
- app/serializers/amenity_serializer.rb
|
606
|
+
- app/serializers/bed_type_serializer.rb
|
607
|
+
- app/serializers/booking_query_serializer.rb
|
608
|
+
- app/serializers/booking_serializer.rb
|
609
|
+
- app/serializers/cancellation_policy_serializer.rb
|
610
|
+
- app/serializers/chat_serializer.rb
|
611
|
+
- app/serializers/credit_card_serializer.rb
|
612
|
+
- app/serializers/house_rules_serializer.rb
|
613
|
+
- app/serializers/invoice_serializer.rb
|
614
|
+
- app/serializers/last_5_messages_serializer.rb
|
615
|
+
- app/serializers/line_item_serializer.rb
|
616
|
+
- app/serializers/message_serializer.rb
|
617
|
+
- app/serializers/property_category_serializer.rb
|
618
|
+
- app/serializers/property_feature_serializer.rb
|
619
|
+
- app/serializers/property_listing_serializer.rb
|
620
|
+
- app/serializers/property_serializer.rb
|
621
|
+
- app/serializers/property_type_serializer.rb
|
622
|
+
- app/serializers/room_serializer.rb
|
623
|
+
- app/serializers/room_type_serializer.rb
|
624
|
+
- app/serializers/user_listing_serializer.rb
|
625
|
+
- app/serializers/user_serializer.rb
|
626
|
+
- app/services/stay/bookings/create_booking_service.rb
|
627
|
+
- app/services/stay/bookings/create_line_item_service.rb
|
628
|
+
- app/services/stay/bookings/existing_booking_service.rb
|
629
|
+
- app/services/stay/chat/chat_messaging_service.rb
|
630
|
+
- app/services/stay/chat/query_messaging_service.rb
|
631
|
+
- app/services/stay/seeds/all.rb
|
632
|
+
- app/services/stay/seeds/cancellation_policy.rb
|
633
|
+
- app/services/stay/seeds/countries.rb
|
634
|
+
- app/services/stay/seeds/roles.rb
|
635
|
+
- app/services/stay/seeds/states.rb
|
636
|
+
- app/services/stay/seeds/stores.rb
|
637
|
+
- app/views/devise/mailer/reset_password_instructions.html.rb
|
638
|
+
- app/views/kaminari/_first_page.html.erb
|
639
|
+
- app/views/kaminari/_gap.html.erb
|
640
|
+
- app/views/kaminari/_last_page.html.erb
|
641
|
+
- app/views/kaminari/_next_page.html.erb
|
642
|
+
- app/views/kaminari/_page.html.erb
|
643
|
+
- app/views/kaminari/_paginator.html.erb
|
644
|
+
- app/views/kaminari/_prev_page.html.erb
|
645
|
+
- app/views/layouts/stay/admin.html.erb
|
646
|
+
- app/views/layouts/stay/application.html.erb
|
647
|
+
- app/views/stay/admin/addresses/_form.html.erb
|
648
|
+
- app/views/stay/admin/addresses/edit.html.erb
|
649
|
+
- app/views/stay/admin/addresses/index.html.erb
|
650
|
+
- app/views/stay/admin/addresses/new.html.erb
|
651
|
+
- app/views/stay/admin/addresses/show.html.erb
|
652
|
+
- app/views/stay/admin/amenities/_form.html.erb
|
653
|
+
- app/views/stay/admin/amenities/edit.html.erb
|
654
|
+
- app/views/stay/admin/amenities/index.html.erb
|
655
|
+
- app/views/stay/admin/amenities/new.html.erb
|
656
|
+
- app/views/stay/admin/amenities/show.html.erb
|
657
|
+
- app/views/stay/admin/amenity_categories/_form.html.erb
|
658
|
+
- app/views/stay/admin/amenity_categories/edit.html.erb
|
659
|
+
- app/views/stay/admin/amenity_categories/index.html.erb
|
660
|
+
- app/views/stay/admin/amenity_categories/new.html.erb
|
661
|
+
- app/views/stay/admin/amenity_categories/show.html.erb
|
662
|
+
- app/views/stay/admin/bed_types/_form.html.erb
|
663
|
+
- app/views/stay/admin/bed_types/edit.html.erb
|
664
|
+
- app/views/stay/admin/bed_types/index.html.erb
|
665
|
+
- app/views/stay/admin/bed_types/new.html.erb
|
666
|
+
- app/views/stay/admin/bed_types/show.html.erb
|
667
|
+
- app/views/stay/admin/bookings/_booking_invoice.html.erb
|
668
|
+
- app/views/stay/admin/bookings/_booking_summary.html.erb
|
669
|
+
- app/views/stay/admin/bookings/_form.html.erb
|
670
|
+
- app/views/stay/admin/bookings/edit.html.erb
|
671
|
+
- app/views/stay/admin/bookings/index.html.erb
|
672
|
+
- app/views/stay/admin/bookings/new.html.erb
|
673
|
+
- app/views/stay/admin/bookings/show.html.erb
|
674
|
+
- app/views/stay/admin/cancellation_policies/_form.html.erb
|
675
|
+
- app/views/stay/admin/cancellation_policies/edit.html.erb
|
676
|
+
- app/views/stay/admin/cancellation_policies/index.html.erb
|
677
|
+
- app/views/stay/admin/cancellation_policies/new.html.erb
|
678
|
+
- app/views/stay/admin/cancellation_policies/show.html.erb
|
679
|
+
- app/views/stay/admin/chats/_form.html.erb
|
680
|
+
- app/views/stay/admin/chats/edit.html.erb
|
681
|
+
- app/views/stay/admin/chats/index.html.erb
|
682
|
+
- app/views/stay/admin/chats/new.html.erb
|
683
|
+
- app/views/stay/admin/chats/show.html.erb
|
684
|
+
- app/views/stay/admin/cities/_form.html.erb
|
685
|
+
- app/views/stay/admin/cities/edit.html.erb
|
686
|
+
- app/views/stay/admin/cities/index.html.erb
|
687
|
+
- app/views/stay/admin/cities/new.html.erb
|
688
|
+
- app/views/stay/admin/countries/_form.html.erb
|
689
|
+
- app/views/stay/admin/countries/edit.html.erb
|
690
|
+
- app/views/stay/admin/countries/index.html.erb
|
691
|
+
- app/views/stay/admin/countries/new.html.erb
|
692
|
+
- app/views/stay/admin/countries/show.html.erb
|
693
|
+
- app/views/stay/admin/dashboard/index.html.erb
|
694
|
+
- app/views/stay/admin/features/_form.html.erb
|
695
|
+
- app/views/stay/admin/features/edit.html.erb
|
696
|
+
- app/views/stay/admin/features/index.html.erb
|
697
|
+
- app/views/stay/admin/features/new.html.erb
|
698
|
+
- app/views/stay/admin/features/show.html.erb
|
699
|
+
- app/views/stay/admin/house_rules/_form.html.erb
|
700
|
+
- app/views/stay/admin/house_rules/edit.html.erb
|
701
|
+
- app/views/stay/admin/house_rules/index.html.erb
|
702
|
+
- app/views/stay/admin/house_rules/new.html.erb
|
703
|
+
- app/views/stay/admin/house_rules/show.html.erb
|
704
|
+
- app/views/stay/admin/mailer/confirmation_instructions.html.erb
|
705
|
+
- app/views/stay/admin/mailer/email_changed.html.erb
|
706
|
+
- app/views/stay/admin/mailer/password_change.html.erb
|
707
|
+
- app/views/stay/admin/mailer/reset_password_instructions.html.erb
|
708
|
+
- app/views/stay/admin/messages/_form.html.erb
|
709
|
+
- app/views/stay/admin/messages/edit.html.erb
|
710
|
+
- app/views/stay/admin/messages/index.html.erb
|
711
|
+
- app/views/stay/admin/messages/new.html.erb
|
712
|
+
- app/views/stay/admin/messages/show.html.erb
|
713
|
+
- app/views/stay/admin/passwords/edit.html.erb
|
714
|
+
- app/views/stay/admin/passwords/new.html.erb
|
715
|
+
- app/views/stay/admin/payment_methods/_form.html.erb
|
716
|
+
- app/views/stay/admin/payment_methods/edit.html.erb
|
717
|
+
- app/views/stay/admin/payment_methods/index.html.erb
|
718
|
+
- app/views/stay/admin/payment_methods/new.html.erb
|
719
|
+
- app/views/stay/admin/payment_methods/show.html.erb
|
720
|
+
- app/views/stay/admin/payments/_form.html.erb
|
721
|
+
- app/views/stay/admin/payments/edit.html.erb
|
722
|
+
- app/views/stay/admin/payments/index.html.erb
|
723
|
+
- app/views/stay/admin/payments/new.html.erb
|
724
|
+
- app/views/stay/admin/payments/show.html.erb
|
725
|
+
- app/views/stay/admin/properties/_amenities.html.erb
|
726
|
+
- app/views/stay/admin/properties/_calendar.html.erb
|
727
|
+
- app/views/stay/admin/properties/_description.html.erb
|
728
|
+
- app/views/stay/admin/properties/_details.html.erb
|
729
|
+
- app/views/stay/admin/properties/_features.html.erb
|
730
|
+
- app/views/stay/admin/properties/_form.html.erb
|
731
|
+
- app/views/stay/admin/properties/_images.html.erb
|
732
|
+
- app/views/stay/admin/properties/_location.html.erb
|
733
|
+
- app/views/stay/admin/properties/_price.html.erb
|
734
|
+
- app/views/stay/admin/properties/_sidebar.html.erb
|
735
|
+
- app/views/stay/admin/properties/edit.html.erb
|
736
|
+
- app/views/stay/admin/properties/index.html.erb
|
737
|
+
- app/views/stay/admin/properties/new.html.erb
|
738
|
+
- app/views/stay/admin/properties/show.html.erb
|
739
|
+
- app/views/stay/admin/property_categories/_form.html.erb
|
740
|
+
- app/views/stay/admin/property_categories/edit.html.erb
|
741
|
+
- app/views/stay/admin/property_categories/index.html.erb
|
742
|
+
- app/views/stay/admin/property_categories/new.html.erb
|
743
|
+
- app/views/stay/admin/property_categories/show.html.erb
|
744
|
+
- app/views/stay/admin/property_types/_form.html.erb
|
745
|
+
- app/views/stay/admin/property_types/edit.html.erb
|
746
|
+
- app/views/stay/admin/property_types/index.html.erb
|
747
|
+
- app/views/stay/admin/property_types/new.html.erb
|
748
|
+
- app/views/stay/admin/property_types/show.html.erb
|
749
|
+
- app/views/stay/admin/registrations/edit.html.erb
|
750
|
+
- app/views/stay/admin/registrations/new.html.erb
|
751
|
+
- app/views/stay/admin/reviews/_form.html.erb
|
752
|
+
- app/views/stay/admin/reviews/edit.html.erb
|
753
|
+
- app/views/stay/admin/reviews/index.html.erb
|
754
|
+
- app/views/stay/admin/reviews/new.html.erb
|
755
|
+
- app/views/stay/admin/reviews/show.html.erb
|
756
|
+
- app/views/stay/admin/roles/_form.html.erb
|
757
|
+
- app/views/stay/admin/roles/edit.html.erb
|
758
|
+
- app/views/stay/admin/roles/index.html.erb
|
759
|
+
- app/views/stay/admin/roles/new.html.erb
|
760
|
+
- app/views/stay/admin/roles/show.html.erb
|
761
|
+
- app/views/stay/admin/room_types/_form.html.erb
|
762
|
+
- app/views/stay/admin/room_types/edit.html.erb
|
763
|
+
- app/views/stay/admin/room_types/index.html.erb
|
764
|
+
- app/views/stay/admin/room_types/new.html.erb
|
765
|
+
- app/views/stay/admin/room_types/show.html.erb
|
766
|
+
- app/views/stay/admin/rooms/_form.html.erb
|
767
|
+
- app/views/stay/admin/rooms/edit.html.erb
|
768
|
+
- app/views/stay/admin/rooms/index.html.erb
|
769
|
+
- app/views/stay/admin/rooms/new.html.erb
|
770
|
+
- app/views/stay/admin/rooms/show.html.erb
|
771
|
+
- app/views/stay/admin/sessions/new.html.erb
|
772
|
+
- app/views/stay/admin/shared/_common-table.html.erb
|
773
|
+
- app/views/stay/admin/shared/_error_messages.html.erb
|
774
|
+
- app/views/stay/admin/shared/_header.html.erb
|
775
|
+
- app/views/stay/admin/shared/_links.html.erb
|
776
|
+
- app/views/stay/admin/shared/_sidebar.html.erb
|
777
|
+
- app/views/stay/admin/shared/_store_switcher.html.erb
|
778
|
+
- app/views/stay/admin/states/_form.html.erb
|
779
|
+
- app/views/stay/admin/states/edit.html.erb
|
780
|
+
- app/views/stay/admin/states/index.html.erb
|
781
|
+
- app/views/stay/admin/states/new.html.erb
|
782
|
+
- app/views/stay/admin/states/show.html.erb
|
783
|
+
- app/views/stay/admin/stores/_form.html.erb
|
784
|
+
- app/views/stay/admin/stores/_tabs.html.erb
|
785
|
+
- app/views/stay/admin/stores/edit.html.erb
|
786
|
+
- app/views/stay/admin/stores/form/_basic.html.erb
|
787
|
+
- app/views/stay/admin/stores/form/_emails.html.erb
|
788
|
+
- app/views/stay/admin/stores/form/_footer.html.erb
|
789
|
+
- app/views/stay/admin/stores/form/_internationalization.html.erb
|
790
|
+
- app/views/stay/admin/stores/form/_seo.html.erb
|
791
|
+
- app/views/stay/admin/stores/form/_social.html.erb
|
792
|
+
- app/views/stay/admin/stores/index.html.erb
|
793
|
+
- app/views/stay/admin/stores/new.html.erb
|
794
|
+
- app/views/stay/admin/stores/translations.html.erb
|
795
|
+
- app/views/stay/admin/taxes/_form.html.erb
|
796
|
+
- app/views/stay/admin/taxes/edit.html.erb
|
797
|
+
- app/views/stay/admin/taxes/index.html.erb
|
798
|
+
- app/views/stay/admin/taxes/new.html.erb
|
799
|
+
- app/views/stay/admin/taxes/show.html.erb
|
800
|
+
- app/views/stay/admin/users/_address.html.erb
|
801
|
+
- app/views/stay/admin/users/_address_form.html.erb
|
802
|
+
- app/views/stay/admin/users/_form.html.erb
|
803
|
+
- app/views/stay/admin/users/_sidebar.html.erb
|
804
|
+
- app/views/stay/admin/users/addresses.html.erb
|
805
|
+
- app/views/stay/admin/users/edit.html.erb
|
806
|
+
- app/views/stay/admin/users/index.html.erb
|
807
|
+
- app/views/stay/admin/users/new.html.erb
|
808
|
+
- app/views/stay/admin/users/show.html.erb
|
809
|
+
- app/views/stay/bookings/new.html.erb
|
810
|
+
- app/views/stay/payments/_payment.js.erb
|
811
|
+
- app/views/stay/payments/new.html.erb
|
812
|
+
- app/views/stay/properties/index.html.erb
|
813
|
+
- app/views/stay/properties/show.html.erb
|
814
|
+
- app/views/stay/shared/_navbar.html.erb
|
815
|
+
- app/views/stay/user_mailer/new_host_signup.html.erb
|
816
|
+
- app/views/stay/user_mailer/welcome_email.html.erb
|
817
|
+
- app/views/stay/users/confirmations/new.html.erb
|
818
|
+
- app/views/stay/users/mailer/confirmation_instructions.html.erb
|
819
|
+
- app/views/stay/users/mailer/email_changed.html.erb
|
820
|
+
- app/views/stay/users/mailer/password_change.html.erb
|
821
|
+
- app/views/stay/users/mailer/reset_password_instructions.html.erb
|
822
|
+
- app/views/stay/users/mailer/unlock_instructions.html.erb
|
823
|
+
- app/views/stay/users/passwords/edit.html.erb
|
824
|
+
- app/views/stay/users/passwords/new.html.erb
|
825
|
+
- app/views/stay/users/registrations/edit.html.erb
|
826
|
+
- app/views/stay/users/registrations/new.html.erb
|
827
|
+
- app/views/stay/users/sessions/new.html.erb
|
828
|
+
- app/views/stay/users/shared/_error_messages.html.erb
|
829
|
+
- app/views/stay/users/shared/_links.html.erb
|
830
|
+
- app/views/stay/users/unlocks/new.html.erb
|
831
|
+
- config/initializers/devise.rb
|
832
|
+
- config/initializers/friendly_id.rb
|
833
|
+
- config/initializers/geocoder.rb
|
834
|
+
- config/initializers/kaminari_config.rb
|
835
|
+
- config/initializers/mobility.rb
|
836
|
+
- config/initializers/stripe.rb
|
837
|
+
- config/locales/devise.en.yml
|
838
|
+
- config/locales/devise_api.en.yml
|
839
|
+
- config/locales/en.yml
|
840
|
+
- config/routes.rb
|
841
|
+
- db/migrate/20240912073149_devise_create_stay_users.rb
|
842
|
+
- db/migrate/20240912073248_create_devise_api_tables.rb
|
843
|
+
- db/migrate/20240912092842_create_stay_roles.rb
|
844
|
+
- db/migrate/20240912093003_create_stay_role_users.rb
|
845
|
+
- db/migrate/20240912093151_create_stay_properties.rb
|
846
|
+
- db/migrate/20240912093213_create_stay_rooms.rb
|
847
|
+
- db/migrate/20240912093240_create_stay_bookings.rb
|
848
|
+
- db/migrate/20240912093346_create_stay_payment_methods.rb
|
849
|
+
- db/migrate/20240912093408_create_stay_payments.rb
|
850
|
+
- db/migrate/20240912093603_create_stay_reviews.rb
|
851
|
+
- db/migrate/20240912093644_create_stay_chats.rb
|
852
|
+
- db/migrate/20240912093717_create_stay_messages.rb
|
853
|
+
- db/migrate/20240912093759_create_stay_countries.rb
|
854
|
+
- db/migrate/20240912093824_create_stay_states.rb
|
855
|
+
- db/migrate/20240912093903_create_stay_cities.rb
|
856
|
+
- db/migrate/20240912094149_create_stay_addresses.rb
|
857
|
+
- db/migrate/20240916071141_create_active_storage_tables.rb
|
858
|
+
- db/migrate/20240918080551_add_columns_to_stay_bookings.rb
|
859
|
+
- db/migrate/20240918101502_add_columns_to_stay_payments.rb
|
860
|
+
- db/migrate/20240918110958_create_stay_prices.rb
|
861
|
+
- db/migrate/20240918112045_add_columns_to_stay_rooms.rb
|
862
|
+
- db/migrate/20240918114609_add_payment_intent_in_bookings.rb
|
863
|
+
- db/migrate/20240919045205_add_user_to_stay_addresses.rb
|
864
|
+
- db/migrate/20240919063400_create_stay_room_types.rb
|
865
|
+
- db/migrate/20240919070423_rename_room_type_to_room_type_id_in_stay_rooms.rb
|
866
|
+
- db/migrate/20240919071642_rename_status_to_state_in_stay_payments.rb
|
867
|
+
- db/migrate/20240919100508_remove_room_id_from_stay_properties.rb
|
868
|
+
- db/migrate/20240919111801_create_stay_line_items.rb
|
869
|
+
- db/migrate/20240919124704_remove_room_id_from_stay_bookings.rb
|
870
|
+
- db/migrate/20240924053658_add_is_master_in_stay_rooms.rb
|
871
|
+
- db/migrate/20240925063733_add_zipcode_required_in_countries.rb
|
872
|
+
- db/migrate/20240926055951_remove_city_reference_from_stay_addresses.rb
|
873
|
+
- db/migrate/20240927055935_change_price_per_night_to_decimal_in_stay_rooms.rb
|
874
|
+
- db/migrate/20240927063023_add_first_name_to_stay_addresses.rb
|
875
|
+
- db/migrate/20240927070538_change_description_to_text_in_stay_properties.rb
|
876
|
+
- db/migrate/20240927111110_create_stay_stores.rb
|
877
|
+
- db/migrate/20240930095921_create_stay_cancellation_policies.rb
|
878
|
+
- db/migrate/20240930100157_add_cancellation_id_to_stay_properties.rb
|
879
|
+
- db/migrate/20240930152331_create_stay_store_translations.rb
|
880
|
+
- db/migrate/20240930162337_create_stay_store_properties.rb
|
881
|
+
- db/migrate/20241001101816_create_stay_property_categories.rb
|
882
|
+
- db/migrate/20241001102646_add_property_category_id_to_property.rb
|
883
|
+
- db/migrate/20241001103758_create_stay_property_types.rb
|
884
|
+
- db/migrate/20241001111306_add_store_id_to_stay_bookings.rb
|
885
|
+
- db/migrate/20241001160330_add_deleted_at_to_stay_store_translations.rb
|
886
|
+
- db/migrate/20241004061647_add_field_to_stay_properties.rb
|
887
|
+
- db/migrate/20241004062057_create_stay_bed_types.rb
|
888
|
+
- db/migrate/20241004062251_add_details_to_stay_rooms.rb
|
889
|
+
- db/migrate/20241004070456_add_property_type_id_to_stay_property_categories.rb
|
890
|
+
- db/migrate/20241004105821_create_stay_amenity_categories.rb
|
891
|
+
- db/migrate/20241004112600_create_stay_amenities.rb
|
892
|
+
- db/migrate/20241004115207_create_stay_house_rules.rb
|
893
|
+
- db/migrate/20241004115317_create_stay_additional_rules.rb
|
894
|
+
- db/migrate/20241004115608_create_stay_property_amenities.rb
|
895
|
+
- db/migrate/20241004115615_create_stay_room_amenities.rb
|
896
|
+
- db/migrate/20241007051646_add_preferences_to_stay_users.rb
|
897
|
+
- db/migrate/20241007165530_create_stay_creates.rb
|
898
|
+
- db/migrate/20241008111346_add_deleted_at_to_stay_users.rb
|
899
|
+
- db/migrate/20241008151958_add_price_per_night_in_stay_properties.rb
|
900
|
+
- db/migrate/20241010071855_add_zipcode_to_stay_property.rb
|
901
|
+
- db/migrate/20241014085441_add_amenity_type_in_amenities.rb
|
902
|
+
- db/migrate/20241015055940_create_stay_features.rb
|
903
|
+
- db/migrate/20241015060804_create_stay_property_features.rb
|
904
|
+
- db/migrate/20241015060854_create_stay_room_features.rb
|
905
|
+
- db/migrate/20241016055948_create_stay_tax.rb
|
906
|
+
- db/migrate/20241016060354_create_stay_property_tax.rb
|
907
|
+
- db/migrate/20241016091120_remove_column_from_stay_properties_categories.rb
|
908
|
+
- db/migrate/20241016091829_add_column_to_stay_property.rb
|
909
|
+
- db/migrate/20241016112707_add_country_to_stay_properties.rb
|
910
|
+
- db/migrate/20241016153847_add_state_to_properties.rb
|
911
|
+
- db/migrate/20241016170528_up_date_price_column_in_stay_property.rb
|
912
|
+
- db/migrate/20241017031520_add_new_field_to_stay_properties.rb
|
913
|
+
- db/migrate/20241017051450_add_column_to_stay_chat.rb
|
914
|
+
- db/migrate/20241018090158_create_stay_stay_credit_cards.rb
|
915
|
+
- db/migrate/20241021090444_create_stay_stay_user_paypals.rb
|
916
|
+
- db/migrate/20241024065949_add_stay_property_to_stay_b0okings.rb
|
917
|
+
- db/migrate/20241027062126_add_events_to_stay_messages.rb
|
918
|
+
- db/migrate/20241028105007_create_stay_invoices.rb
|
919
|
+
- db/migrate/20241028105323_create_stay_expenses.rb
|
920
|
+
- db/migrate/20241028105331_create_stay_discounts.rb
|
921
|
+
- db/migrate/20241101044618_create_stay_booking_queries.rb
|
922
|
+
- db/migrate/20241101093057_add_read_at_to_stay_messages.rb
|
923
|
+
- db/migrate/20241113061248_modify_cancellation_policy_on_properties.rb
|
924
|
+
- db/migrate/20241118064033_rename_columns_in_stay_properties.rb
|
925
|
+
- db/migrate/20241127060541_add_new_fields_to_property.rb
|
926
|
+
- db/migrate/20241128111832_add_name_to_stay_rooms.rb
|
927
|
+
- db/migrate/20241129063922_change_amenity_category_null_on_stay_amenities.rb
|
928
|
+
- db/migrate/20241205092935_add_slug_to_stay_properties.rb
|
929
|
+
- db/migrate/20241205092943_create_friendly_id_slugs.rb
|
930
|
+
- db/migrate/20241217044817_add_deleted_atto_stay_property.rb
|
931
|
+
- db/migrate/20241230064432_modify_property_category_on_properties.rb
|
932
|
+
- db/seeds.rb
|
933
|
+
- lib/stay.rb
|
934
|
+
- lib/stay/controller_helpers/currency.rb
|
935
|
+
- lib/stay/controller_helpers/store.rb
|
936
|
+
- lib/stay/engine.rb
|
937
|
+
- lib/stay/money.rb
|
938
|
+
- lib/stay/version.rb
|
939
|
+
- lib/tasks/stay_tasks.rake
|
940
|
+
homepage: https://github.com/w3villa/StayCommerce
|
941
|
+
licenses:
|
942
|
+
- MIT
|
943
|
+
metadata:
|
944
|
+
allowed_push_host: https://rubygems.org
|
945
|
+
homepage_uri: https://github.com/w3villa/StayCommerce
|
946
|
+
source_code_uri: https://github.com/w3villa/StayCommerce
|
947
|
+
changelog_uri: https://github.com/w3villa/StayCommerce
|
948
|
+
post_install_message:
|
949
|
+
rdoc_options: []
|
950
|
+
require_paths:
|
951
|
+
- lib
|
952
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
953
|
+
requirements:
|
954
|
+
- - ">="
|
955
|
+
- !ruby/object:Gem::Version
|
956
|
+
version: '0'
|
957
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
958
|
+
requirements:
|
959
|
+
- - ">="
|
960
|
+
- !ruby/object:Gem::Version
|
961
|
+
version: '0'
|
962
|
+
requirements: []
|
963
|
+
rubygems_version: 3.4.10
|
964
|
+
signing_key:
|
965
|
+
specification_version: 4
|
966
|
+
summary: Summary of Stay.
|
967
|
+
test_files: []
|