├── .github ├── dependabot.yml ├── labels.yml ├── release.yml └── workflows │ ├── github-label-sync.yml │ └── rspec.yml ├── .gitignore ├── .ruby-version ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── dekiru.gemspec ├── lib ├── dekiru.rb └── dekiru │ ├── camelize_hash.rb │ ├── capybara │ ├── helpers.rb │ ├── helpers │ │ └── wait_for_position_stable.rb │ ├── legacy_helpers.rb │ └── matchers.rb │ ├── helper.rb │ ├── mail_security_interceptor.rb │ ├── railtie.rb │ ├── task_with_logger.rb │ ├── tasks │ └── db.rake │ └── version.rb └── spec ├── dekiru ├── camelize_hash_spec.rb └── mail_security_interceptor_spec.rb ├── spec_helper.rb └── supports ├── action_mailer.rb └── mock_active_record.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/github-label-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/.github/workflows/github-label-sync.yml -------------------------------------------------------------------------------- /.github/workflows/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/.github/workflows/rspec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/Rakefile -------------------------------------------------------------------------------- /dekiru.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/dekiru.gemspec -------------------------------------------------------------------------------- /lib/dekiru.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/lib/dekiru.rb -------------------------------------------------------------------------------- /lib/dekiru/camelize_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/lib/dekiru/camelize_hash.rb -------------------------------------------------------------------------------- /lib/dekiru/capybara/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/lib/dekiru/capybara/helpers.rb -------------------------------------------------------------------------------- /lib/dekiru/capybara/helpers/wait_for_position_stable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/lib/dekiru/capybara/helpers/wait_for_position_stable.rb -------------------------------------------------------------------------------- /lib/dekiru/capybara/legacy_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/lib/dekiru/capybara/legacy_helpers.rb -------------------------------------------------------------------------------- /lib/dekiru/capybara/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/lib/dekiru/capybara/matchers.rb -------------------------------------------------------------------------------- /lib/dekiru/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/lib/dekiru/helper.rb -------------------------------------------------------------------------------- /lib/dekiru/mail_security_interceptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/lib/dekiru/mail_security_interceptor.rb -------------------------------------------------------------------------------- /lib/dekiru/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/lib/dekiru/railtie.rb -------------------------------------------------------------------------------- /lib/dekiru/task_with_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/lib/dekiru/task_with_logger.rb -------------------------------------------------------------------------------- /lib/dekiru/tasks/db.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/lib/dekiru/tasks/db.rake -------------------------------------------------------------------------------- /lib/dekiru/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Dekiru 4 | VERSION = '1.2.0' 5 | end 6 | -------------------------------------------------------------------------------- /spec/dekiru/camelize_hash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/spec/dekiru/camelize_hash_spec.rb -------------------------------------------------------------------------------- /spec/dekiru/mail_security_interceptor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/spec/dekiru/mail_security_interceptor_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/supports/action_mailer.rb: -------------------------------------------------------------------------------- 1 | ActionMailer::Base.delivery_method = :test 2 | -------------------------------------------------------------------------------- /spec/supports/mock_active_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonicGarden/dekiru/HEAD/spec/supports/mock_active_record.rb --------------------------------------------------------------------------------