interactify 0.3.0.pre.alpha.1 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -0
- data/.ruby-version +1 -0
- data/Appraisals +23 -0
- data/CHANGELOG.md +17 -0
- data/README.md +33 -44
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/no_railties_no_sidekiq.gemfile +18 -0
- data/gemfiles/no_railties_no_sidekiq.gemfile.lock +127 -0
- data/gemfiles/railties_6.gemfile +14 -0
- data/gemfiles/railties_6.gemfile.lock +253 -0
- data/gemfiles/railties_6_no_sidekiq.gemfile +19 -0
- data/gemfiles/railties_6_no_sidekiq.gemfile.lock +159 -0
- data/gemfiles/railties_6_sidekiq.gemfile +20 -0
- data/gemfiles/railties_6_sidekiq.gemfile.lock +168 -0
- data/gemfiles/railties_7_no_sidekiq.gemfile +19 -0
- data/gemfiles/railties_7_no_sidekiq.gemfile.lock +158 -0
- data/gemfiles/railties_7_sidekiq.gemfile +20 -0
- data/gemfiles/railties_7_sidekiq.gemfile.lock +167 -0
- data/lib/interactify/async/job_klass.rb +63 -0
- data/lib/interactify/async/job_maker.rb +58 -0
- data/lib/interactify/async/jobable.rb +96 -0
- data/lib/interactify/async/null_job.rb +23 -0
- data/lib/interactify/configuration.rb +15 -0
- data/lib/interactify/contracts/call_wrapper.rb +19 -0
- data/lib/interactify/contracts/failure.rb +8 -0
- data/lib/interactify/contracts/helpers.rb +81 -0
- data/lib/interactify/contracts/mismatching_promise_error.rb +19 -0
- data/lib/interactify/contracts/promising.rb +36 -0
- data/lib/interactify/contracts/setup.rb +39 -0
- data/lib/interactify/dsl/each_chain.rb +96 -0
- data/lib/interactify/dsl/if_interactor.rb +81 -0
- data/lib/interactify/dsl/if_klass.rb +82 -0
- data/lib/interactify/dsl/organizer.rb +32 -0
- data/lib/interactify/dsl/unique_klass_name.rb +23 -0
- data/lib/interactify/dsl/wrapper.rb +74 -0
- data/lib/interactify/dsl.rb +12 -6
- data/lib/interactify/rspec_matchers/matchers.rb +68 -0
- data/lib/interactify/version.rb +1 -1
- data/lib/interactify/{interactor_wiring → wiring}/callable_representation.rb +2 -2
- data/lib/interactify/{interactor_wiring → wiring}/constants.rb +4 -4
- data/lib/interactify/{interactor_wiring → wiring}/error_context.rb +1 -1
- data/lib/interactify/{interactor_wiring → wiring}/files.rb +1 -1
- data/lib/interactify/{interactor_wiring.rb → wiring.rb} +5 -5
- data/lib/interactify.rb +58 -38
- metadata +49 -72
- data/lib/interactify/async_job_klass.rb +0 -61
- data/lib/interactify/call_wrapper.rb +0 -17
- data/lib/interactify/contract_failure.rb +0 -6
- data/lib/interactify/contract_helpers.rb +0 -71
- data/lib/interactify/each_chain.rb +0 -88
- data/lib/interactify/if_interactor.rb +0 -70
- data/lib/interactify/interactor_wrapper.rb +0 -72
- data/lib/interactify/job_maker.rb +0 -56
- data/lib/interactify/jobable.rb +0 -92
- data/lib/interactify/mismatching_promise_error.rb +0 -17
- data/lib/interactify/organizer.rb +0 -30
- data/lib/interactify/promising.rb +0 -34
- data/lib/interactify/rspec/matchers.rb +0 -67
- data/lib/interactify/unique_klass_name.rb +0 -21
| @@ -0,0 +1,159 @@ | |
| 1 | 
            +
            PATH
         | 
| 2 | 
            +
              remote: ..
         | 
| 3 | 
            +
              specs:
         | 
| 4 | 
            +
                interactify (0.4.0)
         | 
| 5 | 
            +
                  activesupport (>= 6.0.0)
         | 
| 6 | 
            +
                  interactor
         | 
| 7 | 
            +
                  interactor-contracts
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            GEM
         | 
| 10 | 
            +
              remote: https://rubygems.org/
         | 
| 11 | 
            +
              specs:
         | 
| 12 | 
            +
                actionpack (6.0.0)
         | 
| 13 | 
            +
                  actionview (= 6.0.0)
         | 
| 14 | 
            +
                  activesupport (= 6.0.0)
         | 
| 15 | 
            +
                  rack (~> 2.0)
         | 
| 16 | 
            +
                  rack-test (>= 0.6.3)
         | 
| 17 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 18 | 
            +
                  rails-html-sanitizer (~> 1.0, >= 1.2.0)
         | 
| 19 | 
            +
                actionview (6.0.0)
         | 
| 20 | 
            +
                  activesupport (= 6.0.0)
         | 
| 21 | 
            +
                  builder (~> 3.1)
         | 
| 22 | 
            +
                  erubi (~> 1.4)
         | 
| 23 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 24 | 
            +
                  rails-html-sanitizer (~> 1.1, >= 1.2.0)
         | 
| 25 | 
            +
                activesupport (6.0.0)
         | 
| 26 | 
            +
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         | 
| 27 | 
            +
                  i18n (>= 0.7, < 2)
         | 
| 28 | 
            +
                  minitest (~> 5.1)
         | 
| 29 | 
            +
                  tzinfo (~> 1.1)
         | 
| 30 | 
            +
                  zeitwerk (~> 2.1, >= 2.1.8)
         | 
| 31 | 
            +
                appraisal (2.5.0)
         | 
| 32 | 
            +
                  bundler
         | 
| 33 | 
            +
                  rake
         | 
| 34 | 
            +
                  thor (>= 0.14.0)
         | 
| 35 | 
            +
                builder (3.2.4)
         | 
| 36 | 
            +
                concurrent-ruby (1.2.2)
         | 
| 37 | 
            +
                crass (1.0.6)
         | 
| 38 | 
            +
                debug (1.9.1)
         | 
| 39 | 
            +
                  irb (~> 1.10)
         | 
| 40 | 
            +
                  reline (>= 0.3.8)
         | 
| 41 | 
            +
                diff-lcs (1.5.0)
         | 
| 42 | 
            +
                docile (1.4.0)
         | 
| 43 | 
            +
                dry-configurable (1.0.1)
         | 
| 44 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 45 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 46 | 
            +
                dry-core (1.0.0)
         | 
| 47 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 48 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 49 | 
            +
                dry-inflector (1.0.0)
         | 
| 50 | 
            +
                dry-initializer (3.1.1)
         | 
| 51 | 
            +
                dry-logic (1.5.0)
         | 
| 52 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 53 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 54 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 55 | 
            +
                dry-schema (1.13.3)
         | 
| 56 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 57 | 
            +
                  dry-configurable (~> 1.0, >= 1.0.1)
         | 
| 58 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 59 | 
            +
                  dry-initializer (~> 3.0)
         | 
| 60 | 
            +
                  dry-logic (>= 1.4, < 2)
         | 
| 61 | 
            +
                  dry-types (>= 1.7, < 2)
         | 
| 62 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 63 | 
            +
                dry-types (1.7.1)
         | 
| 64 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 65 | 
            +
                  dry-core (~> 1.0)
         | 
| 66 | 
            +
                  dry-inflector (~> 1.0)
         | 
| 67 | 
            +
                  dry-logic (~> 1.4)
         | 
| 68 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 69 | 
            +
                dry-validation (1.10.0)
         | 
| 70 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 71 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 72 | 
            +
                  dry-initializer (~> 3.0)
         | 
| 73 | 
            +
                  dry-schema (>= 1.12, < 2)
         | 
| 74 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 75 | 
            +
                erubi (1.12.0)
         | 
| 76 | 
            +
                i18n (1.14.1)
         | 
| 77 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 78 | 
            +
                interactor (3.1.2)
         | 
| 79 | 
            +
                interactor-contracts (0.3.0)
         | 
| 80 | 
            +
                  dry-validation (~> 1.0)
         | 
| 81 | 
            +
                  interactor (~> 3)
         | 
| 82 | 
            +
                io-console (0.7.1)
         | 
| 83 | 
            +
                irb (1.11.0)
         | 
| 84 | 
            +
                  rdoc
         | 
| 85 | 
            +
                  reline (>= 0.3.8)
         | 
| 86 | 
            +
                loofah (2.22.0)
         | 
| 87 | 
            +
                  crass (~> 1.0.2)
         | 
| 88 | 
            +
                  nokogiri (>= 1.12.0)
         | 
| 89 | 
            +
                method_source (1.0.0)
         | 
| 90 | 
            +
                mini_portile2 (2.8.5)
         | 
| 91 | 
            +
                minitest (5.20.0)
         | 
| 92 | 
            +
                nokogiri (1.15.5)
         | 
| 93 | 
            +
                  mini_portile2 (~> 2.8.2)
         | 
| 94 | 
            +
                  racc (~> 1.4)
         | 
| 95 | 
            +
                psych (5.1.2)
         | 
| 96 | 
            +
                  stringio
         | 
| 97 | 
            +
                racc (1.7.3)
         | 
| 98 | 
            +
                rack (2.2.8)
         | 
| 99 | 
            +
                rack-test (2.1.0)
         | 
| 100 | 
            +
                  rack (>= 1.3)
         | 
| 101 | 
            +
                rails-dom-testing (2.2.0)
         | 
| 102 | 
            +
                  activesupport (>= 5.0.0)
         | 
| 103 | 
            +
                  minitest
         | 
| 104 | 
            +
                  nokogiri (>= 1.6)
         | 
| 105 | 
            +
                rails-html-sanitizer (1.6.0)
         | 
| 106 | 
            +
                  loofah (~> 2.21)
         | 
| 107 | 
            +
                  nokogiri (~> 1.14)
         | 
| 108 | 
            +
                railties (6.0.0)
         | 
| 109 | 
            +
                  actionpack (= 6.0.0)
         | 
| 110 | 
            +
                  activesupport (= 6.0.0)
         | 
| 111 | 
            +
                  method_source
         | 
| 112 | 
            +
                  rake (>= 0.8.7)
         | 
| 113 | 
            +
                  thor (>= 0.20.3, < 2.0)
         | 
| 114 | 
            +
                rake (13.1.0)
         | 
| 115 | 
            +
                rdoc (6.6.2)
         | 
| 116 | 
            +
                  psych (>= 4.0.0)
         | 
| 117 | 
            +
                reline (0.4.1)
         | 
| 118 | 
            +
                  io-console (~> 0.5)
         | 
| 119 | 
            +
                rspec (3.12.0)
         | 
| 120 | 
            +
                  rspec-core (~> 3.12.0)
         | 
| 121 | 
            +
                  rspec-expectations (~> 3.12.0)
         | 
| 122 | 
            +
                  rspec-mocks (~> 3.12.0)
         | 
| 123 | 
            +
                rspec-core (3.12.2)
         | 
| 124 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 125 | 
            +
                rspec-expectations (3.12.3)
         | 
| 126 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 127 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 128 | 
            +
                rspec-mocks (3.12.6)
         | 
| 129 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 130 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 131 | 
            +
                rspec-support (3.12.1)
         | 
| 132 | 
            +
                simplecov (0.22.0)
         | 
| 133 | 
            +
                  docile (~> 1.1)
         | 
| 134 | 
            +
                  simplecov-html (~> 0.11)
         | 
| 135 | 
            +
                  simplecov_json_formatter (~> 0.1)
         | 
| 136 | 
            +
                simplecov-html (0.12.3)
         | 
| 137 | 
            +
                simplecov_json_formatter (0.1.4)
         | 
| 138 | 
            +
                stringio (3.1.0)
         | 
| 139 | 
            +
                thor (1.3.0)
         | 
| 140 | 
            +
                thread_safe (0.3.6)
         | 
| 141 | 
            +
                tzinfo (1.2.11)
         | 
| 142 | 
            +
                  thread_safe (~> 0.1)
         | 
| 143 | 
            +
                zeitwerk (2.6.12)
         | 
| 144 | 
            +
             | 
| 145 | 
            +
            PLATFORMS
         | 
| 146 | 
            +
              ruby
         | 
| 147 | 
            +
             | 
| 148 | 
            +
            DEPENDENCIES
         | 
| 149 | 
            +
              appraisal
         | 
| 150 | 
            +
              bundler (~> 2.0)
         | 
| 151 | 
            +
              debug
         | 
| 152 | 
            +
              interactify!
         | 
| 153 | 
            +
              railties (= 6)
         | 
| 154 | 
            +
              rake (~> 13.0)
         | 
| 155 | 
            +
              rspec (~> 3.0)
         | 
| 156 | 
            +
              simplecov
         | 
| 157 | 
            +
             | 
| 158 | 
            +
            BUNDLED WITH
         | 
| 159 | 
            +
               2.4.22
         | 
| @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            # This file was generated by Appraisal
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            source "https://rubygems.org"
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            gem "rake", "~> 13.0"
         | 
| 6 | 
            +
            gem "railties", "6"
         | 
| 7 | 
            +
            gem "sidekiq", "7"
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            group :development do
         | 
| 10 | 
            +
              gem "appraisal"
         | 
| 11 | 
            +
              gem "bundler", "~> 2.0"
         | 
| 12 | 
            +
            end
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            group :test do
         | 
| 15 | 
            +
              gem "debug"
         | 
| 16 | 
            +
              gem "rspec", "~> 3.0"
         | 
| 17 | 
            +
              gem "simplecov", require: false
         | 
| 18 | 
            +
            end
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            gemspec path: "../"
         | 
| @@ -0,0 +1,168 @@ | |
| 1 | 
            +
            PATH
         | 
| 2 | 
            +
              remote: ..
         | 
| 3 | 
            +
              specs:
         | 
| 4 | 
            +
                interactify (0.4.0)
         | 
| 5 | 
            +
                  activesupport (>= 6.0.0)
         | 
| 6 | 
            +
                  interactor
         | 
| 7 | 
            +
                  interactor-contracts
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            GEM
         | 
| 10 | 
            +
              remote: https://rubygems.org/
         | 
| 11 | 
            +
              specs:
         | 
| 12 | 
            +
                actionpack (6.0.0)
         | 
| 13 | 
            +
                  actionview (= 6.0.0)
         | 
| 14 | 
            +
                  activesupport (= 6.0.0)
         | 
| 15 | 
            +
                  rack (~> 2.0)
         | 
| 16 | 
            +
                  rack-test (>= 0.6.3)
         | 
| 17 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 18 | 
            +
                  rails-html-sanitizer (~> 1.0, >= 1.2.0)
         | 
| 19 | 
            +
                actionview (6.0.0)
         | 
| 20 | 
            +
                  activesupport (= 6.0.0)
         | 
| 21 | 
            +
                  builder (~> 3.1)
         | 
| 22 | 
            +
                  erubi (~> 1.4)
         | 
| 23 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 24 | 
            +
                  rails-html-sanitizer (~> 1.1, >= 1.2.0)
         | 
| 25 | 
            +
                activesupport (6.0.0)
         | 
| 26 | 
            +
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         | 
| 27 | 
            +
                  i18n (>= 0.7, < 2)
         | 
| 28 | 
            +
                  minitest (~> 5.1)
         | 
| 29 | 
            +
                  tzinfo (~> 1.1)
         | 
| 30 | 
            +
                  zeitwerk (~> 2.1, >= 2.1.8)
         | 
| 31 | 
            +
                appraisal (2.5.0)
         | 
| 32 | 
            +
                  bundler
         | 
| 33 | 
            +
                  rake
         | 
| 34 | 
            +
                  thor (>= 0.14.0)
         | 
| 35 | 
            +
                builder (3.2.4)
         | 
| 36 | 
            +
                concurrent-ruby (1.2.2)
         | 
| 37 | 
            +
                connection_pool (2.4.1)
         | 
| 38 | 
            +
                crass (1.0.6)
         | 
| 39 | 
            +
                debug (1.9.1)
         | 
| 40 | 
            +
                  irb (~> 1.10)
         | 
| 41 | 
            +
                  reline (>= 0.3.8)
         | 
| 42 | 
            +
                diff-lcs (1.5.0)
         | 
| 43 | 
            +
                docile (1.4.0)
         | 
| 44 | 
            +
                dry-configurable (1.0.1)
         | 
| 45 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 46 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 47 | 
            +
                dry-core (1.0.0)
         | 
| 48 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 49 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 50 | 
            +
                dry-inflector (1.0.0)
         | 
| 51 | 
            +
                dry-initializer (3.1.1)
         | 
| 52 | 
            +
                dry-logic (1.5.0)
         | 
| 53 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 54 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 55 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 56 | 
            +
                dry-schema (1.13.3)
         | 
| 57 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 58 | 
            +
                  dry-configurable (~> 1.0, >= 1.0.1)
         | 
| 59 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 60 | 
            +
                  dry-initializer (~> 3.0)
         | 
| 61 | 
            +
                  dry-logic (>= 1.4, < 2)
         | 
| 62 | 
            +
                  dry-types (>= 1.7, < 2)
         | 
| 63 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 64 | 
            +
                dry-types (1.7.1)
         | 
| 65 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 66 | 
            +
                  dry-core (~> 1.0)
         | 
| 67 | 
            +
                  dry-inflector (~> 1.0)
         | 
| 68 | 
            +
                  dry-logic (~> 1.4)
         | 
| 69 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 70 | 
            +
                dry-validation (1.10.0)
         | 
| 71 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 72 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 73 | 
            +
                  dry-initializer (~> 3.0)
         | 
| 74 | 
            +
                  dry-schema (>= 1.12, < 2)
         | 
| 75 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 76 | 
            +
                erubi (1.12.0)
         | 
| 77 | 
            +
                i18n (1.14.1)
         | 
| 78 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 79 | 
            +
                interactor (3.1.2)
         | 
| 80 | 
            +
                interactor-contracts (0.3.0)
         | 
| 81 | 
            +
                  dry-validation (~> 1.0)
         | 
| 82 | 
            +
                  interactor (~> 3)
         | 
| 83 | 
            +
                io-console (0.7.1)
         | 
| 84 | 
            +
                irb (1.11.0)
         | 
| 85 | 
            +
                  rdoc
         | 
| 86 | 
            +
                  reline (>= 0.3.8)
         | 
| 87 | 
            +
                loofah (2.22.0)
         | 
| 88 | 
            +
                  crass (~> 1.0.2)
         | 
| 89 | 
            +
                  nokogiri (>= 1.12.0)
         | 
| 90 | 
            +
                method_source (1.0.0)
         | 
| 91 | 
            +
                mini_portile2 (2.8.5)
         | 
| 92 | 
            +
                minitest (5.20.0)
         | 
| 93 | 
            +
                nokogiri (1.15.5)
         | 
| 94 | 
            +
                  mini_portile2 (~> 2.8.2)
         | 
| 95 | 
            +
                  racc (~> 1.4)
         | 
| 96 | 
            +
                psych (5.1.2)
         | 
| 97 | 
            +
                  stringio
         | 
| 98 | 
            +
                racc (1.7.3)
         | 
| 99 | 
            +
                rack (2.2.8)
         | 
| 100 | 
            +
                rack-test (2.1.0)
         | 
| 101 | 
            +
                  rack (>= 1.3)
         | 
| 102 | 
            +
                rails-dom-testing (2.2.0)
         | 
| 103 | 
            +
                  activesupport (>= 5.0.0)
         | 
| 104 | 
            +
                  minitest
         | 
| 105 | 
            +
                  nokogiri (>= 1.6)
         | 
| 106 | 
            +
                rails-html-sanitizer (1.6.0)
         | 
| 107 | 
            +
                  loofah (~> 2.21)
         | 
| 108 | 
            +
                  nokogiri (~> 1.14)
         | 
| 109 | 
            +
                railties (6.0.0)
         | 
| 110 | 
            +
                  actionpack (= 6.0.0)
         | 
| 111 | 
            +
                  activesupport (= 6.0.0)
         | 
| 112 | 
            +
                  method_source
         | 
| 113 | 
            +
                  rake (>= 0.8.7)
         | 
| 114 | 
            +
                  thor (>= 0.20.3, < 2.0)
         | 
| 115 | 
            +
                rake (13.1.0)
         | 
| 116 | 
            +
                rdoc (6.6.2)
         | 
| 117 | 
            +
                  psych (>= 4.0.0)
         | 
| 118 | 
            +
                redis-client (0.19.1)
         | 
| 119 | 
            +
                  connection_pool
         | 
| 120 | 
            +
                reline (0.4.1)
         | 
| 121 | 
            +
                  io-console (~> 0.5)
         | 
| 122 | 
            +
                rspec (3.12.0)
         | 
| 123 | 
            +
                  rspec-core (~> 3.12.0)
         | 
| 124 | 
            +
                  rspec-expectations (~> 3.12.0)
         | 
| 125 | 
            +
                  rspec-mocks (~> 3.12.0)
         | 
| 126 | 
            +
                rspec-core (3.12.2)
         | 
| 127 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 128 | 
            +
                rspec-expectations (3.12.3)
         | 
| 129 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 130 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 131 | 
            +
                rspec-mocks (3.12.6)
         | 
| 132 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 133 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 134 | 
            +
                rspec-support (3.12.1)
         | 
| 135 | 
            +
                sidekiq (7.0.0)
         | 
| 136 | 
            +
                  concurrent-ruby (< 2)
         | 
| 137 | 
            +
                  connection_pool (>= 2.3.0)
         | 
| 138 | 
            +
                  rack (>= 2.2.4)
         | 
| 139 | 
            +
                  redis-client (>= 0.9.0)
         | 
| 140 | 
            +
                simplecov (0.22.0)
         | 
| 141 | 
            +
                  docile (~> 1.1)
         | 
| 142 | 
            +
                  simplecov-html (~> 0.11)
         | 
| 143 | 
            +
                  simplecov_json_formatter (~> 0.1)
         | 
| 144 | 
            +
                simplecov-html (0.12.3)
         | 
| 145 | 
            +
                simplecov_json_formatter (0.1.4)
         | 
| 146 | 
            +
                stringio (3.1.0)
         | 
| 147 | 
            +
                thor (1.3.0)
         | 
| 148 | 
            +
                thread_safe (0.3.6)
         | 
| 149 | 
            +
                tzinfo (1.2.11)
         | 
| 150 | 
            +
                  thread_safe (~> 0.1)
         | 
| 151 | 
            +
                zeitwerk (2.6.12)
         | 
| 152 | 
            +
             | 
| 153 | 
            +
            PLATFORMS
         | 
| 154 | 
            +
              ruby
         | 
| 155 | 
            +
             | 
| 156 | 
            +
            DEPENDENCIES
         | 
| 157 | 
            +
              appraisal
         | 
| 158 | 
            +
              bundler (~> 2.0)
         | 
| 159 | 
            +
              debug
         | 
| 160 | 
            +
              interactify!
         | 
| 161 | 
            +
              railties (= 6)
         | 
| 162 | 
            +
              rake (~> 13.0)
         | 
| 163 | 
            +
              rspec (~> 3.0)
         | 
| 164 | 
            +
              sidekiq (= 7)
         | 
| 165 | 
            +
              simplecov
         | 
| 166 | 
            +
             | 
| 167 | 
            +
            BUNDLED WITH
         | 
| 168 | 
            +
               2.4.22
         | 
| @@ -0,0 +1,19 @@ | |
| 1 | 
            +
            # This file was generated by Appraisal
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            source "https://rubygems.org"
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            gem "rake", "~> 13.0"
         | 
| 6 | 
            +
            gem "railties", "7"
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            group :development do
         | 
| 9 | 
            +
              gem "appraisal"
         | 
| 10 | 
            +
              gem "bundler", "~> 2.0"
         | 
| 11 | 
            +
            end
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            group :test do
         | 
| 14 | 
            +
              gem "debug"
         | 
| 15 | 
            +
              gem "rspec", "~> 3.0"
         | 
| 16 | 
            +
              gem "simplecov", require: false
         | 
| 17 | 
            +
            end
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            gemspec path: "../"
         | 
| @@ -0,0 +1,158 @@ | |
| 1 | 
            +
            PATH
         | 
| 2 | 
            +
              remote: ..
         | 
| 3 | 
            +
              specs:
         | 
| 4 | 
            +
                interactify (0.4.0)
         | 
| 5 | 
            +
                  activesupport (>= 6.0.0)
         | 
| 6 | 
            +
                  interactor
         | 
| 7 | 
            +
                  interactor-contracts
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            GEM
         | 
| 10 | 
            +
              remote: https://rubygems.org/
         | 
| 11 | 
            +
              specs:
         | 
| 12 | 
            +
                actionpack (7.0.0)
         | 
| 13 | 
            +
                  actionview (= 7.0.0)
         | 
| 14 | 
            +
                  activesupport (= 7.0.0)
         | 
| 15 | 
            +
                  rack (~> 2.0, >= 2.2.0)
         | 
| 16 | 
            +
                  rack-test (>= 0.6.3)
         | 
| 17 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 18 | 
            +
                  rails-html-sanitizer (~> 1.0, >= 1.2.0)
         | 
| 19 | 
            +
                actionview (7.0.0)
         | 
| 20 | 
            +
                  activesupport (= 7.0.0)
         | 
| 21 | 
            +
                  builder (~> 3.1)
         | 
| 22 | 
            +
                  erubi (~> 1.4)
         | 
| 23 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 24 | 
            +
                  rails-html-sanitizer (~> 1.1, >= 1.2.0)
         | 
| 25 | 
            +
                activesupport (7.0.0)
         | 
| 26 | 
            +
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         | 
| 27 | 
            +
                  i18n (>= 1.6, < 2)
         | 
| 28 | 
            +
                  minitest (>= 5.1)
         | 
| 29 | 
            +
                  tzinfo (~> 2.0)
         | 
| 30 | 
            +
                appraisal (2.5.0)
         | 
| 31 | 
            +
                  bundler
         | 
| 32 | 
            +
                  rake
         | 
| 33 | 
            +
                  thor (>= 0.14.0)
         | 
| 34 | 
            +
                builder (3.2.4)
         | 
| 35 | 
            +
                concurrent-ruby (1.2.2)
         | 
| 36 | 
            +
                crass (1.0.6)
         | 
| 37 | 
            +
                debug (1.9.1)
         | 
| 38 | 
            +
                  irb (~> 1.10)
         | 
| 39 | 
            +
                  reline (>= 0.3.8)
         | 
| 40 | 
            +
                diff-lcs (1.5.0)
         | 
| 41 | 
            +
                docile (1.4.0)
         | 
| 42 | 
            +
                dry-configurable (1.0.1)
         | 
| 43 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 44 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 45 | 
            +
                dry-core (1.0.0)
         | 
| 46 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 47 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 48 | 
            +
                dry-inflector (1.0.0)
         | 
| 49 | 
            +
                dry-initializer (3.1.1)
         | 
| 50 | 
            +
                dry-logic (1.5.0)
         | 
| 51 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 52 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 53 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 54 | 
            +
                dry-schema (1.13.3)
         | 
| 55 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 56 | 
            +
                  dry-configurable (~> 1.0, >= 1.0.1)
         | 
| 57 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 58 | 
            +
                  dry-initializer (~> 3.0)
         | 
| 59 | 
            +
                  dry-logic (>= 1.4, < 2)
         | 
| 60 | 
            +
                  dry-types (>= 1.7, < 2)
         | 
| 61 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 62 | 
            +
                dry-types (1.7.1)
         | 
| 63 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 64 | 
            +
                  dry-core (~> 1.0)
         | 
| 65 | 
            +
                  dry-inflector (~> 1.0)
         | 
| 66 | 
            +
                  dry-logic (~> 1.4)
         | 
| 67 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 68 | 
            +
                dry-validation (1.10.0)
         | 
| 69 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 70 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 71 | 
            +
                  dry-initializer (~> 3.0)
         | 
| 72 | 
            +
                  dry-schema (>= 1.12, < 2)
         | 
| 73 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 74 | 
            +
                erubi (1.12.0)
         | 
| 75 | 
            +
                i18n (1.14.1)
         | 
| 76 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 77 | 
            +
                interactor (3.1.2)
         | 
| 78 | 
            +
                interactor-contracts (0.3.0)
         | 
| 79 | 
            +
                  dry-validation (~> 1.0)
         | 
| 80 | 
            +
                  interactor (~> 3)
         | 
| 81 | 
            +
                io-console (0.7.1)
         | 
| 82 | 
            +
                irb (1.11.0)
         | 
| 83 | 
            +
                  rdoc
         | 
| 84 | 
            +
                  reline (>= 0.3.8)
         | 
| 85 | 
            +
                loofah (2.22.0)
         | 
| 86 | 
            +
                  crass (~> 1.0.2)
         | 
| 87 | 
            +
                  nokogiri (>= 1.12.0)
         | 
| 88 | 
            +
                method_source (1.0.0)
         | 
| 89 | 
            +
                mini_portile2 (2.8.5)
         | 
| 90 | 
            +
                minitest (5.20.0)
         | 
| 91 | 
            +
                nokogiri (1.15.5)
         | 
| 92 | 
            +
                  mini_portile2 (~> 2.8.2)
         | 
| 93 | 
            +
                  racc (~> 1.4)
         | 
| 94 | 
            +
                psych (5.1.2)
         | 
| 95 | 
            +
                  stringio
         | 
| 96 | 
            +
                racc (1.7.3)
         | 
| 97 | 
            +
                rack (2.2.8)
         | 
| 98 | 
            +
                rack-test (2.1.0)
         | 
| 99 | 
            +
                  rack (>= 1.3)
         | 
| 100 | 
            +
                rails-dom-testing (2.2.0)
         | 
| 101 | 
            +
                  activesupport (>= 5.0.0)
         | 
| 102 | 
            +
                  minitest
         | 
| 103 | 
            +
                  nokogiri (>= 1.6)
         | 
| 104 | 
            +
                rails-html-sanitizer (1.6.0)
         | 
| 105 | 
            +
                  loofah (~> 2.21)
         | 
| 106 | 
            +
                  nokogiri (~> 1.14)
         | 
| 107 | 
            +
                railties (7.0.0)
         | 
| 108 | 
            +
                  actionpack (= 7.0.0)
         | 
| 109 | 
            +
                  activesupport (= 7.0.0)
         | 
| 110 | 
            +
                  method_source
         | 
| 111 | 
            +
                  rake (>= 12.2)
         | 
| 112 | 
            +
                  thor (~> 1.0)
         | 
| 113 | 
            +
                  zeitwerk (~> 2.5)
         | 
| 114 | 
            +
                rake (13.1.0)
         | 
| 115 | 
            +
                rdoc (6.6.2)
         | 
| 116 | 
            +
                  psych (>= 4.0.0)
         | 
| 117 | 
            +
                reline (0.4.1)
         | 
| 118 | 
            +
                  io-console (~> 0.5)
         | 
| 119 | 
            +
                rspec (3.12.0)
         | 
| 120 | 
            +
                  rspec-core (~> 3.12.0)
         | 
| 121 | 
            +
                  rspec-expectations (~> 3.12.0)
         | 
| 122 | 
            +
                  rspec-mocks (~> 3.12.0)
         | 
| 123 | 
            +
                rspec-core (3.12.2)
         | 
| 124 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 125 | 
            +
                rspec-expectations (3.12.3)
         | 
| 126 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 127 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 128 | 
            +
                rspec-mocks (3.12.6)
         | 
| 129 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 130 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 131 | 
            +
                rspec-support (3.12.1)
         | 
| 132 | 
            +
                simplecov (0.22.0)
         | 
| 133 | 
            +
                  docile (~> 1.1)
         | 
| 134 | 
            +
                  simplecov-html (~> 0.11)
         | 
| 135 | 
            +
                  simplecov_json_formatter (~> 0.1)
         | 
| 136 | 
            +
                simplecov-html (0.12.3)
         | 
| 137 | 
            +
                simplecov_json_formatter (0.1.4)
         | 
| 138 | 
            +
                stringio (3.1.0)
         | 
| 139 | 
            +
                thor (1.3.0)
         | 
| 140 | 
            +
                tzinfo (2.0.6)
         | 
| 141 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 142 | 
            +
                zeitwerk (2.6.12)
         | 
| 143 | 
            +
             | 
| 144 | 
            +
            PLATFORMS
         | 
| 145 | 
            +
              ruby
         | 
| 146 | 
            +
             | 
| 147 | 
            +
            DEPENDENCIES
         | 
| 148 | 
            +
              appraisal
         | 
| 149 | 
            +
              bundler (~> 2.0)
         | 
| 150 | 
            +
              debug
         | 
| 151 | 
            +
              interactify!
         | 
| 152 | 
            +
              railties (= 7)
         | 
| 153 | 
            +
              rake (~> 13.0)
         | 
| 154 | 
            +
              rspec (~> 3.0)
         | 
| 155 | 
            +
              simplecov
         | 
| 156 | 
            +
             | 
| 157 | 
            +
            BUNDLED WITH
         | 
| 158 | 
            +
               2.4.22
         | 
| @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            # This file was generated by Appraisal
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            source "https://rubygems.org"
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            gem "rake", "~> 13.0"
         | 
| 6 | 
            +
            gem "railties", "7"
         | 
| 7 | 
            +
            gem "sidekiq", "7"
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            group :development do
         | 
| 10 | 
            +
              gem "appraisal"
         | 
| 11 | 
            +
              gem "bundler", "~> 2.0"
         | 
| 12 | 
            +
            end
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            group :test do
         | 
| 15 | 
            +
              gem "debug"
         | 
| 16 | 
            +
              gem "rspec", "~> 3.0"
         | 
| 17 | 
            +
              gem "simplecov", require: false
         | 
| 18 | 
            +
            end
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            gemspec path: "../"
         | 
| @@ -0,0 +1,167 @@ | |
| 1 | 
            +
            PATH
         | 
| 2 | 
            +
              remote: ..
         | 
| 3 | 
            +
              specs:
         | 
| 4 | 
            +
                interactify (0.4.0)
         | 
| 5 | 
            +
                  activesupport (>= 6.0.0)
         | 
| 6 | 
            +
                  interactor
         | 
| 7 | 
            +
                  interactor-contracts
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            GEM
         | 
| 10 | 
            +
              remote: https://rubygems.org/
         | 
| 11 | 
            +
              specs:
         | 
| 12 | 
            +
                actionpack (7.0.0)
         | 
| 13 | 
            +
                  actionview (= 7.0.0)
         | 
| 14 | 
            +
                  activesupport (= 7.0.0)
         | 
| 15 | 
            +
                  rack (~> 2.0, >= 2.2.0)
         | 
| 16 | 
            +
                  rack-test (>= 0.6.3)
         | 
| 17 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 18 | 
            +
                  rails-html-sanitizer (~> 1.0, >= 1.2.0)
         | 
| 19 | 
            +
                actionview (7.0.0)
         | 
| 20 | 
            +
                  activesupport (= 7.0.0)
         | 
| 21 | 
            +
                  builder (~> 3.1)
         | 
| 22 | 
            +
                  erubi (~> 1.4)
         | 
| 23 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 24 | 
            +
                  rails-html-sanitizer (~> 1.1, >= 1.2.0)
         | 
| 25 | 
            +
                activesupport (7.0.0)
         | 
| 26 | 
            +
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         | 
| 27 | 
            +
                  i18n (>= 1.6, < 2)
         | 
| 28 | 
            +
                  minitest (>= 5.1)
         | 
| 29 | 
            +
                  tzinfo (~> 2.0)
         | 
| 30 | 
            +
                appraisal (2.5.0)
         | 
| 31 | 
            +
                  bundler
         | 
| 32 | 
            +
                  rake
         | 
| 33 | 
            +
                  thor (>= 0.14.0)
         | 
| 34 | 
            +
                builder (3.2.4)
         | 
| 35 | 
            +
                concurrent-ruby (1.2.2)
         | 
| 36 | 
            +
                connection_pool (2.4.1)
         | 
| 37 | 
            +
                crass (1.0.6)
         | 
| 38 | 
            +
                debug (1.9.1)
         | 
| 39 | 
            +
                  irb (~> 1.10)
         | 
| 40 | 
            +
                  reline (>= 0.3.8)
         | 
| 41 | 
            +
                diff-lcs (1.5.0)
         | 
| 42 | 
            +
                docile (1.4.0)
         | 
| 43 | 
            +
                dry-configurable (1.0.1)
         | 
| 44 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 45 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 46 | 
            +
                dry-core (1.0.0)
         | 
| 47 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 48 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 49 | 
            +
                dry-inflector (1.0.0)
         | 
| 50 | 
            +
                dry-initializer (3.1.1)
         | 
| 51 | 
            +
                dry-logic (1.5.0)
         | 
| 52 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 53 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 54 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 55 | 
            +
                dry-schema (1.13.3)
         | 
| 56 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 57 | 
            +
                  dry-configurable (~> 1.0, >= 1.0.1)
         | 
| 58 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 59 | 
            +
                  dry-initializer (~> 3.0)
         | 
| 60 | 
            +
                  dry-logic (>= 1.4, < 2)
         | 
| 61 | 
            +
                  dry-types (>= 1.7, < 2)
         | 
| 62 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 63 | 
            +
                dry-types (1.7.1)
         | 
| 64 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 65 | 
            +
                  dry-core (~> 1.0)
         | 
| 66 | 
            +
                  dry-inflector (~> 1.0)
         | 
| 67 | 
            +
                  dry-logic (~> 1.4)
         | 
| 68 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 69 | 
            +
                dry-validation (1.10.0)
         | 
| 70 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 71 | 
            +
                  dry-core (~> 1.0, < 2)
         | 
| 72 | 
            +
                  dry-initializer (~> 3.0)
         | 
| 73 | 
            +
                  dry-schema (>= 1.12, < 2)
         | 
| 74 | 
            +
                  zeitwerk (~> 2.6)
         | 
| 75 | 
            +
                erubi (1.12.0)
         | 
| 76 | 
            +
                i18n (1.14.1)
         | 
| 77 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 78 | 
            +
                interactor (3.1.2)
         | 
| 79 | 
            +
                interactor-contracts (0.3.0)
         | 
| 80 | 
            +
                  dry-validation (~> 1.0)
         | 
| 81 | 
            +
                  interactor (~> 3)
         | 
| 82 | 
            +
                io-console (0.7.1)
         | 
| 83 | 
            +
                irb (1.11.0)
         | 
| 84 | 
            +
                  rdoc
         | 
| 85 | 
            +
                  reline (>= 0.3.8)
         | 
| 86 | 
            +
                loofah (2.22.0)
         | 
| 87 | 
            +
                  crass (~> 1.0.2)
         | 
| 88 | 
            +
                  nokogiri (>= 1.12.0)
         | 
| 89 | 
            +
                method_source (1.0.0)
         | 
| 90 | 
            +
                mini_portile2 (2.8.5)
         | 
| 91 | 
            +
                minitest (5.20.0)
         | 
| 92 | 
            +
                nokogiri (1.15.5)
         | 
| 93 | 
            +
                  mini_portile2 (~> 2.8.2)
         | 
| 94 | 
            +
                  racc (~> 1.4)
         | 
| 95 | 
            +
                psych (5.1.2)
         | 
| 96 | 
            +
                  stringio
         | 
| 97 | 
            +
                racc (1.7.3)
         | 
| 98 | 
            +
                rack (2.2.8)
         | 
| 99 | 
            +
                rack-test (2.1.0)
         | 
| 100 | 
            +
                  rack (>= 1.3)
         | 
| 101 | 
            +
                rails-dom-testing (2.2.0)
         | 
| 102 | 
            +
                  activesupport (>= 5.0.0)
         | 
| 103 | 
            +
                  minitest
         | 
| 104 | 
            +
                  nokogiri (>= 1.6)
         | 
| 105 | 
            +
                rails-html-sanitizer (1.6.0)
         | 
| 106 | 
            +
                  loofah (~> 2.21)
         | 
| 107 | 
            +
                  nokogiri (~> 1.14)
         | 
| 108 | 
            +
                railties (7.0.0)
         | 
| 109 | 
            +
                  actionpack (= 7.0.0)
         | 
| 110 | 
            +
                  activesupport (= 7.0.0)
         | 
| 111 | 
            +
                  method_source
         | 
| 112 | 
            +
                  rake (>= 12.2)
         | 
| 113 | 
            +
                  thor (~> 1.0)
         | 
| 114 | 
            +
                  zeitwerk (~> 2.5)
         | 
| 115 | 
            +
                rake (13.1.0)
         | 
| 116 | 
            +
                rdoc (6.6.2)
         | 
| 117 | 
            +
                  psych (>= 4.0.0)
         | 
| 118 | 
            +
                redis-client (0.19.1)
         | 
| 119 | 
            +
                  connection_pool
         | 
| 120 | 
            +
                reline (0.4.1)
         | 
| 121 | 
            +
                  io-console (~> 0.5)
         | 
| 122 | 
            +
                rspec (3.12.0)
         | 
| 123 | 
            +
                  rspec-core (~> 3.12.0)
         | 
| 124 | 
            +
                  rspec-expectations (~> 3.12.0)
         | 
| 125 | 
            +
                  rspec-mocks (~> 3.12.0)
         | 
| 126 | 
            +
                rspec-core (3.12.2)
         | 
| 127 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 128 | 
            +
                rspec-expectations (3.12.3)
         | 
| 129 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 130 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 131 | 
            +
                rspec-mocks (3.12.6)
         | 
| 132 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 133 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 134 | 
            +
                rspec-support (3.12.1)
         | 
| 135 | 
            +
                sidekiq (7.0.0)
         | 
| 136 | 
            +
                  concurrent-ruby (< 2)
         | 
| 137 | 
            +
                  connection_pool (>= 2.3.0)
         | 
| 138 | 
            +
                  rack (>= 2.2.4)
         | 
| 139 | 
            +
                  redis-client (>= 0.9.0)
         | 
| 140 | 
            +
                simplecov (0.22.0)
         | 
| 141 | 
            +
                  docile (~> 1.1)
         | 
| 142 | 
            +
                  simplecov-html (~> 0.11)
         | 
| 143 | 
            +
                  simplecov_json_formatter (~> 0.1)
         | 
| 144 | 
            +
                simplecov-html (0.12.3)
         | 
| 145 | 
            +
                simplecov_json_formatter (0.1.4)
         | 
| 146 | 
            +
                stringio (3.1.0)
         | 
| 147 | 
            +
                thor (1.3.0)
         | 
| 148 | 
            +
                tzinfo (2.0.6)
         | 
| 149 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 150 | 
            +
                zeitwerk (2.6.12)
         | 
| 151 | 
            +
             | 
| 152 | 
            +
            PLATFORMS
         | 
| 153 | 
            +
              ruby
         | 
| 154 | 
            +
             | 
| 155 | 
            +
            DEPENDENCIES
         | 
| 156 | 
            +
              appraisal
         | 
| 157 | 
            +
              bundler (~> 2.0)
         | 
| 158 | 
            +
              debug
         | 
| 159 | 
            +
              interactify!
         | 
| 160 | 
            +
              railties (= 7)
         | 
| 161 | 
            +
              rake (~> 13.0)
         | 
| 162 | 
            +
              rspec (~> 3.0)
         | 
| 163 | 
            +
              sidekiq (= 7)
         | 
| 164 | 
            +
              simplecov
         | 
| 165 | 
            +
             | 
| 166 | 
            +
            BUNDLED WITH
         | 
| 167 | 
            +
               2.4.22
         |