├── .github └── workflows │ └── rspec.yml ├── .gitignore ├── .ruby-version ├── CHANGELOG.md ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── bin └── test ├── gemfiles ├── 6.1.gemfile └── 7.0.gemfile ├── hanmoto.gemspec ├── lib ├── hanmoto.rb ├── hanmoto │ ├── configuration.rb │ ├── railtie.rb │ ├── rake_task_extension.rb │ ├── task.rb │ └── version.rb └── tasks │ └── hanmoto_tasks.rake └── spec ├── dummy ├── .rspec ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── cable.js │ │ │ └── channels │ │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ └── concerns │ │ │ └── .keep │ ├── helpers │ │ └── application_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ └── concerns │ │ │ └── .keep │ └── views │ │ ├── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ ├── mailer.text.erb │ │ └── public.html.haml │ │ ├── not_exist_public_pages │ │ └── .keep │ │ └── public_pages │ │ └── 404.html.haml ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── update │ └── yarn ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── secrets.yml │ └── spring.rb ├── db │ └── schema.rb ├── lib │ └── assets │ │ └── .keep ├── log │ └── .keep ├── package.json └── public │ └── .keep ├── lib └── hanmoto │ └── task_spec.rb ├── rails_helper.rb └── spec_helper.rb /.github/workflows/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/.github/workflows/rspec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/bin/test -------------------------------------------------------------------------------- /gemfiles/6.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/gemfiles/6.1.gemfile -------------------------------------------------------------------------------- /gemfiles/7.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/gemfiles/7.0.gemfile -------------------------------------------------------------------------------- /hanmoto.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/hanmoto.gemspec -------------------------------------------------------------------------------- /lib/hanmoto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/lib/hanmoto.rb -------------------------------------------------------------------------------- /lib/hanmoto/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/lib/hanmoto/configuration.rb -------------------------------------------------------------------------------- /lib/hanmoto/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/lib/hanmoto/railtie.rb -------------------------------------------------------------------------------- /lib/hanmoto/rake_task_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/lib/hanmoto/rake_task_extension.rb -------------------------------------------------------------------------------- /lib/hanmoto/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/lib/hanmoto/task.rb -------------------------------------------------------------------------------- /lib/hanmoto/version.rb: -------------------------------------------------------------------------------- 1 | module Hanmoto 2 | VERSION = '0.7.0' 3 | end 4 | -------------------------------------------------------------------------------- /lib/tasks/hanmoto_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/lib/tasks/hanmoto_tasks.rake -------------------------------------------------------------------------------- /spec/dummy/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /spec/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/Rakefile -------------------------------------------------------------------------------- /spec/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/assets/config/manifest.js -------------------------------------------------------------------------------- /spec/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /spec/dummy/app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /spec/dummy/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /spec/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /spec/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /spec/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /spec/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /spec/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /spec/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /spec/dummy/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /spec/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /spec/dummy/app/views/layouts/public.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/views/layouts/public.html.haml -------------------------------------------------------------------------------- /spec/dummy/app/views/not_exist_public_pages/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/views/public_pages/404.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/app/views/public_pages/404.html.haml -------------------------------------------------------------------------------- /spec/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/bin/bundle -------------------------------------------------------------------------------- /spec/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/bin/rails -------------------------------------------------------------------------------- /spec/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/bin/rake -------------------------------------------------------------------------------- /spec/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/bin/setup -------------------------------------------------------------------------------- /spec/dummy/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/bin/update -------------------------------------------------------------------------------- /spec/dummy/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/bin/yarn -------------------------------------------------------------------------------- /spec/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config.ru -------------------------------------------------------------------------------- /spec/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/application.rb -------------------------------------------------------------------------------- /spec/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/boot.rb -------------------------------------------------------------------------------- /spec/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/cable.yml -------------------------------------------------------------------------------- /spec/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/database.yml -------------------------------------------------------------------------------- /spec/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/environment.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /spec/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /spec/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/puma.rb -------------------------------------------------------------------------------- /spec/dummy/config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | root to: 'home#index' 3 | end 4 | -------------------------------------------------------------------------------- /spec/dummy/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/secrets.yml -------------------------------------------------------------------------------- /spec/dummy/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/config/spring.rb -------------------------------------------------------------------------------- /spec/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/db/schema.rb -------------------------------------------------------------------------------- /spec/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/dummy/package.json -------------------------------------------------------------------------------- /spec/dummy/public/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/lib/hanmoto/task_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/lib/hanmoto/task_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/hanmoto/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------