├── .gitattributes ├── .gitignore ├── .rspec ├── .ruby-version ├── .tool-versions ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── Procfile.dev ├── README.md ├── Rakefile ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── favicon.ico │ │ └── touhyosan.jpg │ └── stylesheets │ │ ├── application.bootstrap.scss │ │ ├── custom.scss │ │ └── debug.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── polls │ │ ├── choices_controller.rb │ │ └── votes_controller.rb │ └── polls_controller.rb ├── helpers │ └── application_helper.rb ├── javascript │ ├── application.js │ └── controllers │ │ ├── application.js │ │ ├── autosubmit_controller.js │ │ ├── draggable_controller.js │ │ ├── hello_controller.js │ │ ├── index.js │ │ ├── markdown_controller.js │ │ ├── modal_controller.js │ │ ├── textarea_autosize_controller.js │ │ └── toast_controller.js ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── choice.rb │ ├── concerns │ │ └── .keep │ ├── poll.rb │ ├── vote.rb │ └── vote_detail.rb └── views │ ├── application │ ├── _toast.html.erb │ └── _turbo_stream_flash.html.erb │ ├── layouts │ ├── application.html.erb │ ├── application.turbo_stream.erb │ ├── mailer.html.erb │ ├── mailer.text.erb │ └── turbo_rails │ │ └── frame.turbo_stream.erb │ └── polls │ ├── _result.html.erb │ ├── choices │ ├── _choice.html.erb │ ├── _form.html.erb │ ├── create.turbo_stream.erb │ ├── edit.html.erb │ └── index.html.erb │ ├── new.html.erb │ ├── show.html.erb │ └── votes │ ├── _form.html.erb │ ├── _vote_details.html.erb │ ├── edit.html.erb │ ├── new.html.erb │ └── result.turbo_stream.erb ├── bin ├── bundle ├── dev ├── rails ├── rake └── setup ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml.postgres.example ├── database.yml.sqlite3.example ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── content_security_policy.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ └── permissions_policy.rb ├── locales │ ├── en.yml │ └── ja.yml ├── puma.rb ├── routes.rb └── storage.yml ├── db ├── migrate │ ├── 20220929095605_create_polls.rb │ ├── 20220929095654_create_choices.rb │ ├── 20221013093633_create_votes.rb │ ├── 20221027094047_create_vote_details.rb │ └── 20230427094425_add_position_to_vote_details.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── spec ├── rails_helper.rb ├── spec_helper.rb ├── support │ ├── capybara.rb │ └── touhyosan_helpers.rb └── system │ ├── choices_spec.rb │ └── votes_spec.rb ├── storage └── .keep ├── tmp ├── .keep ├── pids │ └── .keep └── storage │ └── .keep ├── vendor └── .keep └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.2 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.1.2 2 | nodejs 20.14.0 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/touhyosan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/assets/images/touhyosan.jpg -------------------------------------------------------------------------------- /app/assets/stylesheets/application.bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/assets/stylesheets/application.bootstrap.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/assets/stylesheets/custom.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/assets/stylesheets/debug.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/polls/choices_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/controllers/polls/choices_controller.rb -------------------------------------------------------------------------------- /app/controllers/polls/votes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/controllers/polls/votes_controller.rb -------------------------------------------------------------------------------- /app/controllers/polls_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/controllers/polls_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/javascript/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/autosubmit_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/javascript/controllers/autosubmit_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/draggable_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/javascript/controllers/draggable_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/hello_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/javascript/controllers/hello_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/controllers/markdown_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/javascript/controllers/markdown_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/modal_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/javascript/controllers/modal_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/textarea_autosize_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/javascript/controllers/textarea_autosize_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/toast_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/javascript/controllers/toast_controller.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/choice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/models/choice.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/poll.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/models/poll.rb -------------------------------------------------------------------------------- /app/models/vote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/models/vote.rb -------------------------------------------------------------------------------- /app/models/vote_detail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/models/vote_detail.rb -------------------------------------------------------------------------------- /app/views/application/_toast.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/application/_toast.html.erb -------------------------------------------------------------------------------- /app/views/application/_turbo_stream_flash.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/application/_turbo_stream_flash.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.turbo_stream.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/layouts/application.turbo_stream.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/layouts/turbo_rails/frame.turbo_stream.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/layouts/turbo_rails/frame.turbo_stream.erb -------------------------------------------------------------------------------- /app/views/polls/_result.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/_result.html.erb -------------------------------------------------------------------------------- /app/views/polls/choices/_choice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/choices/_choice.html.erb -------------------------------------------------------------------------------- /app/views/polls/choices/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/choices/_form.html.erb -------------------------------------------------------------------------------- /app/views/polls/choices/create.turbo_stream.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/choices/create.turbo_stream.erb -------------------------------------------------------------------------------- /app/views/polls/choices/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/choices/edit.html.erb -------------------------------------------------------------------------------- /app/views/polls/choices/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/choices/index.html.erb -------------------------------------------------------------------------------- /app/views/polls/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/new.html.erb -------------------------------------------------------------------------------- /app/views/polls/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/show.html.erb -------------------------------------------------------------------------------- /app/views/polls/votes/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/votes/_form.html.erb -------------------------------------------------------------------------------- /app/views/polls/votes/_vote_details.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/votes/_vote_details.html.erb -------------------------------------------------------------------------------- /app/views/polls/votes/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/votes/edit.html.erb -------------------------------------------------------------------------------- /app/views/polls/votes/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/votes/new.html.erb -------------------------------------------------------------------------------- /app/views/polls/votes/result.turbo_stream.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/app/views/polls/votes/result.turbo_stream.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml.postgres.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/database.yml.postgres.example -------------------------------------------------------------------------------- /config/database.yml.sqlite3.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/database.yml.sqlite3.example -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20220929095605_create_polls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/db/migrate/20220929095605_create_polls.rb -------------------------------------------------------------------------------- /db/migrate/20220929095654_create_choices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/db/migrate/20220929095654_create_choices.rb -------------------------------------------------------------------------------- /db/migrate/20221013093633_create_votes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/db/migrate/20221013093633_create_votes.rb -------------------------------------------------------------------------------- /db/migrate/20221027094047_create_vote_details.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/db/migrate/20221027094047_create_vote_details.rb -------------------------------------------------------------------------------- /db/migrate/20230427094425_add_position_to_vote_details.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/db/migrate/20230427094425_add_position_to_vote_details.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/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/hotwire-love/touhyosan/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/capybara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/spec/support/capybara.rb -------------------------------------------------------------------------------- /spec/support/touhyosan_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/spec/support/touhyosan_helpers.rb -------------------------------------------------------------------------------- /spec/system/choices_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/spec/system/choices_spec.rb -------------------------------------------------------------------------------- /spec/system/votes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/spec/system/votes_spec.rb -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotwire-love/touhyosan/HEAD/yarn.lock --------------------------------------------------------------------------------