├── .browserslistrc ├── .gitattributes ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ └── stylesheets │ │ ├── application.css │ │ ├── home.scss │ │ └── invoices.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── customers_controller.rb │ ├── home_controller.rb │ └── invoices_controller.rb ├── helpers │ ├── application_helper.rb │ ├── home_helper.rb │ └── invoices_helper.rb ├── javascript │ ├── channels │ │ ├── consumer.js │ │ └── index.js │ ├── controllers │ │ ├── customers_controller.js │ │ ├── hello_controller.js │ │ └── index.js │ └── packs │ │ └── application.js ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── customer.rb │ └── invoice.rb └── views │ ├── customers │ ├── _form.html.erb │ └── create.turbo_stream.erb │ ├── home │ └── index.html.erb │ ├── invoices │ ├── _customer_dropdown.html.erb │ ├── _form.html.erb │ ├── _invoice.json.jbuilder │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ └── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb ├── babel.config.js ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── webpack ├── webpack-dev-server └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── permissions_policy.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── spring.rb ├── storage.yml ├── webpack │ ├── development.js │ ├── environment.js │ ├── production.js │ └── test.js └── webpacker.yml ├── db ├── migrate │ ├── 20210620120346_create_customers.rb │ └── 20210620120515_create_invoices.rb ├── schema.rb └── seeds.rb ├── demo.gif ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── package.json ├── postcss.config.js ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── channels │ └── application_cable │ │ └── connection_test.rb ├── controllers │ ├── .keep │ ├── home_controller_test.rb │ └── invoices_controller_test.rb ├── fixtures │ ├── customers.yml │ ├── files │ │ └── .keep │ └── invoices.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── customer_test.rb │ └── invoice_test.rb ├── system │ ├── .keep │ └── invoices_test.rb └── test_helper.rb ├── tmp ├── .keep └── pids │ └── .keep ├── vendor └── .keep └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.0.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/assets/stylesheets/home.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/invoices.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/assets/stylesheets/invoices.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/customers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/controllers/customers_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/invoices_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/controllers/invoices_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/invoices_helper.rb: -------------------------------------------------------------------------------- 1 | module InvoicesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/javascript/channels/index.js -------------------------------------------------------------------------------- /app/javascript/controllers/customers_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/javascript/controllers/customers_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/hello_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/javascript/controllers/hello_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/javascript/packs/application.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/models/customer.rb -------------------------------------------------------------------------------- /app/models/invoice.rb: -------------------------------------------------------------------------------- 1 | class Invoice < ApplicationRecord 2 | belongs_to :customer 3 | end 4 | -------------------------------------------------------------------------------- /app/views/customers/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/customers/_form.html.erb -------------------------------------------------------------------------------- /app/views/customers/create.turbo_stream.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/customers/create.turbo_stream.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/invoices/_customer_dropdown.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/invoices/_customer_dropdown.html.erb -------------------------------------------------------------------------------- /app/views/invoices/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/invoices/_form.html.erb -------------------------------------------------------------------------------- /app/views/invoices/_invoice.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/invoices/_invoice.json.jbuilder -------------------------------------------------------------------------------- /app/views/invoices/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/invoices/edit.html.erb -------------------------------------------------------------------------------- /app/views/invoices/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/invoices/index.html.erb -------------------------------------------------------------------------------- /app/views/invoices/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/invoices/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/invoices/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/invoices/new.html.erb -------------------------------------------------------------------------------- /app/views/invoices/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/invoices/show.html.erb -------------------------------------------------------------------------------- /app/views/invoices/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/invoices/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/webpack/environment.js -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /db/migrate/20210620120346_create_customers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/db/migrate/20210620120346_create_customers.rb -------------------------------------------------------------------------------- /db/migrate/20210620120515_create_invoices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/db/migrate/20210620120515_create_invoices.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/demo.gif -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/public/robots.txt -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/home_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/test/controllers/home_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/invoices_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/test/controllers/invoices_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/customers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/test/fixtures/customers.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/invoices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/test/fixtures/invoices.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/customer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/test/models/customer_test.rb -------------------------------------------------------------------------------- /test/models/invoice_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/test/models/invoice_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/invoices_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/test/system/invoices_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmad19/tomselect-stimulus-hotwire-demo/HEAD/yarn.lock --------------------------------------------------------------------------------